diff --git a/.github/workflows/hygiene.yml b/.github/workflows/hygiene.yml new file mode 100644 index 00000000..7526dfb4 --- /dev/null +++ b/.github/workflows/hygiene.yml @@ -0,0 +1,59 @@ +# SPDX-FileCopyrightText: Copyright 2026 Arm Limited and affiliates. +# +# SPDX-License-Identifier: Apache-2.0 + +name: Hygiene + +on: + push: + branches: [main] + pull_request: + types: [opened, synchronize, reopened] + workflow_dispatch: + +#* Stop stale workflows when pull requests are updated: https://stackoverflow.com/a/70972844 +#* Does not apply to the main branch. +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} + +# Declare default permissions as read only. +permissions: read-all + +jobs: + hygiene: + runs-on: ah-ubuntu_24_04-c7g_2x-50 + steps: + - name: Checkout Tool-Solutions + uses: actions/checkout@v6.0.2 + + - name: Set up Python + uses: actions/setup-python@v6.0.0 + with: + python-version: "3.12" + + - name: Install hygiene tooling + run: | + python -m pip install --user --no-cache-dir pre-commit==4.5.1 reuse==6.2.0 + echo "$HOME/.local/bin" >> "$GITHUB_PATH" + + - name: Run whole-repo whitespace check + run: pre-commit run trailing-whitespace --all-files + + - name: Run safe whole-repo pre-commit checks + run: | + set -euo pipefail + pre-commit run end-of-file-fixer --all-files + pre-commit run mixed-line-ending --all-files + pre-commit run check-merge-conflict --all-files + pre-commit run check-case-conflict --all-files + pre-commit run check-symlinks --all-files + pre-commit run check-json --all-files + pre-commit run check-yaml --all-files + pre-commit run check-added-large-files --all-files + pre-commit run check-executables-have-shebangs --all-files + pre-commit run check-shebang-scripts-are-executable --all-files + pre-commit run ruff-check --all-files + + - name: Run whole-repo REUSE lint + run: reuse lint diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 440f47fd..b93d9b71 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: Copyright 2025 Arm Limited and affiliates. +# SPDX-FileCopyrightText: Copyright 2025, 2026 Arm Limited and affiliates. # # SPDX-License-Identifier: Apache-2.0 @@ -7,7 +7,8 @@ fail_fast: false repos: - repo: local hooks: - # Python/YAML/shell: use hash comments (no --multi-line) + # Python/YAML/shell: use hash comments (no --multi-line). This hook + # mutates copyright metadata. Do not run this hook with --all-files. - id: reuse-annotate-current-year-python-yaml-shell-files name: REUSE Annotate (Python add current year, merge) language: python @@ -27,7 +28,8 @@ repos: files: '(\.gitignore|\.dockerignore|requirements\.txt|bash_profile|Dockerfile|\.(py|yml|yaml|sh|bash))$' stages: [ pre-commit ] - # JSON/Markdown/welcome.txt: use sidecar .license files + # JSON/Markdown/welcome.txt: use sidecar .license files. This hook + # mutates copyright metadata. Do not run this hook with --all-files. - id: reuse-annotate-current-year-json-and-md name: REUSE Annotate (JSON/Markdown/welcome.txt sidecar fallback add current year, merge) language: python @@ -49,6 +51,8 @@ repos: - repo: https://github.com/fsfe/reuse-tool rev: v6.2.0 hooks: + # File-level REUSE validation for changed files. CI also runs `reuse lint` + # across the whole repo because validation is non-mutating. - id: reuse-lint-file stages: [ pre-commit ] name: "REUSE Compliant Copyright and License" @@ -58,3 +62,38 @@ repos: hooks: - id: trailing-whitespace stages: [ pre-commit ] + - id: end-of-file-fixer + stages: [ pre-commit ] + - id: mixed-line-ending + stages: [ pre-commit ] + # Cheap changed-file guard for accidentally committed conflict markers. + # GitHub detects active merge conflicts, but this also catches conflict + # markers committed into files. + - id: check-merge-conflict + stages: [ pre-commit ] + # Avoid adding paths that collide on case-insensitive filesystems. + - id: check-case-conflict + stages: [ pre-commit ] + # Catch symlinks that point to missing targets. This is normally a no-op + # for this repo, but keeps broken links from entering via future changes. + - id: check-symlinks + stages: [ pre-commit ] + - id: check-json + stages: [ pre-commit ] + - id: check-yaml + stages: [ pre-commit ] + # Only checks newly added files, even when invoked with --all-files. + - id: check-added-large-files + args: [ --maxkb=1024 ] + stages: [ pre-commit ] + - id: check-executables-have-shebangs + stages: [ pre-commit ] + # Keep script shebangs and executable bits consistent for runnable files. + - id: check-shebang-scripts-are-executable + stages: [ pre-commit ] + + - repo: https://github.com/astral-sh/ruff-pre-commit + rev: v0.15.15 + hooks: + - id: ruff-check + stages: [ pre-commit ] diff --git a/ML-Frameworks/pytorch-aarch64/.agents/skills/bump-sources/SKILL.md b/ML-Frameworks/pytorch-aarch64/.agents/skills/bump-sources/SKILL.md index 8502e042..91b2699c 100644 --- a/ML-Frameworks/pytorch-aarch64/.agents/skills/bump-sources/SKILL.md +++ b/ML-Frameworks/pytorch-aarch64/.agents/skills/bump-sources/SKILL.md @@ -57,4 +57,4 @@ Provide: - A short summary of what changed (hashes/tags/wheels). - The edits made to `./versions.sh` (and `./get-source.sh` if changed). -- Commands run and key results/errors. \ No newline at end of file +- Commands run and key results/errors. diff --git a/ML-Frameworks/pytorch-aarch64/CHANGELOG.md b/ML-Frameworks/pytorch-aarch64/CHANGELOG.md index 8b8e0ba8..a57e1c32 100644 --- a/ML-Frameworks/pytorch-aarch64/CHANGELOG.md +++ b/ML-Frameworks/pytorch-aarch64/CHANGELOG.md @@ -16,7 +16,7 @@ where `YY` is the year, and `MM` the month of the increment. ### Added ### Changed - + ### Removed ### Fixed diff --git a/ML-Frameworks/pytorch-aarch64/Dockerfile b/ML-Frameworks/pytorch-aarch64/Dockerfile index 6a201566..660f0841 100644 --- a/ML-Frameworks/pytorch-aarch64/Dockerfile +++ b/ML-Frameworks/pytorch-aarch64/Dockerfile @@ -43,7 +43,8 @@ WORKDIR /home/$DOCKER_USER ENV PATH="/home/$DOCKER_USER/.local/bin:${PATH}" # Install uv for quicker package installations (installed to ~/.local/bin with --user) -RUN python -m pip install --user uv==0.9.29 +ENV UV_NO_CACHE=1 +RUN python -m pip install --no-cache-dir --user uv==0.9.29 # Create virtual environment with uv RUN uv venv /home/$DOCKER_USER/.venv diff --git a/ML-Frameworks/pytorch-aarch64/examples/classify_image.py b/ML-Frameworks/pytorch-aarch64/examples/classify_image.py old mode 100755 new mode 100644 diff --git a/ML-Frameworks/pytorch-aarch64/examples/executor/model.py b/ML-Frameworks/pytorch-aarch64/examples/executor/model.py index 21ff48dc..cb8381c0 100644 --- a/ML-Frameworks/pytorch-aarch64/examples/executor/model.py +++ b/ML-Frameworks/pytorch-aarch64/examples/executor/model.py @@ -8,7 +8,6 @@ import os import runpy import time -import sys from urllib.parse import urlparse import warnings import zipfile diff --git a/ML-Frameworks/pytorch-aarch64/examples/gen_ai_utils/quant_configs/aarch64_cpu_channelwise.json b/ML-Frameworks/pytorch-aarch64/examples/gen_ai_utils/quant_configs/aarch64_cpu_channelwise.json deleted file mode 100644 index ea75b720..00000000 --- a/ML-Frameworks/pytorch-aarch64/examples/gen_ai_utils/quant_configs/aarch64_cpu_channelwise.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "executor": { - "accelerator": "cpu" - }, - "precision": { - "dtype": "fp32" - }, - "linear:int4": { - "scheme": "symmetric_channelwise" - } -} diff --git a/ML-Frameworks/pytorch-aarch64/examples/gen_ai_utils/quant_configs/aarch64_cpu_channelwise.json.license b/ML-Frameworks/pytorch-aarch64/examples/gen_ai_utils/quant_configs/aarch64_cpu_channelwise.json.license deleted file mode 100644 index 0c7ebc53..00000000 --- a/ML-Frameworks/pytorch-aarch64/examples/gen_ai_utils/quant_configs/aarch64_cpu_channelwise.json.license +++ /dev/null @@ -1,3 +0,0 @@ -SPDX-FileCopyrightText: Copyright 2024, 2025 Arm Limited and affiliates. - -SPDX-License-Identifier: Apache-2.0 diff --git a/ML-Frameworks/pytorch-aarch64/examples/gen_ai_utils/quant_configs/aarch64_cpu_groupwise.json b/ML-Frameworks/pytorch-aarch64/examples/gen_ai_utils/quant_configs/aarch64_cpu_groupwise.json deleted file mode 100644 index a535fc6a..00000000 --- a/ML-Frameworks/pytorch-aarch64/examples/gen_ai_utils/quant_configs/aarch64_cpu_groupwise.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "executor": { - "accelerator": "cpu" - }, - "precision": { - "dtype": "fp32" - }, - "linear:int4": { - "groupsize": 32, - "scheme": "symmetric_groupwise" - } -} \ No newline at end of file diff --git a/ML-Frameworks/pytorch-aarch64/examples/gen_ai_utils/quant_configs/aarch64_cpu_groupwise.json.license b/ML-Frameworks/pytorch-aarch64/examples/gen_ai_utils/quant_configs/aarch64_cpu_groupwise.json.license deleted file mode 100644 index 0c7ebc53..00000000 --- a/ML-Frameworks/pytorch-aarch64/examples/gen_ai_utils/quant_configs/aarch64_cpu_groupwise.json.license +++ /dev/null @@ -1,3 +0,0 @@ -SPDX-FileCopyrightText: Copyright 2024, 2025 Arm Limited and affiliates. - -SPDX-License-Identifier: Apache-2.0 diff --git a/ML-Frameworks/pytorch-aarch64/examples/openimages-mlperf.json b/ML-Frameworks/pytorch-aarch64/examples/openimages-mlperf.json deleted file mode 100644 index f00fb1ff..00000000 --- a/ML-Frameworks/pytorch-aarch64/examples/openimages-mlperf.json +++ /dev/null @@ -1 +0,0 @@ -{"info": {"dataset": "openimages_mlperf", "version": "v6"}, "licenses": [], "categories": [{"id": 0, "name": "Airplane", "supercategory": null}, {"id": 1, "name": "Antelope", "supercategory": null}, {"id": 2, "name": "Apple", "supercategory": null}, {"id": 3, "name": "Backpack", "supercategory": null}, {"id": 4, "name": "Balloon", "supercategory": null}, {"id": 5, "name": "Banana", "supercategory": null}, {"id": 6, "name": "Barrel", "supercategory": null}, {"id": 7, "name": "Baseball bat", "supercategory": null}, {"id": 8, "name": "Baseball glove", "supercategory": null}, {"id": 9, "name": "Bee", "supercategory": null}, {"id": 10, "name": "Beer", "supercategory": null}, {"id": 11, "name": "Bench", "supercategory": null}, {"id": 12, "name": "Bicycle", "supercategory": null}, {"id": 13, "name": "Bicycle helmet", "supercategory": null}, {"id": 14, "name": "Bicycle wheel", "supercategory": null}, {"id": 15, "name": "Billboard", "supercategory": null}, {"id": 16, "name": "Book", "supercategory": null}, {"id": 17, "name": "Bookcase", "supercategory": null}, {"id": 18, "name": "Boot", "supercategory": null}, {"id": 19, "name": "Bottle", "supercategory": null}, {"id": 20, "name": "Bowl", "supercategory": null}, {"id": 21, "name": "Bowling equipment", "supercategory": null}, {"id": 22, "name": "Box", "supercategory": null}, {"id": 23, "name": "Boy", "supercategory": null}, {"id": 24, "name": "Brassiere", "supercategory": null}, {"id": 25, "name": "Bread", "supercategory": null}, {"id": 26, "name": "Broccoli", "supercategory": null}, {"id": 27, "name": "Bronze sculpture", "supercategory": null}, {"id": 28, "name": "Bull", "supercategory": null}, {"id": 29, "name": "Bus", "supercategory": null}, {"id": 30, "name": "Bust", "supercategory": null}, {"id": 31, "name": "Butterfly", "supercategory": null}, {"id": 32, "name": "Cabinetry", "supercategory": null}, {"id": 33, "name": "Cake", "supercategory": null}, {"id": 34, "name": "Camel", "supercategory": null}, {"id": 35, "name": "Camera", "supercategory": null}, {"id": 36, "name": "Candle", "supercategory": null}, {"id": 37, "name": "Candy", "supercategory": null}, {"id": 38, "name": "Cannon", "supercategory": null}, {"id": 39, "name": "Canoe", "supercategory": null}, {"id": 40, "name": "Carrot", "supercategory": null}, {"id": 41, "name": "Cart", "supercategory": null}, {"id": 42, "name": "Castle", "supercategory": null}, {"id": 43, "name": "Cat", "supercategory": null}, {"id": 44, "name": "Cattle", "supercategory": null}, {"id": 45, "name": "Cello", "supercategory": null}, {"id": 46, "name": "Chair", "supercategory": null}, {"id": 47, "name": "Cheese", "supercategory": null}, {"id": 48, "name": "Chest of drawers", "supercategory": null}, {"id": 49, "name": "Chicken", "supercategory": null}, {"id": 50, "name": "Christmas tree", "supercategory": null}, {"id": 51, "name": "Coat", "supercategory": null}, {"id": 52, "name": "Cocktail", "supercategory": null}, {"id": 53, "name": "Coffee", "supercategory": null}, {"id": 54, "name": "Coffee cup", "supercategory": null}, {"id": 55, "name": "Coffee table", "supercategory": null}, {"id": 56, "name": "Coin", "supercategory": null}, {"id": 57, "name": "Common sunflower", "supercategory": null}, {"id": 58, "name": "Computer keyboard", "supercategory": null}, {"id": 59, "name": "Computer monitor", "supercategory": null}, {"id": 60, "name": "Convenience store", "supercategory": null}, {"id": 61, "name": "Cookie", "supercategory": null}, {"id": 62, "name": "Countertop", "supercategory": null}, {"id": 63, "name": "Cowboy hat", "supercategory": null}, {"id": 64, "name": "Crab", "supercategory": null}, {"id": 65, "name": "Crocodile", "supercategory": null}, {"id": 66, "name": "Cucumber", "supercategory": null}, {"id": 67, "name": "Cupboard", "supercategory": null}, {"id": 68, "name": "Curtain", "supercategory": null}, {"id": 69, "name": "Deer", "supercategory": null}, {"id": 70, "name": "Desk", "supercategory": null}, {"id": 71, "name": "Dinosaur", "supercategory": null}, {"id": 72, "name": "Dog", "supercategory": null}, {"id": 73, "name": "Doll", "supercategory": null}, {"id": 74, "name": "Dolphin", "supercategory": null}, {"id": 75, "name": "Door", "supercategory": null}, {"id": 76, "name": "Dragonfly", "supercategory": null}, {"id": 77, "name": "Drawer", "supercategory": null}, {"id": 78, "name": "Dress", "supercategory": null}, {"id": 79, "name": "Drum", "supercategory": null}, {"id": 80, "name": "Duck", "supercategory": null}, {"id": 81, "name": "Eagle", "supercategory": null}, {"id": 82, "name": "Earrings", "supercategory": null}, {"id": 83, "name": "Egg (Food)", "supercategory": null}, {"id": 84, "name": "Elephant", "supercategory": null}, {"id": 85, "name": "Falcon", "supercategory": null}, {"id": 86, "name": "Fedora", "supercategory": null}, {"id": 87, "name": "Flag", "supercategory": null}, {"id": 88, "name": "Flowerpot", "supercategory": null}, {"id": 89, "name": "Football", "supercategory": null}, {"id": 90, "name": "Football helmet", "supercategory": null}, {"id": 91, "name": "Fork", "supercategory": null}, {"id": 92, "name": "Fountain", "supercategory": null}, {"id": 93, "name": "French fries", "supercategory": null}, {"id": 94, "name": "French horn", "supercategory": null}, {"id": 95, "name": "Frog", "supercategory": null}, {"id": 96, "name": "Giraffe", "supercategory": null}, {"id": 97, "name": "Girl", "supercategory": null}, {"id": 98, "name": "Glasses", "supercategory": null}, {"id": 99, "name": "Goat", "supercategory": null}, {"id": 100, "name": "Goggles", "supercategory": null}, {"id": 101, "name": "Goldfish", "supercategory": null}, {"id": 102, "name": "Gondola", "supercategory": null}, {"id": 103, "name": "Goose", "supercategory": null}, {"id": 104, "name": "Grape", "supercategory": null}, {"id": 105, "name": "Grapefruit", "supercategory": null}, {"id": 106, "name": "Guitar", "supercategory": null}, {"id": 107, "name": "Hamburger", "supercategory": null}, {"id": 108, "name": "Handbag", "supercategory": null}, {"id": 109, "name": "Harbor seal", "supercategory": null}, {"id": 110, "name": "Headphones", "supercategory": null}, {"id": 111, "name": "Helicopter", "supercategory": null}, {"id": 112, "name": "High heels", "supercategory": null}, {"id": 113, "name": "Hiking equipment", "supercategory": null}, {"id": 114, "name": "Horse", "supercategory": null}, {"id": 115, "name": "House", "supercategory": null}, {"id": 116, "name": "Houseplant", "supercategory": null}, {"id": 117, "name": "Human arm", "supercategory": null}, {"id": 118, "name": "Human beard", "supercategory": null}, {"id": 119, "name": "Human body", "supercategory": null}, {"id": 120, "name": "Human ear", "supercategory": null}, {"id": 121, "name": "Human eye", "supercategory": null}, {"id": 122, "name": "Human face", "supercategory": null}, {"id": 123, "name": "Human foot", "supercategory": null}, {"id": 124, "name": "Human hair", "supercategory": null}, {"id": 125, "name": "Human hand", "supercategory": null}, {"id": 126, "name": "Human head", "supercategory": null}, {"id": 127, "name": "Human leg", "supercategory": null}, {"id": 128, "name": "Human mouth", "supercategory": null}, {"id": 129, "name": "Human nose", "supercategory": null}, {"id": 130, "name": "Ice cream", "supercategory": null}, {"id": 131, "name": "Jacket", "supercategory": null}, {"id": 132, "name": "Jeans", "supercategory": null}, {"id": 133, "name": "Jellyfish", "supercategory": null}, {"id": 134, "name": "Juice", "supercategory": null}, {"id": 135, "name": "Kitchen & dining room table", "supercategory": null}, {"id": 136, "name": "Kite", "supercategory": null}, {"id": 137, "name": "Lamp", "supercategory": null}, {"id": 138, "name": "Lantern", "supercategory": null}, {"id": 139, "name": "Laptop", "supercategory": null}, {"id": 140, "name": "Lavender (Plant)", "supercategory": null}, {"id": 141, "name": "Lemon", "supercategory": null}, {"id": 142, "name": "Light bulb", "supercategory": null}, {"id": 143, "name": "Lighthouse", "supercategory": null}, {"id": 144, "name": "Lily", "supercategory": null}, {"id": 145, "name": "Lion", "supercategory": null}, {"id": 146, "name": "Lipstick", "supercategory": null}, {"id": 147, "name": "Lizard", "supercategory": null}, {"id": 148, "name": "Man", "supercategory": null}, {"id": 149, "name": "Maple", "supercategory": null}, {"id": 150, "name": "Microphone", "supercategory": null}, {"id": 151, "name": "Mirror", "supercategory": null}, {"id": 152, "name": "Mixing bowl", "supercategory": null}, {"id": 153, "name": "Mobile phone", "supercategory": null}, {"id": 154, "name": "Monkey", "supercategory": null}, {"id": 155, "name": "Motorcycle", "supercategory": null}, {"id": 156, "name": "Muffin", "supercategory": null}, {"id": 157, "name": "Mug", "supercategory": null}, {"id": 158, "name": "Mule", "supercategory": null}, {"id": 159, "name": "Mushroom", "supercategory": null}, {"id": 160, "name": "Musical keyboard", "supercategory": null}, {"id": 161, "name": "Necklace", "supercategory": null}, {"id": 162, "name": "Nightstand", "supercategory": null}, {"id": 163, "name": "Office building", "supercategory": null}, {"id": 164, "name": "Orange", "supercategory": null}, {"id": 165, "name": "Owl", "supercategory": null}, {"id": 166, "name": "Oyster", "supercategory": null}, {"id": 167, "name": "Paddle", "supercategory": null}, {"id": 168, "name": "Palm tree", "supercategory": null}, {"id": 169, "name": "Parachute", "supercategory": null}, {"id": 170, "name": "Parrot", "supercategory": null}, {"id": 171, "name": "Pen", "supercategory": null}, {"id": 172, "name": "Penguin", "supercategory": null}, {"id": 173, "name": "Personal flotation device", "supercategory": null}, {"id": 174, "name": "Piano", "supercategory": null}, {"id": 175, "name": "Picture frame", "supercategory": null}, {"id": 176, "name": "Pig", "supercategory": null}, {"id": 177, "name": "Pillow", "supercategory": null}, {"id": 178, "name": "Pizza", "supercategory": null}, {"id": 179, "name": "Plate", "supercategory": null}, {"id": 180, "name": "Platter", "supercategory": null}, {"id": 181, "name": "Porch", "supercategory": null}, {"id": 182, "name": "Poster", "supercategory": null}, {"id": 183, "name": "Pumpkin", "supercategory": null}, {"id": 184, "name": "Rabbit", "supercategory": null}, {"id": 185, "name": "Rifle", "supercategory": null}, {"id": 186, "name": "Roller skates", "supercategory": null}, {"id": 187, "name": "Rose", "supercategory": null}, {"id": 188, "name": "Salad", "supercategory": null}, {"id": 189, "name": "Sandal", "supercategory": null}, {"id": 190, "name": "Saucer", "supercategory": null}, {"id": 191, "name": "Saxophone", "supercategory": null}, {"id": 192, "name": "Scarf", "supercategory": null}, {"id": 193, "name": "Sea lion", "supercategory": null}, {"id": 194, "name": "Sea turtle", "supercategory": null}, {"id": 195, "name": "Sheep", "supercategory": null}, {"id": 196, "name": "Shelf", "supercategory": null}, {"id": 197, "name": "Shirt", "supercategory": null}, {"id": 198, "name": "Shorts", "supercategory": null}, {"id": 199, "name": "Shrimp", "supercategory": null}, {"id": 200, "name": "Sink", "supercategory": null}, {"id": 201, "name": "Skateboard", "supercategory": null}, {"id": 202, "name": "Ski", "supercategory": null}, {"id": 203, "name": "Skull", "supercategory": null}, {"id": 204, "name": "Skyscraper", "supercategory": null}, {"id": 205, "name": "Snake", "supercategory": null}, {"id": 206, "name": "Sock", "supercategory": null}, {"id": 207, "name": "Sofa bed", "supercategory": null}, {"id": 208, "name": "Sparrow", "supercategory": null}, {"id": 209, "name": "Spider", "supercategory": null}, {"id": 210, "name": "Spoon", "supercategory": null}, {"id": 211, "name": "Sports uniform", "supercategory": null}, {"id": 212, "name": "Squirrel", "supercategory": null}, {"id": 213, "name": "Stairs", "supercategory": null}, {"id": 214, "name": "Stool", "supercategory": null}, {"id": 215, "name": "Strawberry", "supercategory": null}, {"id": 216, "name": "Street light", "supercategory": null}, {"id": 217, "name": "Studio couch", "supercategory": null}, {"id": 218, "name": "Suit", "supercategory": null}, {"id": 219, "name": "Sun hat", "supercategory": null}, {"id": 220, "name": "Sunglasses", "supercategory": null}, {"id": 221, "name": "Surfboard", "supercategory": null}, {"id": 222, "name": "Sushi", "supercategory": null}, {"id": 223, "name": "Swan", "supercategory": null}, {"id": 224, "name": "Swimming pool", "supercategory": null}, {"id": 225, "name": "Swimwear", "supercategory": null}, {"id": 226, "name": "Tank", "supercategory": null}, {"id": 227, "name": "Tap", "supercategory": null}, {"id": 228, "name": "Taxi", "supercategory": null}, {"id": 229, "name": "Tea", "supercategory": null}, {"id": 230, "name": "Teddy bear", "supercategory": null}, {"id": 231, "name": "Television", "supercategory": null}, {"id": 232, "name": "Tent", "supercategory": null}, {"id": 233, "name": "Tie", "supercategory": null}, {"id": 234, "name": "Tiger", "supercategory": null}, {"id": 235, "name": "Tin can", "supercategory": null}, {"id": 236, "name": "Tire", "supercategory": null}, {"id": 237, "name": "Toilet", "supercategory": null}, {"id": 238, "name": "Tomato", "supercategory": null}, {"id": 239, "name": "Tortoise", "supercategory": null}, {"id": 240, "name": "Tower", "supercategory": null}, {"id": 241, "name": "Traffic light", "supercategory": null}, {"id": 242, "name": "Train", "supercategory": null}, {"id": 243, "name": "Tripod", "supercategory": null}, {"id": 244, "name": "Truck", "supercategory": null}, {"id": 245, "name": "Trumpet", "supercategory": null}, {"id": 246, "name": "Umbrella", "supercategory": null}, {"id": 247, "name": "Van", "supercategory": null}, {"id": 248, "name": "Vase", "supercategory": null}, {"id": 249, "name": "Vehicle registration plate", "supercategory": null}, {"id": 250, "name": "Violin", "supercategory": null}, {"id": 251, "name": "Wall clock", "supercategory": null}, {"id": 252, "name": "Waste container", "supercategory": null}, {"id": 253, "name": "Watch", "supercategory": null}, {"id": 254, "name": "Whale", "supercategory": null}, {"id": 255, "name": "Wheel", "supercategory": null}, {"id": 256, "name": "Wheelchair", "supercategory": null}, {"id": 257, "name": "Whiteboard", "supercategory": null}, {"id": 258, "name": "Window", "supercategory": null}, {"id": 259, "name": "Wine", "supercategory": null}, {"id": 260, "name": "Wine glass", "supercategory": null}, {"id": 261, "name": "Woman", "supercategory": null}, {"id": 262, "name": "Zebra", "supercategory": null}, {"id": 263, "name": "Zucchini", "supercategory": null}], "images": [{"id": 1, "file_name": "019347cc4772963d.jpg", "height": 758, "width": 1024, "license": null, "coco_url": null}, {"id": 2, "file_name": "1ae611d2d446f3f1.jpg", "height": 576, "width": 1024, "license": null, "coco_url": null}, {"id": 3, "file_name": "dbc3a99337d51878.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 4, "file_name": "f8e1bd663ddea445.jpg", "height": 1024, "width": 1024, "license": null, "coco_url": null}, {"id": 5, "file_name": "362c282c027b7d18.jpg", "height": 1024, "width": 577, "license": null, "coco_url": null}, {"id": 6, "file_name": "49717cd78fd9c1f1.jpg", "height": 969, "width": 1024, "license": null, "coco_url": null}, {"id": 7, "file_name": "57772c5065be9e7f.jpg", "height": 1024, "width": 932, "license": null, "coco_url": null}, {"id": 8, "file_name": "74fda9f7b64734dd.jpg", "height": 693, "width": 1024, "license": null, "coco_url": null}, {"id": 9, "file_name": "9abeed7d14b78323.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 10, "file_name": "be44a92a7acd06fa.jpg", "height": 765, "width": 1024, "license": null, "coco_url": null}, {"id": 11, "file_name": "c68aadc05eef3cd3.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 12, "file_name": "c828a2e004df2a82.jpg", "height": 872, "width": 1024, "license": null, "coco_url": null}, {"id": 13, "file_name": "d960177c836926c4.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 14, "file_name": "daaec27252ed6223.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 15, "file_name": "f17a869e39e24721.jpg", "height": 726, "width": 1024, "license": null, "coco_url": null}, {"id": 16, "file_name": "fa6407bf9c5ad078.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 17, "file_name": "3120e46a6a14d2ee.jpg", "height": 681, "width": 1024, "license": null, "coco_url": null}, {"id": 18, "file_name": "fa7a646136b322c4.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 19, "file_name": "01e714e8fbbc0d0c.jpg", "height": 639, "width": 1024, "license": null, "coco_url": null}, {"id": 20, "file_name": "f09c4488e88a321f.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 21, "file_name": "01e8509529aac2b8.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 22, "file_name": "020b620f1958636a.jpg", "height": 1024, "width": 1024, "license": null, "coco_url": null}, {"id": 23, "file_name": "020feca9b536f1fe.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 24, "file_name": "0872e68386e83a83.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 25, "file_name": "109be5018058e0b6.jpg", "height": 1024, "width": 759, "license": null, "coco_url": null}, {"id": 26, "file_name": "1310b74bd368544e.jpg", "height": 724, "width": 1024, "license": null, "coco_url": null}, {"id": 27, "file_name": "13ffeb4fec0d2c49.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 28, "file_name": "173eda5586f0dc07.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 29, "file_name": "1de43c612c75dce3.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 30, "file_name": "1e73dd071c85fe3d.jpg", "height": 791, "width": 1024, "license": null, "coco_url": null}, {"id": 31, "file_name": "1f5f6d92b298fe49.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 32, "file_name": "25483760fdc9dc67.jpg", "height": 682, "width": 1024, "license": null, "coco_url": null}, {"id": 33, "file_name": "267374d90f1efe1c.jpg", "height": 715, "width": 1024, "license": null, "coco_url": null}, {"id": 34, "file_name": "2cbef3f360dd4113.jpg", "height": 682, "width": 1024, "license": null, "coco_url": null}, {"id": 35, "file_name": "2d5f4b232323284a.jpg", "height": 790, "width": 1024, "license": null, "coco_url": null}, {"id": 36, "file_name": "2e445dbd3720d2e4.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 37, "file_name": "2f22d02024289b0f.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 38, "file_name": "2f90aaa72744452d.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 39, "file_name": "325a30c7fe96cdd9.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 40, "file_name": "326c3286bcb5b2b0.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 41, "file_name": "34b1464cf92b97f7.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 42, "file_name": "3511d84ab70a6777.jpg", "height": 766, "width": 1024, "license": null, "coco_url": null}, {"id": 43, "file_name": "3648f1322a79af5c.jpg", "height": 765, "width": 1024, "license": null, "coco_url": null}, {"id": 44, "file_name": "37439c3c26bb342a.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 45, "file_name": "37625d59d0e0782a.jpg", "height": 576, "width": 1024, "license": null, "coco_url": null}, {"id": 46, "file_name": "3dd2527e2522967b.jpg", "height": 663, "width": 1024, "license": null, "coco_url": null}, {"id": 47, "file_name": "3e9090bb35218296.jpg", "height": 678, "width": 1024, "license": null, "coco_url": null}, {"id": 48, "file_name": "3f288e8a78932327.jpg", "height": 624, "width": 1024, "license": null, "coco_url": null}, {"id": 49, "file_name": "427d1f12e0f6113f.jpg", "height": 684, "width": 1024, "license": null, "coco_url": null}, {"id": 50, "file_name": "465cc20ecb9331de.jpg", "height": 682, "width": 1024, "license": null, "coco_url": null}, {"id": 51, "file_name": "4bb12838b691a7f6.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 52, "file_name": "5279aac6d95cbf5e.jpg", "height": 646, "width": 1024, "license": null, "coco_url": null}, {"id": 53, "file_name": "5be5706b9f9f22ab.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 54, "file_name": "614b2fa406f95777.jpg", "height": 1024, "width": 1024, "license": null, "coco_url": null}, {"id": 55, "file_name": "6b03453a0561b8bf.jpg", "height": 705, "width": 1024, "license": null, "coco_url": null}, {"id": 56, "file_name": "6ca6aae3f153b841.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 57, "file_name": "76cd8901d20cea99.jpg", "height": 1024, "width": 970, "license": null, "coco_url": null}, {"id": 58, "file_name": "7edb152ac977cffc.jpg", "height": 682, "width": 1024, "license": null, "coco_url": null}, {"id": 59, "file_name": "9054c31d6bc3eaff.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 60, "file_name": "91a758c4ec5a86f9.jpg", "height": 576, "width": 1024, "license": null, "coco_url": null}, {"id": 61, "file_name": "92e958189c11d52d.jpg", "height": 692, "width": 1024, "license": null, "coco_url": null}, {"id": 62, "file_name": "9885fa177ea6c06b.jpg", "height": 680, "width": 1024, "license": null, "coco_url": null}, {"id": 63, "file_name": "9a02bb63b8f46e51.jpg", "height": 685, "width": 1024, "license": null, "coco_url": null}, {"id": 64, "file_name": "a04e7800a919aa94.jpg", "height": 685, "width": 1024, "license": null, "coco_url": null}, {"id": 65, "file_name": "a122f1e659051695.jpg", "height": 677, "width": 1024, "license": null, "coco_url": null}, {"id": 66, "file_name": "a322ab468216f3ad.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 67, "file_name": "a52079c6cc4050cd.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 68, "file_name": "a582197dff522ef5.jpg", "height": 664, "width": 1024, "license": null, "coco_url": null}, {"id": 69, "file_name": "a5cbb46ba3a9363c.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 70, "file_name": "a6cb3c91062ba6fb.jpg", "height": 768, "width": 768, "license": null, "coco_url": null}, {"id": 71, "file_name": "acb0868270124e16.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 72, "file_name": "b062bd087c55259a.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 73, "file_name": "b25bd1f30abe88bc.jpg", "height": 682, "width": 1024, "license": null, "coco_url": null}, {"id": 74, "file_name": "b6b804401adcbe4a.jpg", "height": 682, "width": 1024, "license": null, "coco_url": null}, {"id": 75, "file_name": "b89ed1c8f526544f.jpg", "height": 632, "width": 1024, "license": null, "coco_url": null}, {"id": 76, "file_name": "b8d75f6e2961a003.jpg", "height": 685, "width": 1024, "license": null, "coco_url": null}, {"id": 77, "file_name": "b908ed4c45c759fa.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 78, "file_name": "c7a0075a05f58d11.jpg", "height": 613, "width": 1024, "license": null, "coco_url": null}, {"id": 79, "file_name": "c7d91f5e1ef94a1d.jpg", "height": 1024, "width": 1024, "license": null, "coco_url": null}, {"id": 80, "file_name": "c7f21485de5d2de3.jpg", "height": 685, "width": 1024, "license": null, "coco_url": null}, {"id": 81, "file_name": "cd0a29d0bae0167f.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 82, "file_name": "cef16bae47333515.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 83, "file_name": "cfc25c92ec31ed5e.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 84, "file_name": "d2f7e03433c3f000.jpg", "height": 554, "width": 1024, "license": null, "coco_url": null}, {"id": 85, "file_name": "d5e01c7dd9a4123b.jpg", "height": 1024, "width": 683, "license": null, "coco_url": null}, {"id": 86, "file_name": "d830c3573e57bfc0.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 87, "file_name": "de4ca997b5b9c468.jpg", "height": 605, "width": 1024, "license": null, "coco_url": null}, {"id": 88, "file_name": "e05c65afc710a6f6.jpg", "height": 571, "width": 1024, "license": null, "coco_url": null}, {"id": 89, "file_name": "e0d9b46ea2950a9d.jpg", "height": 1024, "width": 680, "license": null, "coco_url": null}, {"id": 90, "file_name": "e0ee278864042bc1.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 91, "file_name": "e2bcf09a882988fa.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 92, "file_name": "e3796068bc32a386.jpg", "height": 685, "width": 1024, "license": null, "coco_url": null}, {"id": 93, "file_name": "e5bc1afa441b9b40.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 94, "file_name": "e6589663b4762079.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 95, "file_name": "e69bda05d7dd42b8.jpg", "height": 576, "width": 1024, "license": null, "coco_url": null}, {"id": 96, "file_name": "e88ac690720d10aa.jpg", "height": 764, "width": 1024, "license": null, "coco_url": null}, {"id": 97, "file_name": "e8f8386afa01c1d9.jpg", "height": 647, "width": 1024, "license": null, "coco_url": null}, {"id": 98, "file_name": "e9a216c6ba4aa146.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 99, "file_name": "ed489cc9696a6f97.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 100, "file_name": "eddbde8d75ca1b25.jpg", "height": 516, "width": 1024, "license": null, "coco_url": null}, {"id": 101, "file_name": "f064a5c64d52d6fc.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 102, "file_name": "f14328bf0af6cbf5.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 103, "file_name": "f2195ccf87e1180b.jpg", "height": 678, "width": 1024, "license": null, "coco_url": null}, {"id": 104, "file_name": "f26607614a896195.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 105, "file_name": "f71e15c1cedf3691.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 106, "file_name": "faa4c62073e2586a.jpg", "height": 738, "width": 1024, "license": null, "coco_url": null}, {"id": 107, "file_name": "fdb8b446707360cd.jpg", "height": 754, "width": 1024, "license": null, "coco_url": null}, {"id": 108, "file_name": "01f8886b50a031a1.jpg", "height": 807, "width": 1024, "license": null, "coco_url": null}, {"id": 109, "file_name": "0411dd1941790d58.jpg", "height": 1024, "width": 683, "license": null, "coco_url": null}, {"id": 110, "file_name": "0704499ce810af77.jpg", "height": 686, "width": 1024, "license": null, "coco_url": null}, {"id": 111, "file_name": "0af4326e3db0c11a.jpg", "height": 1024, "width": 683, "license": null, "coco_url": null}, {"id": 112, "file_name": "0b9b8845f1b27c1a.jpg", "height": 1024, "width": 826, "license": null, "coco_url": null}, {"id": 113, "file_name": "0c295283d2a46bd7.jpg", "height": 685, "width": 1024, "license": null, "coco_url": null}, {"id": 114, "file_name": "0e277b2a7b18c02a.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 115, "file_name": "11cd71943afb477e.jpg", "height": 574, "width": 1024, "license": null, "coco_url": null}, {"id": 116, "file_name": "12aa9167c034ea37.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 117, "file_name": "12b06cbeaa8b634a.jpg", "height": 1024, "width": 957, "license": null, "coco_url": null}, {"id": 118, "file_name": "1310093bf18b5e79.jpg", "height": 1024, "width": 680, "license": null, "coco_url": null}, {"id": 119, "file_name": "139284098b4b02a0.jpg", "height": 1024, "width": 819, "license": null, "coco_url": null}, {"id": 120, "file_name": "13bd59eb15e2e087.jpg", "height": 1024, "width": 683, "license": null, "coco_url": null}, {"id": 121, "file_name": "19aa0e0ad2fa06b6.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 122, "file_name": "1b6b2d0b9c8f5f0c.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 123, "file_name": "1d88df5d7e3920c8.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 124, "file_name": "1df17cd5cfc65c06.jpg", "height": 1024, "width": 681, "license": null, "coco_url": null}, {"id": 125, "file_name": "273d76c3c5029109.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 126, "file_name": "29531f9650d9cb70.jpg", "height": 801, "width": 1024, "license": null, "coco_url": null}, {"id": 127, "file_name": "2c7093ebc1087698.jpg", "height": 682, "width": 1024, "license": null, "coco_url": null}, {"id": 128, "file_name": "2cb206e0d509c8cb.jpg", "height": 1024, "width": 781, "license": null, "coco_url": null}, {"id": 129, "file_name": "39ddd29e653da449.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 130, "file_name": "3ab64d8f62ae62b8.jpg", "height": 573, "width": 1024, "license": null, "coco_url": null}, {"id": 131, "file_name": "3f972f1ddfaecd27.jpg", "height": 1024, "width": 1024, "license": null, "coco_url": null}, {"id": 132, "file_name": "3fde0a96ded34165.jpg", "height": 1024, "width": 664, "license": null, "coco_url": null}, {"id": 133, "file_name": "4023d084b0786f72.jpg", "height": 1024, "width": 748, "license": null, "coco_url": null}, {"id": 134, "file_name": "43c9c29b7ca7c9e8.jpg", "height": 620, "width": 1024, "license": null, "coco_url": null}, {"id": 135, "file_name": "44d4518d02dc1eac.jpg", "height": 691, "width": 1024, "license": null, "coco_url": null}, {"id": 136, "file_name": "4c84d844c2688bd8.jpg", "height": 668, "width": 1024, "license": null, "coco_url": null}, {"id": 137, "file_name": "4d0607cf4a201a47.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 138, "file_name": "502b40f6e115b744.jpg", "height": 1024, "width": 902, "license": null, "coco_url": null}, {"id": 139, "file_name": "504490bea6c3c8e4.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 140, "file_name": "508a10a62c4e3e54.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 141, "file_name": "51455d2a76eb8788.jpg", "height": 681, "width": 1024, "license": null, "coco_url": null}, {"id": 142, "file_name": "557980eafee40574.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 143, "file_name": "55f4d5d8e108fb5b.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 144, "file_name": "57d9c9676b31ea78.jpg", "height": 681, "width": 1024, "license": null, "coco_url": null}, {"id": 145, "file_name": "589c3658dc27bcfd.jpg", "height": 1024, "width": 683, "license": null, "coco_url": null}, {"id": 146, "file_name": "5c6aade0f7e35273.jpg", "height": 1024, "width": 683, "license": null, "coco_url": null}, {"id": 147, "file_name": "61c1525cceadde82.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 148, "file_name": "6bf820edaaec0a84.jpg", "height": 680, "width": 1024, "license": null, "coco_url": null}, {"id": 149, "file_name": "6c3321386f1dae8e.jpg", "height": 685, "width": 1024, "license": null, "coco_url": null}, {"id": 150, "file_name": "6cc75e91cff7278a.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 151, "file_name": "6dc43511d5d4f597.jpg", "height": 1024, "width": 1024, "license": null, "coco_url": null}, {"id": 152, "file_name": "6e86e224c7e36481.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 153, "file_name": "6fdf51d6dafe5500.jpg", "height": 707, "width": 1024, "license": null, "coco_url": null}, {"id": 154, "file_name": "72bc8f6d49920cf9.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 155, "file_name": "72d8055498521dc8.jpg", "height": 658, "width": 1024, "license": null, "coco_url": null}, {"id": 156, "file_name": "741dac7d261bfa0c.jpg", "height": 655, "width": 1024, "license": null, "coco_url": null}, {"id": 157, "file_name": "78d1c655fe7b7186.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 158, "file_name": "78d4a72436b6c450.jpg", "height": 1024, "width": 683, "license": null, "coco_url": null}, {"id": 159, "file_name": "7b14d1d7166f9abd.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 160, "file_name": "7cb8623114c82667.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 161, "file_name": "7d79f1032cb0cafe.jpg", "height": 1024, "width": 681, "license": null, "coco_url": null}, {"id": 162, "file_name": "822d02a383281e82.jpg", "height": 769, "width": 1024, "license": null, "coco_url": null}, {"id": 163, "file_name": "822f20d881eebeb9.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 164, "file_name": "82c55e71e3dfe06d.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 165, "file_name": "830ec5c13f55d161.jpg", "height": 1024, "width": 892, "license": null, "coco_url": null}, {"id": 166, "file_name": "85cdfe579ac7a09a.jpg", "height": 1024, "width": 683, "license": null, "coco_url": null}, {"id": 167, "file_name": "862c5b6b0a8b2437.jpg", "height": 1024, "width": 683, "license": null, "coco_url": null}, {"id": 168, "file_name": "86a6366f57093823.jpg", "height": 576, "width": 1024, "license": null, "coco_url": null}, {"id": 169, "file_name": "89053c0b77928e33.jpg", "height": 1024, "width": 683, "license": null, "coco_url": null}, {"id": 170, "file_name": "935ddd7147973bbe.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 171, "file_name": "974f11741a923462.jpg", "height": 725, "width": 1024, "license": null, "coco_url": null}, {"id": 172, "file_name": "9b262bf6ef9531f7.jpg", "height": 685, "width": 1024, "license": null, "coco_url": null}, {"id": 173, "file_name": "a78eda92f1a3c6d5.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 174, "file_name": "aa45c0739763082c.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 175, "file_name": "ac3f4e50732de3f9.jpg", "height": 680, "width": 1024, "license": null, "coco_url": null}, {"id": 176, "file_name": "ad08afb5c0f5bb34.jpg", "height": 1024, "width": 1024, "license": null, "coco_url": null}, {"id": 177, "file_name": "ada751281ffe954e.jpg", "height": 1024, "width": 685, "license": null, "coco_url": null}, {"id": 178, "file_name": "ae1b1cd448912ff2.jpg", "height": 1024, "width": 683, "license": null, "coco_url": null}, {"id": 179, "file_name": "b03bdb1049293322.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 180, "file_name": "b175fc0d52f4e9af.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 181, "file_name": "b1d4c65a05fb7095.jpg", "height": 1024, "width": 731, "license": null, "coco_url": null}, {"id": 182, "file_name": "b6d6e570eccdb5ec.jpg", "height": 1024, "width": 664, "license": null, "coco_url": null}, {"id": 183, "file_name": "b8e377eb812ac085.jpg", "height": 1024, "width": 681, "license": null, "coco_url": null}, {"id": 184, "file_name": "ba88cf9fea0e35e3.jpg", "height": 1011, "width": 768, "license": null, "coco_url": null}, {"id": 185, "file_name": "baa7002f05951f28.jpg", "height": 695, "width": 1024, "license": null, "coco_url": null}, {"id": 186, "file_name": "c4ff8bdf92ff9e88.jpg", "height": 692, "width": 1024, "license": null, "coco_url": null}, {"id": 187, "file_name": "c608300749520833.jpg", "height": 576, "width": 1024, "license": null, "coco_url": null}, {"id": 188, "file_name": "ca3ef34d7304dd6c.jpg", "height": 1024, "width": 683, "license": null, "coco_url": null}, {"id": 189, "file_name": "cba0766d1e6a8b48.jpg", "height": 685, "width": 1024, "license": null, "coco_url": null}, {"id": 190, "file_name": "ce4a4bcc5d2e2c72.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 191, "file_name": "d73f090e30750fdb.jpg", "height": 877, "width": 1024, "license": null, "coco_url": null}, {"id": 192, "file_name": "daeccbb8ebfe2972.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 193, "file_name": "dd1160459778fdd6.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 194, "file_name": "dd4b82f0b2c0b92a.jpg", "height": 681, "width": 1024, "license": null, "coco_url": null}, {"id": 195, "file_name": "de972028b90d798f.jpg", "height": 1024, "width": 683, "license": null, "coco_url": null}, {"id": 196, "file_name": "deb92a2aa11ec8de.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 197, "file_name": "df91adaa820b5149.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 198, "file_name": "e227d74340b6e3d0.jpg", "height": 1024, "width": 683, "license": null, "coco_url": null}, {"id": 199, "file_name": "e3de9701dc2df854.jpg", "height": 1024, "width": 766, "license": null, "coco_url": null}, {"id": 200, "file_name": "e5147ab4313abb30.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 201, "file_name": "e53516fe572e80cc.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 202, "file_name": "f3f8653c0c9aeb1b.jpg", "height": 1024, "width": 683, "license": null, "coco_url": null}, {"id": 203, "file_name": "f54cecf49c0397f5.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 204, "file_name": "f59705f3f30f97b5.jpg", "height": 678, "width": 1024, "license": null, "coco_url": null}, {"id": 205, "file_name": "f90ead55fbc3327d.jpg", "height": 1024, "width": 722, "license": null, "coco_url": null}, {"id": 206, "file_name": "fbde77a07ece0cc0.jpg", "height": 684, "width": 1024, "license": null, "coco_url": null}, {"id": 207, "file_name": "503fa8a862275e8e.jpg", "height": 737, "width": 1024, "license": null, "coco_url": null}, {"id": 208, "file_name": "ae58a6fa7d12ea50.jpg", "height": 532, "width": 1024, "license": null, "coco_url": null}, {"id": 209, "file_name": "ef7d022edc6493a3.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 210, "file_name": "23944a69f7a0b625.jpg", "height": 974, "width": 1024, "license": null, "coco_url": null}, {"id": 211, "file_name": "2f99245feec13d9e.jpg", "height": 1024, "width": 686, "license": null, "coco_url": null}, {"id": 212, "file_name": "344c25ee165857c1.jpg", "height": 691, "width": 1024, "license": null, "coco_url": null}, {"id": 213, "file_name": "37d621a78dc8ccf0.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 214, "file_name": "538135fc9102ba99.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 215, "file_name": "5a4b1f3381805ca0.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 216, "file_name": "ad30f10cbf3a6e02.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 217, "file_name": "c495450425903fb8.jpg", "height": 636, "width": 1024, "license": null, "coco_url": null}, {"id": 218, "file_name": "d698ab6f42fb2562.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 219, "file_name": "e2674053b8a0c6c4.jpg", "height": 1024, "width": 624, "license": null, "coco_url": null}, {"id": 220, "file_name": "e988af41482a8fe7.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 221, "file_name": "07d551f1745be790.jpg", "height": 797, "width": 1024, "license": null, "coco_url": null}, {"id": 222, "file_name": "09ea349ee555b61d.jpg", "height": 680, "width": 1024, "license": null, "coco_url": null}, {"id": 223, "file_name": "15c132328c0dd1b3.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 224, "file_name": "238a4fe184791234.jpg", "height": 703, "width": 1024, "license": null, "coco_url": null}, {"id": 225, "file_name": "2bc8d6bf8eb71c21.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 226, "file_name": "6f42504c90b19aaf.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 227, "file_name": "72fb9f7726cee4de.jpg", "height": 1024, "width": 692, "license": null, "coco_url": null}, {"id": 228, "file_name": "75f04ab8f4fd7ea3.jpg", "height": 680, "width": 1024, "license": null, "coco_url": null}, {"id": 229, "file_name": "7e2e1607fa3b6f9d.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 230, "file_name": "8cfb0b9b024ac03d.jpg", "height": 1024, "width": 683, "license": null, "coco_url": null}, {"id": 231, "file_name": "91326c78d83ca693.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 232, "file_name": "a046fc38aaf5b12d.jpg", "height": 1024, "width": 1014, "license": null, "coco_url": null}, {"id": 233, "file_name": "aeb0e0b4e1770cf2.jpg", "height": 576, "width": 1024, "license": null, "coco_url": null}, {"id": 234, "file_name": "bc857cdddd5c152e.jpg", "height": 577, "width": 1024, "license": null, "coco_url": null}, {"id": 235, "file_name": "c8a4a228c9df91ef.jpg", "height": 685, "width": 1024, "license": null, "coco_url": null}, {"id": 236, "file_name": "f7210ece96c29c23.jpg", "height": 1024, "width": 665, "license": null, "coco_url": null}, {"id": 237, "file_name": "08b77ff5c8612576.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 238, "file_name": "18547aee9040e10f.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 239, "file_name": "18818672b0b82c14.jpg", "height": 768, "width": 963, "license": null, "coco_url": null}, {"id": 240, "file_name": "1c05f7dea200b914.jpg", "height": 1002, "width": 1024, "license": null, "coco_url": null}, {"id": 241, "file_name": "220dd0459513f089.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 242, "file_name": "450ec03ca23c48ee.jpg", "height": 768, "width": 872, "license": null, "coco_url": null}, {"id": 243, "file_name": "479e766d0cba0868.jpg", "height": 1024, "width": 862, "license": null, "coco_url": null}, {"id": 244, "file_name": "519e416a87403ee4.jpg", "height": 916, "width": 1024, "license": null, "coco_url": null}, {"id": 245, "file_name": "582336cbd3769876.jpg", "height": 924, "width": 1024, "license": null, "coco_url": null}, {"id": 246, "file_name": "70ff07ac98ac5cb0.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 247, "file_name": "76dc2394748a20de.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 248, "file_name": "7a691db51234336a.jpg", "height": 1024, "width": 683, "license": null, "coco_url": null}, {"id": 249, "file_name": "7cb248b948969749.jpg", "height": 3648, "width": 5472, "license": null, "coco_url": null}, {"id": 250, "file_name": "7cf38c60e992c948.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 251, "file_name": "8455e1539fad43c0.jpg", "height": 742, "width": 1024, "license": null, "coco_url": null}, {"id": 252, "file_name": "851dc91c304f2eca.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 253, "file_name": "8975c7a159781e47.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 254, "file_name": "8e974b3bd584a025.jpg", "height": 1024, "width": 994, "license": null, "coco_url": null}, {"id": 255, "file_name": "b4bf8713c7f34283.jpg", "height": 1024, "width": 683, "license": null, "coco_url": null}, {"id": 256, "file_name": "c21c2bd8a499ed95.jpg", "height": 1024, "width": 683, "license": null, "coco_url": null}, {"id": 257, "file_name": "c3ea1d6ee9591a18.jpg", "height": 577, "width": 1024, "license": null, "coco_url": null}, {"id": 258, "file_name": "c7e5f40a0f905e5b.jpg", "height": 1024, "width": 683, "license": null, "coco_url": null}, {"id": 259, "file_name": "d69cf20a7e019922.jpg", "height": 1024, "width": 682, "license": null, "coco_url": null}, {"id": 260, "file_name": "e1a367e16b4e07fb.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 261, "file_name": "f6c32a7445700f60.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 262, "file_name": "91be2c6665b6afaf.jpg", "height": 799, "width": 1024, "license": null, "coco_url": null}, {"id": 263, "file_name": "944281d0485869f0.jpg", "height": 682, "width": 1024, "license": null, "coco_url": null}, {"id": 264, "file_name": "02fcc80210b7cd5b.jpg", "height": 1024, "width": 683, "license": null, "coco_url": null}, {"id": 265, "file_name": "103156b19827a5fc.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 266, "file_name": "3a50bd009daded91.jpg", "height": 1024, "width": 818, "license": null, "coco_url": null}, {"id": 267, "file_name": "512720c021b2b631.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 268, "file_name": "8f3b25925471dc90.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 269, "file_name": "94c53be316c9a02e.jpg", "height": 1024, "width": 731, "license": null, "coco_url": null}, {"id": 270, "file_name": "33c41de3d8704fe8.jpg", "height": 441, "width": 1024, "license": null, "coco_url": null}, {"id": 271, "file_name": "5e0b53dc4f60ca33.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 272, "file_name": "ff1ebaae4b5dc3af.jpg", "height": 894, "width": 768, "license": null, "coco_url": null}, {"id": 273, "file_name": "ff7008672523e06a.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 274, "file_name": "1431788ff4626a30.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 275, "file_name": "44221f31a243f493.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 276, "file_name": "57d982ed20ab1861.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 277, "file_name": "748c347e2c2a3e1b.jpg", "height": 576, "width": 1024, "license": null, "coco_url": null}, {"id": 278, "file_name": "84a3b36435d8a934.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 279, "file_name": "b9850603522c0cf7.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 280, "file_name": "d3ca845d4983b3b8.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 281, "file_name": "f1651ffdb52b9991.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 282, "file_name": "f215cb000124d954.jpg", "height": 576, "width": 1024, "license": null, "coco_url": null}, {"id": 283, "file_name": "41b8a1ae8d1571e0.jpg", "height": 575, "width": 1024, "license": null, "coco_url": null}, {"id": 284, "file_name": "46cedd68ac895be9.jpg", "height": 682, "width": 1024, "license": null, "coco_url": null}, {"id": 285, "file_name": "50228acda3f734a3.jpg", "height": 1024, "width": 1024, "license": null, "coco_url": null}, {"id": 286, "file_name": "9f972d2e7a2e56d2.jpg", "height": 680, "width": 1024, "license": null, "coco_url": null}, {"id": 287, "file_name": "e6bfb63f83cb749d.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 288, "file_name": "111029deeea453f5.jpg", "height": 1024, "width": 1024, "license": null, "coco_url": null}, {"id": 289, "file_name": "27fec0e98c406a25.jpg", "height": 1024, "width": 741, "license": null, "coco_url": null}, {"id": 290, "file_name": "501a315dc70375b6.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 291, "file_name": "548a88164fe41436.jpg", "height": 478, "width": 1024, "license": null, "coco_url": null}, {"id": 292, "file_name": "73ed9d67dfe21ae5.jpg", "height": 682, "width": 1024, "license": null, "coco_url": null}, {"id": 293, "file_name": "951ba2ead7937d48.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 294, "file_name": "a61e595b19c5404b.jpg", "height": 815, "width": 1024, "license": null, "coco_url": null}, {"id": 295, "file_name": "afd7b94fad92003a.jpg", "height": 678, "width": 1024, "license": null, "coco_url": null}, {"id": 296, "file_name": "d3a91e20f011fda0.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 297, "file_name": "f05bfaaef721fb44.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 298, "file_name": "f6c6b0e59c2a8778.jpg", "height": 576, "width": 1024, "license": null, "coco_url": null}, {"id": 299, "file_name": "0527f2b804e3f3f7.jpg", "height": 682, "width": 1024, "license": null, "coco_url": null}, {"id": 300, "file_name": "89270bb322c00f9c.jpg", "height": 776, "width": 1024, "license": null, "coco_url": null}, {"id": 301, "file_name": "e5ac7b241061e873.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 302, "file_name": "05d75289b426c14a.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 303, "file_name": "901bca5b8605c606.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 304, "file_name": "b2257cf9ed9db40e.jpg", "height": 685, "width": 1024, "license": null, "coco_url": null}, {"id": 305, "file_name": "06aabc23f48f9eaa.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 306, "file_name": "07b09088d8991d11.jpg", "height": 1024, "width": 1024, "license": null, "coco_url": null}, {"id": 307, "file_name": "3bb525a8fc6a65b8.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 308, "file_name": "453a7c561620c1bb.jpg", "height": 1024, "width": 1024, "license": null, "coco_url": null}, {"id": 309, "file_name": "8f459c989ec5bfa6.jpg", "height": 1024, "width": 1024, "license": null, "coco_url": null}, {"id": 310, "file_name": "b12fbfc70ffe8f56.jpg", "height": 723, "width": 1024, "license": null, "coco_url": null}, {"id": 311, "file_name": "3490fd706da6b61e.jpg", "height": 476, "width": 1024, "license": null, "coco_url": null}, {"id": 312, "file_name": "35eb0cbe35015800.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 313, "file_name": "57203a4796c529e4.jpg", "height": 679, "width": 1024, "license": null, "coco_url": null}, {"id": 314, "file_name": "5d192d5ac68989be.jpg", "height": 1024, "width": 684, "license": null, "coco_url": null}, {"id": 315, "file_name": "678a9acab904215e.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 316, "file_name": "72738fbcfc5e18f4.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 317, "file_name": "83f80eccea53140e.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 318, "file_name": "90d47a425eb520f1.jpg", "height": 682, "width": 1024, "license": null, "coco_url": null}, {"id": 319, "file_name": "9bd904d9fa3d256f.jpg", "height": 689, "width": 1024, "license": null, "coco_url": null}, {"id": 320, "file_name": "c3e578ab5ebe1b0c.jpg", "height": 682, "width": 1024, "license": null, "coco_url": null}, {"id": 321, "file_name": "dd7c6dbfee84e796.jpg", "height": 682, "width": 1024, "license": null, "coco_url": null}, {"id": 322, "file_name": "f412c3466767c374.jpg", "height": 682, "width": 1024, "license": null, "coco_url": null}, {"id": 323, "file_name": "fa4f1b04dd882037.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 324, "file_name": "08633d6cdda962f2.jpg", "height": 681, "width": 1024, "license": null, "coco_url": null}, {"id": 325, "file_name": "ed9cedcac5b76c7c.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 326, "file_name": "0864de36d6df03db.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 327, "file_name": "50fc4e3695dc7c0e.jpg", "height": 716, "width": 1024, "license": null, "coco_url": null}, {"id": 328, "file_name": "fd96bc99468d66c2.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 329, "file_name": "d61bb3d416016a56.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 330, "file_name": "0a3f577a327ca7cc.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 331, "file_name": "0b8ba050b1d83bb7.jpg", "height": 712, "width": 1024, "license": null, "coco_url": null}, {"id": 332, "file_name": "9c6eb3ecb32f50b6.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 333, "file_name": "faeb0db9c793e661.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 334, "file_name": "0a4c4ab517c2900e.jpg", "height": 677, "width": 1024, "license": null, "coco_url": null}, {"id": 335, "file_name": "0ac51477636a6933.jpg", "height": 685, "width": 1024, "license": null, "coco_url": null}, {"id": 336, "file_name": "0ac8510707245b9f.jpg", "height": 918, "width": 1024, "license": null, "coco_url": null}, {"id": 337, "file_name": "1ce1f362b5bcaafe.jpg", "height": 1024, "width": 723, "license": null, "coco_url": null}, {"id": 338, "file_name": "2c1e23515fe5ace8.jpg", "height": 819, "width": 1024, "license": null, "coco_url": null}, {"id": 339, "file_name": "37e9c40a9a0e4bc1.jpg", "height": 1024, "width": 732, "license": null, "coco_url": null}, {"id": 340, "file_name": "4a120f71897ba04f.jpg", "height": 814, "width": 1024, "license": null, "coco_url": null}, {"id": 341, "file_name": "5c746298e5d7aef5.jpg", "height": 662, "width": 1024, "license": null, "coco_url": null}, {"id": 342, "file_name": "62ef2c6e44778ce7.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 343, "file_name": "67be89915e5a4308.jpg", "height": 1024, "width": 765, "license": null, "coco_url": null}, {"id": 344, "file_name": "7a53837a5ab393cf.jpg", "height": 1024, "width": 1024, "license": null, "coco_url": null}, {"id": 345, "file_name": "81e7fee4a695485b.jpg", "height": 682, "width": 1024, "license": null, "coco_url": null}, {"id": 346, "file_name": "8ec6c33282e9639f.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 347, "file_name": "9d4ba948e3251713.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 348, "file_name": "bcb34c07ae292c93.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 349, "file_name": "d463ca9265a00ab0.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 350, "file_name": "daf6f2eccfd7743b.jpg", "height": 769, "width": 1024, "license": null, "coco_url": null}, {"id": 351, "file_name": "ebb3e798e29dee89.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 352, "file_name": "f8758cffd5b7013e.jpg", "height": 812, "width": 1024, "license": null, "coco_url": null}, {"id": 353, "file_name": "f9e0ab595065bcb9.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 354, "file_name": "0c9c9ebe5c9aff0b.jpg", "height": 576, "width": 1024, "license": null, "coco_url": null}, {"id": 355, "file_name": "0cf4ec7ef0c0ce07.jpg", "height": 1024, "width": 594, "license": null, "coco_url": null}, {"id": 356, "file_name": "21d68297ff292660.jpg", "height": 1024, "width": 805, "license": null, "coco_url": null}, {"id": 357, "file_name": "4200cc801a895d73.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 358, "file_name": "cafd37ff624df442.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 359, "file_name": "e279f70bb4de9588.jpg", "height": 1024, "width": 680, "license": null, "coco_url": null}, {"id": 360, "file_name": "0fa7c2036d593e34.jpg", "height": 1024, "width": 666, "license": null, "coco_url": null}, {"id": 361, "file_name": "10937c7dcffbb6be.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 362, "file_name": "a818fe9b0a1eabfb.jpg", "height": 1024, "width": 777, "license": null, "coco_url": null}, {"id": 363, "file_name": "20d938b9cc57b4bd.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 364, "file_name": "b32a25e7f0a97071.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 365, "file_name": "f5a88f72971e0a2e.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 366, "file_name": "11f2dcea2c487575.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 367, "file_name": "a9b45d7dc57ec8fa.jpg", "height": 1024, "width": 535, "license": null, "coco_url": null}, {"id": 368, "file_name": "e1a180575166c37a.jpg", "height": 685, "width": 1024, "license": null, "coco_url": null}, {"id": 369, "file_name": "17dd5f39320d8768.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 370, "file_name": "b881fd6392bbf59c.jpg", "height": 685, "width": 1024, "license": null, "coco_url": null}, {"id": 371, "file_name": "bbb74721560555e3.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 372, "file_name": "1ca1155083156d72.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 373, "file_name": "2adddd0b09bb0f17.jpg", "height": 755, "width": 1024, "license": null, "coco_url": null}, {"id": 374, "file_name": "17a07e6f32684598.jpg", "height": 1024, "width": 1024, "license": null, "coco_url": null}, {"id": 375, "file_name": "27acb3cb3afed663.jpg", "height": 684, "width": 1024, "license": null, "coco_url": null}, {"id": 376, "file_name": "b3900bcdd3759464.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 377, "file_name": "18f5b6e2f968c4e2.jpg", "height": 682, "width": 1024, "license": null, "coco_url": null}, {"id": 378, "file_name": "8d55772261d8ef52.jpg", "height": 682, "width": 1024, "license": null, "coco_url": null}, {"id": 379, "file_name": "c1a30c0e48d59800.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 380, "file_name": "19956690b58448f8.jpg", "height": 1024, "width": 1024, "license": null, "coco_url": null}, {"id": 381, "file_name": "a38abe78c8a24a5c.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 382, "file_name": "9537230ddc548aab.jpg", "height": 1024, "width": 819, "license": null, "coco_url": null}, {"id": 383, "file_name": "4b523b5b89444fcf.jpg", "height": 705, "width": 1024, "license": null, "coco_url": null}, {"id": 384, "file_name": "1a0759d1daa54a9c.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 385, "file_name": "1ae7acb50ccf3842.jpg", "height": 512, "width": 1024, "license": null, "coco_url": null}, {"id": 386, "file_name": "3976b08facf36cc2.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 387, "file_name": "533b566abbbf65cd.jpg", "height": 688, "width": 1024, "license": null, "coco_url": null}, {"id": 388, "file_name": "66f3a4bec8e68cf2.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 389, "file_name": "7fbe1f74a54e1e4c.jpg", "height": 569, "width": 1024, "license": null, "coco_url": null}, {"id": 390, "file_name": "9402011e03e9bdf9.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 391, "file_name": "ad63b93fb150e63c.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 392, "file_name": "d6a84e027e27bb23.jpg", "height": 575, "width": 1024, "license": null, "coco_url": null}, {"id": 393, "file_name": "da99873ea54101e8.jpg", "height": 680, "width": 1024, "license": null, "coco_url": null}, {"id": 394, "file_name": "dee5a86d739b9c18.jpg", "height": 470, "width": 1024, "license": null, "coco_url": null}, {"id": 395, "file_name": "1d6468e90f600660.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 396, "file_name": "4a058b85ecb93098.jpg", "height": 679, "width": 1024, "license": null, "coco_url": null}, {"id": 397, "file_name": "63f711e54951ac89.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 398, "file_name": "6f3cf53ed1cf0b8c.jpg", "height": 682, "width": 1024, "license": null, "coco_url": null}, {"id": 399, "file_name": "f37bf67123a9fba8.jpg", "height": 1024, "width": 765, "license": null, "coco_url": null}, {"id": 400, "file_name": "2227f2fd5d49cb15.jpg", "height": 971, "width": 1024, "license": null, "coco_url": null}, {"id": 401, "file_name": "24356cd114b9f808.jpg", "height": 957, "width": 1024, "license": null, "coco_url": null}, {"id": 402, "file_name": "45c8bbdeeeb8560c.jpg", "height": 985, "width": 1024, "license": null, "coco_url": null}, {"id": 403, "file_name": "783cf061998fd59d.jpg", "height": 696, "width": 1024, "license": null, "coco_url": null}, {"id": 404, "file_name": "9c908a4edc210407.jpg", "height": 1024, "width": 981, "license": null, "coco_url": null}, {"id": 405, "file_name": "5f73910bd9284b84.jpg", "height": 1024, "width": 1024, "license": null, "coco_url": null}, {"id": 406, "file_name": "26ad15f7c8fa32c1.jpg", "height": 903, "width": 1024, "license": null, "coco_url": null}, {"id": 407, "file_name": "2f23c0fa247bd000.jpg", "height": 1024, "width": 891, "license": null, "coco_url": null}, {"id": 408, "file_name": "2f2d2e2bcd186d31.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 409, "file_name": "b8a0fb549656e6dc.jpg", "height": 680, "width": 1024, "license": null, "coco_url": null}, {"id": 410, "file_name": "3899c607aca2a85c.jpg", "height": 1024, "width": 834, "license": null, "coco_url": null}, {"id": 411, "file_name": "ce0da9a64f189407.jpg", "height": 618, "width": 1024, "license": null, "coco_url": null}, {"id": 412, "file_name": "38cd7bae69b4d14c.jpg", "height": 680, "width": 1024, "license": null, "coco_url": null}, {"id": 413, "file_name": "3cfd659e242be6f8.jpg", "height": 1024, "width": 680, "license": null, "coco_url": null}, {"id": 414, "file_name": "8fb383dab5674397.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 415, "file_name": "938d31b01a51198a.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 416, "file_name": "b72004ab9b617013.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 417, "file_name": "cfafcdde441446ca.jpg", "height": 637, "width": 1024, "license": null, "coco_url": null}, {"id": 418, "file_name": "39c350b6714c546c.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 419, "file_name": "db1e999ab9f7a20a.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 420, "file_name": "3abaefc7da8796f7.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 421, "file_name": "3b44cae94f45e7db.jpg", "height": 576, "width": 1024, "license": null, "coco_url": null}, {"id": 422, "file_name": "5bd7cf0824bb748f.jpg", "height": 648, "width": 1024, "license": null, "coco_url": null}, {"id": 423, "file_name": "3ecead421079f9fd.jpg", "height": 680, "width": 1024, "license": null, "coco_url": null}, {"id": 424, "file_name": "414473c4ef1a6483.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 425, "file_name": "678d8f787e832ca3.jpg", "height": 1024, "width": 585, "license": null, "coco_url": null}, {"id": 426, "file_name": "4df7f7e26b42d4ac.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 427, "file_name": "e6cf44a369e320f0.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 428, "file_name": "43741b9922565c9e.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 429, "file_name": "522e36b16a1539a6.jpg", "height": 1024, "width": 683, "license": null, "coco_url": null}, {"id": 430, "file_name": "8e099de76ce924d4.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 431, "file_name": "f0461d834f38999c.jpg", "height": 768, "width": 768, "license": null, "coco_url": null}, {"id": 432, "file_name": "482050dbf0188b88.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 433, "file_name": "cc6425ae40c5ab3f.jpg", "height": 1024, "width": 1024, "license": null, "coco_url": null}, {"id": 434, "file_name": "e9af49589868264f.jpg", "height": 1024, "width": 682, "license": null, "coco_url": null}, {"id": 435, "file_name": "efcadfe827f75bf5.jpg", "height": 810, "width": 1024, "license": null, "coco_url": null}, {"id": 436, "file_name": "48270a4f566ee6f1.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 437, "file_name": "4ac0687764ff6b0e.jpg", "height": 680, "width": 1024, "license": null, "coco_url": null}, {"id": 438, "file_name": "f729ed16dcb135f2.jpg", "height": 355, "width": 1024, "license": null, "coco_url": null}, {"id": 439, "file_name": "4be239a8eba50edc.jpg", "height": 848, "width": 1024, "license": null, "coco_url": null}, {"id": 440, "file_name": "bf8a6e3a166eb22f.jpg", "height": 838, "width": 1024, "license": null, "coco_url": null}, {"id": 441, "file_name": "eb0f20edd5082770.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 442, "file_name": "4e41f20dc0f29561.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 443, "file_name": "6d02c3a4f0fbe7d1.jpg", "height": 1024, "width": 683, "license": null, "coco_url": null}, {"id": 444, "file_name": "70c56fae91ec8584.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 445, "file_name": "501bfb90bd19b008.jpg", "height": 1024, "width": 683, "license": null, "coco_url": null}, {"id": 446, "file_name": "918955d68d73d4a3.jpg", "height": 1012, "width": 1024, "license": null, "coco_url": null}, {"id": 447, "file_name": "c8898b559c9561d9.jpg", "height": 681, "width": 1024, "license": null, "coco_url": null}, {"id": 448, "file_name": "c94f4f3d7e0408c2.jpg", "height": 786, "width": 1024, "license": null, "coco_url": null}, {"id": 449, "file_name": "6294fccf5be2d4a7.jpg", "height": 1024, "width": 1024, "license": null, "coco_url": null}, {"id": 450, "file_name": "51e33647f123f1f2.jpg", "height": 686, "width": 1024, "license": null, "coco_url": null}, {"id": 451, "file_name": "53397678dd980397.jpg", "height": 1024, "width": 696, "license": null, "coco_url": null}, {"id": 452, "file_name": "5363d621910f284b.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 453, "file_name": "f4bcac8dcc8e7df2.jpg", "height": 685, "width": 1024, "license": null, "coco_url": null}, {"id": 454, "file_name": "54010648af2136f2.jpg", "height": 497, "width": 1024, "license": null, "coco_url": null}, {"id": 455, "file_name": "570304f8e56c90cd.jpg", "height": 680, "width": 1024, "license": null, "coco_url": null}, {"id": 456, "file_name": "94de58da0f25a821.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 457, "file_name": "644395d01b541528.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 458, "file_name": "d212bda4b8663030.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 459, "file_name": "645631471c488704.jpg", "height": 1024, "width": 759, "license": null, "coco_url": null}, {"id": 460, "file_name": "67ca118ee67d0e02.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 461, "file_name": "6a5009a8acdd37a0.jpg", "height": 574, "width": 1024, "license": null, "coco_url": null}, {"id": 462, "file_name": "f5695a7aa78e2b49.jpg", "height": 1024, "width": 1024, "license": null, "coco_url": null}, {"id": 463, "file_name": "6bc56f8366132974.jpg", "height": 1024, "width": 923, "license": null, "coco_url": null}, {"id": 464, "file_name": "8a76b44fd8624270.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 465, "file_name": "6da26aa676e64f03.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 466, "file_name": "ca9338555364471c.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 467, "file_name": "6ecd43ea230dd1ec.jpg", "height": 1024, "width": 678, "license": null, "coco_url": null}, {"id": 468, "file_name": "a88afe778c33c7fb.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 469, "file_name": "7382bd3375453ae7.jpg", "height": 975, "width": 1024, "license": null, "coco_url": null}, {"id": 470, "file_name": "e23576bde0240d2c.jpg", "height": 2592, "width": 4608, "license": null, "coco_url": null}, {"id": 471, "file_name": "7562b3ee02b54c43.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 472, "file_name": "af56abadc4f15ca4.jpg", "height": 614, "width": 1024, "license": null, "coco_url": null}, {"id": 473, "file_name": "80900820a16a044c.jpg", "height": 681, "width": 1024, "license": null, "coco_url": null}, {"id": 474, "file_name": "a91d26610c21121e.jpg", "height": 681, "width": 1024, "license": null, "coco_url": null}, {"id": 475, "file_name": "8910bc5940ff97c3.jpg", "height": 576, "width": 1024, "license": null, "coco_url": null}, {"id": 476, "file_name": "949bc4fbb5c90ce1.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 477, "file_name": "9eeefa5adc2d035d.jpg", "height": 576, "width": 1024, "license": null, "coco_url": null}, {"id": 478, "file_name": "a10c2b8f92d0ea2d.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 479, "file_name": "eae6d08ce6dc196a.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 480, "file_name": "a2c635794fb2e69a.jpg", "height": 586, "width": 1024, "license": null, "coco_url": null}, {"id": 481, "file_name": "bedb885460ebdeb5.jpg", "height": 602, "width": 1024, "license": null, "coco_url": null}, {"id": 482, "file_name": "a761673ee6dc3124.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 483, "file_name": "ba8b5e3639ebc833.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 484, "file_name": "c3eca54610a3d11c.jpg", "height": 774, "width": 1024, "license": null, "coco_url": null}, {"id": 485, "file_name": "c4b8d677419b8f20.jpg", "height": 683, "width": 1024, "license": null, "coco_url": null}, {"id": 486, "file_name": "c636ab0450576a0e.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 487, "file_name": "caecdfbe9d7eec0c.jpg", "height": 1024, "width": 768, "license": null, "coco_url": null}, {"id": 488, "file_name": "cf0818cf815c3c55.jpg", "height": 1024, "width": 683, "license": null, "coco_url": null}, {"id": 489, "file_name": "cfaa790b3956073b.jpg", "height": 688, "width": 1024, "license": null, "coco_url": null}, {"id": 490, "file_name": "d74d302c470478b1.jpg", "height": 512, "width": 1024, "license": null, "coco_url": null}, {"id": 491, "file_name": "d871866d69f583d1.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 492, "file_name": "de03f770cd9c2f08.jpg", "height": 967, "width": 1024, "license": null, "coco_url": null}, {"id": 493, "file_name": "e128280430189837.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 494, "file_name": "e2c8c1c64a9e516e.jpg", "height": 768, "width": 1024, "license": null, "coco_url": null}, {"id": 495, "file_name": "ecbfd9984a9c4f94.jpg", "height": 774, "width": 1024, "license": null, "coco_url": null}], "annotations": [{"id": 1, "image_id": 1, "category_id": 168, "bbox": [394.33541632, 366.26050624, 31.801241600000026, 33.44115596000002], "area": 1063.4702800672412, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2, "image_id": 1, "category_id": 168, "bbox": [572.4223488, 229.31093316, 451.5776512, 194.27727984000003], "area": 87731.27771167233, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 3, "image_id": 2, "category_id": 168, "bbox": [76.2110976, 0.0, 947.7889024, 576.0], "area": 545926.4077824, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 4, "image_id": 3, "category_id": 168, "bbox": [0.0, 0.0, 766.39997952, 1024.0], "area": 784793.57902848, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 5, "image_id": 4, "category_id": 168, "bbox": [116.44765184, 0.0, 905.70395648, 737.50182912], "area": 667958.3245452209, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 6, "image_id": 4, "category_id": 168, "bbox": [423.2779776, 791.10467584, 232.8952832, 232.89532415999997], "area": 54240.22247619899, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 7, "image_id": 1, "category_id": 115, "bbox": [399.1055872, 359.89075936, 101.76398336, 38.21849644000003], "area": 3889.266435764382, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 8, "image_id": 1, "category_id": 115, "bbox": [500.86957056, 345.55881372, 84.27331583999995, 49.36557621999998], "area": 4160.200796411649, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 9, "image_id": 5, "category_id": 115, "bbox": [309.3052929, 0.0, 266.30767988, 488.41192448], "area": 130067.84643399458, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 10, "image_id": 6, "category_id": 115, "bbox": [0.0, 276.85715669999996, 1024.0, 492.58998720000005], "area": 504412.14689280005, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 11, "image_id": 7, "category_id": 115, "bbox": [7.965812388, 1.9922179072, 842.3846034119999, 782.9416188928], "area": 659537.9651257605, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 12, "image_id": 8, "category_id": 115, "bbox": [15.215453184, 0.0, 859.673097216, 595.7368263000001], "area": 512138.92259095126, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 13, "image_id": 8, "category_id": 115, "bbox": [775.9881216, 60.7894749, 243.44724480000002, 504.55262087999995], "area": 122831.94540985495, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 14, "image_id": 9, "category_id": 115, "bbox": [0.0, 0.0, 348.8, 324.80001024], "area": 113290.243571712, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 15, "image_id": 9, "category_id": 115, "bbox": [323.2, 68.79999744, 475.2, 198.39999744], "area": 94279.678783488, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 16, "image_id": 9, "category_id": 115, "bbox": [792.0, 131.19999744, 225.60000000000002, 212.79999744000003], "area": 48007.679422464, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 17, "image_id": 10, "category_id": 115, "bbox": [11.182527488, 0.0, 1012.817472512, 725.0730435], "area": 734366.6473042535, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 18, "image_id": 11, "category_id": 115, "bbox": [0.0, 0.0, 766.39997952, 1022.4], "area": 783567.339061248, "iscrowd": 0, "IsOccluded": 1, "IsInside": 1, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 19, "image_id": 12, "category_id": 115, "bbox": [47.786667008, 47.78082144, 935.253332992, 798.6223161600001], "area": 746914.1829904309, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 20, "image_id": 13, "category_id": 115, "bbox": [156.8, 299.19998976, 809.5999999999999, 355.19998463999997], "area": 287569.907564544, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 21, "image_id": 14, "category_id": 115, "bbox": [0.0, 38.460094464, 766.39997952, 850.929575936], "area": 652152.4095703127, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 22, "image_id": 15, "category_id": 115, "bbox": [0.0, 0.0, 823.2462336, 545.27895444], "area": 448898.84550407605, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 23, "image_id": 16, "category_id": 115, "bbox": [81.55752448, 37.776549005, 777.81710848, 605.935856695], "area": 471307.27597885655, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 24, "image_id": 1, "category_id": 224, "bbox": [0.0, 414.03362300000003, 1024.0, 343.96637699999997], "area": 352221.57004799997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 25, "image_id": 17, "category_id": 224, "bbox": [0.0, 0.0, 1024.0, 679.4900187000001], "area": 695797.7791488001, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 26, "image_id": 18, "category_id": 224, "bbox": [0.0, 278.4, 969.6, 251.20002047999998], "area": 243563.53985740803, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 27, "image_id": 19, "category_id": 99, "bbox": [0.0, 232.4965716, 761.06134528, 406.50342839999996], "area": 309374.04607903614, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 28, "image_id": 20, "category_id": 99, "bbox": [363.2, 48.0, 281.59999999999997, 718.39997952], "area": 202301.434232832, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 29, "image_id": 21, "category_id": 255, "bbox": [52.86135808, 545.49335848, 21.14453913599999, 27.199102170000003], "area": 575.1124802976274, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 30, "image_id": 21, "category_id": 255, "bbox": [77.02654976, 547.0044276799999, 16.61357056, 31.73227561999999], "area": 527.1864000422376, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 31, "image_id": 21, "category_id": 255, "bbox": [160.09439232, 633.1349622800001, 48.33038336000001, 21.154859520000013], "area": 1022.4224705285465, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 32, "image_id": 21, "category_id": 255, "bbox": [303.57522432, 590.82521592, 33.22714112, 58.931425600000004], "area": 1958.1227948139806, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 33, "image_id": 21, "category_id": 255, "bbox": [395.70501632, 604.42478408, 39.26843391999995, 30.221206419999987], "area": 1186.7394472864478, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 34, "image_id": 21, "category_id": 255, "bbox": [685.687296, 627.0907128, 25.675571200000036, 28.710178199999962], "area": 737.1502245387878, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 35, "image_id": 21, "category_id": 255, "bbox": [832.18878464, 590.82521592, 25.675509759999954, 67.99778615999998], "area": 1745.877822209469, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 36, "image_id": 22, "category_id": 255, "bbox": [170.05053952, 268.0144384, 125.68953855999999, 129.38629119999996], "area": 16262.503236917782, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 37, "image_id": 22, "category_id": 255, "bbox": [170.05053952, 739.35015936, 97.96389888000002, 142.32495103999997], "area": 13942.707111783511, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 38, "image_id": 22, "category_id": 255, "bbox": [314.2238208, 343.79782144, 70.23827968, 24.028897279999967], "area": 1687.748407554629, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 39, "image_id": 22, "category_id": 255, "bbox": [402.94586368, 824.3753984, 40.66424832000001, 29.574041599999987], "area": 1202.60617144841, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 40, "image_id": 22, "category_id": 255, "bbox": [438.06496768, 741.1985408, 142.32492032000005, 175.59572479999997], "area": 24991.64754069265, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 41, "image_id": 22, "category_id": 255, "bbox": [609.9639296, 299.43683072, 153.415168, 147.87002368000003], "area": 22685.50452503118, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 42, "image_id": 22, "category_id": 255, "bbox": [693.1407872, 755.9855104, 129.38629120000007, 134.93145600000003], "area": 17458.280658056, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 43, "image_id": 22, "category_id": 255, "bbox": [809.5884288, 192.23104512, 60.99640320000003, 140.47653888], "area": 8568.56360566496, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 44, "image_id": 23, "category_id": 255, "bbox": [358.4, 310.40000256, 52.80000000000001, 55.99999488000002], "area": 2956.7997296640015, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 45, "image_id": 23, "category_id": 255, "bbox": [454.4, 416.00002559999996, 224.0, 211.19996928000003], "area": 47308.79311872, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 46, "image_id": 23, "category_id": 255, "bbox": [742.4, 312.0, 60.80000000000007, 65.60000255999998], "area": 3988.4801556480033, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 47, "image_id": 23, "category_id": 255, "bbox": [819.2, 401.6000256, 192.0, 212.79997440000002], "area": 40857.59508480001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 48, "image_id": 24, "category_id": 255, "bbox": [170.66667008, 148.08407128000002, 58.90265088000001, 77.06416037999999], "area": 4539.283334223468, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 49, "image_id": 24, "category_id": 255, "bbox": [226.54867456, 158.66150104, 60.41296896, 72.53098010000002], "area": 4381.811849419679, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 50, "image_id": 24, "category_id": 255, "bbox": [256.75515904, 267.45796436, 57.39233279999996, 114.84069914000001], "area": 6590.97562402755, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 51, "image_id": 24, "category_id": 255, "bbox": [425.9115008, 364.16592872, 99.68138239999996, 167.72790257999998], "area": 16719.349196226918, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 52, "image_id": 24, "category_id": 255, "bbox": [995.3038336, 400.4314256, 28.69616640000004, 135.99557232], "area": 3902.5515729579597, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 53, "image_id": 25, "category_id": 255, "bbox": [506.00002529999995, 547.8320128, 79.55974620000006, 191.10420479999993], "area": 15204.202031640829, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 54, "image_id": 25, "category_id": 255, "bbox": [711.2641371, 379.02331904, 23.867969399999993, 97.14464767999999], "area": 2318.64547820002, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 55, "image_id": 26, "category_id": 255, "bbox": [583.5866112, 323.1588118, 54.46809600000006, 77.68237639999997], "area": 4231.2111352633365, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 56, "image_id": 26, "category_id": 255, "bbox": [690.966528, 323.1588118, 42.018303999999944, 57.4849484], "area": 2415.42003729551, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 57, "image_id": 26, "category_id": 255, "bbox": [764.1094144, 316.944213, 12.44985343999997, 7.768237640000001], "area": 96.71342010509126, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 58, "image_id": 27, "category_id": 255, "bbox": [258.26547712, 663.3561687, 140.46019583999998, 16.621727050000004], "area": 2334.6910366420257, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 59, "image_id": 27, "category_id": 255, "bbox": [724.9557504, 637.6681288999999, 241.65191679999998, 42.30976685000004], "area": 10224.236258663606, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 60, "image_id": 28, "category_id": 255, "bbox": [774.4, 393.59999999999997, 43.200000000000045, 51.19998720000004], "area": 2211.839447040004, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 61, "image_id": 28, "category_id": 255, "bbox": [996.8, 352.00000511999997, 27.200000000000045, 76.80000000000003], "area": 2088.960000000004, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 62, "image_id": 29, "category_id": 255, "bbox": [420.8, 524.80000512, 153.59999999999997, 183.99998208], "area": 28262.397247487992, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 63, "image_id": 29, "category_id": 255, "bbox": [812.8, 360.0, 30.40000000000009, 51.19999487999999], "area": 1556.4798443520044, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 64, "image_id": 29, "category_id": 255, "bbox": [843.2, 480.0, 72.0, 120.0], "area": 8640.0, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 65, "image_id": 30, "category_id": 255, "bbox": [342.95873536, 466.15401840000004, 199.92383487999996, 196.53178089999997], "area": 39291.387313323925, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 66, "image_id": 30, "category_id": 255, "bbox": [715.1746048, 464.529779, 195.04762879999998, 194.90758895999994], "area": 38016.26306177305, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 67, "image_id": 31, "category_id": 255, "bbox": [0.0, 163.2, 25.6, 19.199999999999996], "area": 491.5199999999999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 68, "image_id": 31, "category_id": 255, "bbox": [27.2, 159.99999744000002, 25.599999999999998, 27.200002559999987], "area": 696.3200655359996, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 69, "image_id": 31, "category_id": 255, "bbox": [94.4, 150.40000512, 30.39999999999999, 25.599997439999996], "area": 778.2399221759996, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 70, "image_id": 31, "category_id": 255, "bbox": [128.0, 145.59999743999998, 24.0, 35.20000512], "area": 844.80012288, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 71, "image_id": 31, "category_id": 255, "bbox": [174.4, 176.00000255999998, 12.799999999999983, 9.599992320000013], "area": 122.87990169599999, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 72, "image_id": 31, "category_id": 255, "bbox": [211.2, 180.80000256, 11.200000000000017, 8.000002560000013], "area": 89.60002867200029, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 73, "image_id": 31, "category_id": 255, "bbox": [262.4, 166.40000256000002, 14.400000000000034, 12.79999488], "area": 184.31992627200043, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 74, "image_id": 31, "category_id": 255, "bbox": [296.0, 168.0, 9.600000000000023, 17.599994880000004], "area": 168.95995084800043, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 75, "image_id": 31, "category_id": 255, "bbox": [499.2, 408.0, 174.40000000000003, 254.40000000000003], "area": 44367.360000000015, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 76, "image_id": 31, "category_id": 255, "bbox": [590.4, 124.80000000000001, 28.800000000000068, 36.79999488], "area": 1059.8398525440025, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 77, "image_id": 31, "category_id": 255, "bbox": [843.2, 271.99999488000003, 70.39999999999998, 144.00003071999993], "area": 10137.602162687992, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 78, "image_id": 31, "category_id": 255, "bbox": [880.0, 145.59999743999998, 67.20000000000005, 48.0], "area": 3225.600000000002, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 79, "image_id": 32, "category_id": 255, "bbox": [199.36283648, 431.53097152, 157.07374592000002, 140.32299358], "area": 22041.058240318715, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 80, "image_id": 32, "category_id": 255, "bbox": [756.67254272, 437.5663578, 173.68731647999994, 147.86728439999996], "area": 25682.671822620952, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 81, "image_id": 33, "category_id": 255, "bbox": [103.48114944, 399.96760375, 55.601817600000004, 114.27648374999998], "area": 6353.980205436864, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 82, "image_id": 33, "category_id": 255, "bbox": [412.38009856, 444.75163589999994, 112.74813439999997, 154.42760905000003], "area": 17411.424820240056, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 83, "image_id": 33, "category_id": 255, "bbox": [917.4298624, 395.33476125000004, 74.13575679999997, 125.08639715], "area": 9273.374718100607, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 84, "image_id": 34, "category_id": 255, "bbox": [45.24300288, 107.1283213, 18.097203200000003, 37.72123586], "area": 682.6488703135468, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 85, "image_id": 34, "category_id": 255, "bbox": [75.4050048, 251.97787164, 85.96170752, 159.93805695999998], "area": 13748.54847371262, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 86, "image_id": 34, "category_id": 255, "bbox": [135.72901888, 137.30530726, 25.637693439999993, 37.72123585999998], "area": 967.085481156614, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 87, "image_id": 34, "category_id": 255, "bbox": [217.16642816, 137.30530726, 25.637693439999993, 28.668142800000002], "area": 734.985056600543, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 88, "image_id": 34, "category_id": 255, "bbox": [355.91161856, 362.12387925999997, 179.46394623999998, 264.04869194], "area": 47387.220255062486, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 89, "image_id": 34, "category_id": 255, "bbox": [408.69513216, 126.74336421999999, 22.621521919999964, 19.615042920000004], "area": 443.72212337652013, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 90, "image_id": 34, "category_id": 255, "bbox": [478.06775296, 152.39380706, 66.35638784000002, 24.14159285999998], "area": 1601.9488988935343, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 91, "image_id": 34, "category_id": 255, "bbox": [502.1973504, 128.2522142, 39.21059839999998, 46.77432891999998], "area": 1834.0494267116242, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 92, "image_id": 34, "category_id": 255, "bbox": [586.6509312, 87.51327155999999, 19.60535040000002, 22.632742880000016], "area": 443.7228546755059, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 93, "image_id": 34, "category_id": 255, "bbox": [598.71576064, 149.37610709999998, 25.63772416000006, 25.650436019999994], "area": 657.6188032644897, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 94, "image_id": 34, "category_id": 255, "bbox": [630.3858688, 120.70796430000001, 31.67009791999999, 34.70354271999999], "area": 1099.0645961133023, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 95, "image_id": 34, "category_id": 255, "bbox": [731.42858752, 123.72566426, 39.210567680000054, 36.21238587999999], "area": 1419.9082074020182, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 96, "image_id": 34, "category_id": 255, "bbox": [797.7849856, 143.34070718, 33.1782144, 22.632742879999995], "area": 750.9139957327133, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 97, "image_id": 34, "category_id": 255, "bbox": [806.8335616, 199.1681428, 88.97791999999993, 75.44247172], "area": 6712.714213304416, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 98, "image_id": 34, "category_id": 255, "bbox": [915.4167808, 101.09292138, 22.621491200000037, 22.632742879999995], "area": 511.98639389178345, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 99, "image_id": 34, "category_id": 255, "bbox": [968.2002944, 114.67256438000001, 25.63771392000001, 30.17699277999999], "area": 773.6691078595455, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 100, "image_id": 35, "category_id": 255, "bbox": [111.974639616, 497.40738400000004, 170.39620710399998, 91.02880859999999], "area": 15510.963722635972, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 101, "image_id": 35, "category_id": 255, "bbox": [430.0475392, 401.5020555, 186.62440959999998, 201.56379949999996], "area": 37616.72507842026, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 102, "image_id": 35, "category_id": 255, "bbox": [788.69097472, 390.1234564, 113.59748095999998, 172.30452210000004], "area": 19573.359668576653, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 103, "image_id": 36, "category_id": 255, "bbox": [465.17993472, 374.74335848, 155.56343807999997, 197.94910217], "area": 30793.642898414382, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 104, "image_id": 36, "category_id": 255, "bbox": [866.9262848, 435.18586011, 45.30967552000004, 22.665921889999982], "area": 1026.9855661975653, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 105, "image_id": 37, "category_id": 255, "bbox": [330.76105216, 457.851782, 134.41888256, 142.03982179999997], "area": 19092.83412537752, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 106, "image_id": 37, "category_id": 255, "bbox": [815.5751936, 397.4092872, 75.51626239999996, 102.75222750000002], "area": 7759.464174074494, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 107, "image_id": 38, "category_id": 255, "bbox": [84.8, 318.39999744, 54.39999999999999, 92.79999743999997], "area": 5048.319860735997, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 108, "image_id": 38, "category_id": 255, "bbox": [193.6, 315.19999487999996, 17.599999999999994, 60.80001023999999], "area": 1070.0801802239996, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 109, "image_id": 38, "category_id": 255, "bbox": [225.6, 422.40000000000003, 40.00000000000003, 89.60002559999992], "area": 3584.0010239999997, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 110, "image_id": 38, "category_id": 255, "bbox": [702.4, 440.00002559999996, 41.60000000000002, 75.19998720000004], "area": 3128.319467520004, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 111, "image_id": 38, "category_id": 255, "bbox": [832.0, 316.79999999999995, 86.39999999999998, 107.19997440000006], "area": 9262.077788160002, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 112, "image_id": 39, "category_id": 255, "bbox": [465.6, 495.99997440000004, 182.39999999999998, 220.80003071999997], "area": 40273.92560332799, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 113, "image_id": 39, "category_id": 255, "bbox": [923.2, 377.60000256, 57.59999999999991, 118.39997184000006], "area": 6819.838377983993, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 114, "image_id": 40, "category_id": 255, "bbox": [151.03245312, 258.39159014, 58.90265087999998, 107.28540778], "area": 6319.394918983774, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 115, "image_id": 40, "category_id": 255, "bbox": [326.23009792, 400.4314256, 102.70205952000003, 196.43803980000004], "area": 20174.591255531737, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 116, "image_id": 41, "category_id": 255, "bbox": [92.129792, 615.0022275, 89.10914560000002, 67.99777249999998], "area": 6059.223410178175, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 117, "image_id": 41, "category_id": 255, "bbox": [481.79351552, 605.93586011, 114.78468608000003, 77.06413988999998], "area": 8845.783105298855, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 118, "image_id": 42, "category_id": 255, "bbox": [508.8, 442.96868459999996, 169.59999999999997, 214.288117], "area": 36343.26464319999, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 119, "image_id": 42, "category_id": 255, "bbox": [870.4, 321.4321372, 92.80000000000007, 148.722347], "area": 13801.433801600011, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 120, "image_id": 43, "category_id": 255, "bbox": [72.0, 297.67783275, 56.0, 128.03346000000002], "area": 7169.87376, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 121, "image_id": 43, "category_id": 255, "bbox": [264.0, 432.11296575, 116.80000000000001, 224.05859324999994], "area": 26170.043691599996, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 122, "image_id": 43, "category_id": 255, "bbox": [406.4, 227.25941445, 57.60000000000002, 30.407962049999995], "area": 1751.4986140800006, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 123, "image_id": 44, "category_id": 255, "bbox": [38.4, 367.16491776, 94.4, 149.11064064], "area": 14076.044476416002, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 124, "image_id": 44, "category_id": 255, "bbox": [264.0, 423.28184832, 150.39999999999998, 238.89770496000006], "area": 35930.214825984, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 125, "image_id": 44, "category_id": 255, "bbox": [748.8, 570.7891199999999, 81.60000000000002, 14.430105600000047], "area": 1177.4966169600043, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 126, "image_id": 44, "category_id": 255, "bbox": [942.4, 336.70145279999997, 43.200000000000045, 57.720268800000056], "area": 2493.5156121600053, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 127, "image_id": 45, "category_id": 255, "bbox": [228.6332928, 351.15183360000003, 103.92420351999999, 172.10600064], "area": 17885.97903752461, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 128, "image_id": 45, "category_id": 255, "bbox": [421.2395008, 265.09879295999997, 55.42627328000003, 145.73493504000004], "area": 8077.544335970094, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 129, "image_id": 45, "category_id": 255, "bbox": [504.37888, 244.27951488, 110.85250559999997, 120.75181055999998], "area": 13385.640756312534, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 130, "image_id": 45, "category_id": 255, "bbox": [569.504768, 233.17590528, 95.61022463999996, 94.38072191999998], "area": 9023.762024456566, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 131, "image_id": 45, "category_id": 255, "bbox": [652.64410624, 204.02891712000002, 108.08119295999995, 108.26025407999995], "area": 11700.897411119096, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 132, "image_id": 45, "category_id": 255, "bbox": [708.0704, 188.76144384, 92.83896320000008, 97.1566272], "area": 9019.920537256927, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 133, "image_id": 45, "category_id": 255, "bbox": [745.48308992, 179.04578688, 95.61029631999997, 87.44095872000001], "area": 8360.255973724086, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 134, "image_id": 46, "category_id": 255, "bbox": [261.95349504, 390.3505983, 74.41860608000002, 50.656117200000025], "area": 3769.7576314491153, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 135, "image_id": 46, "category_id": 255, "bbox": [479.25582848, 330.7550532, 69.95346431999997, 126.64045212000002], "area": 8858.938348845086, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 136, "image_id": 46, "category_id": 255, "bbox": [803.72094976, 378.43147602, 80.37208063999992, 58.10558520000004], "area": 4670.066779328789, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 137, "image_id": 47, "category_id": 255, "bbox": [39.095447552, 152.1733371, 64.657855488, 159.70666290000003], "area": 10326.290330258933, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 138, "image_id": 47, "category_id": 255, "bbox": [222.54331904, 283.25333484, 136.83405824000002, 274.21333710000005], "area": 37521.723738926165, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 139, "image_id": 48, "category_id": 255, "bbox": [148.76164096, 398.66667359999997, 77.99153663999999, 115.55556480000003], "area": 9012.356066055096, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 140, "image_id": 48, "category_id": 255, "bbox": [413.06628096, 397.22223840000004, 98.21159424000001, 153.11106719999995], "area": 15037.28200549977, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 141, "image_id": 48, "category_id": 255, "bbox": [524.2764288, 313.4444352, 43.32867584000007, 14.44447680000004], "area": 625.8600529456032, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 142, "image_id": 49, "category_id": 255, "bbox": [509.952, 389.10178584, 147.45600000000002, 192.50300376000007], "area": 28385.722922434576, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 143, "image_id": 49, "category_id": 255, "bbox": [630.784, 258.03593568, 67.58400000000006, 22.526938080000008], "area": 1522.460583198722, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 144, "image_id": 49, "category_id": 255, "bbox": [835.584, 432.107766, 79.87200000000007, 108.53893943999998], "area": 8669.222170951687, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 145, "image_id": 50, "category_id": 255, "bbox": [487.83480832, 431.53097152, 294.51327488000004, 250.46902848000002], "area": 73766.4538336568, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 146, "image_id": 50, "category_id": 255, "bbox": [641.88787712, 404.37168552, 202.38348287999997, 140.32300039999996], "area": 28399.05754912362, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 147, "image_id": 51, "category_id": 255, "bbox": [134.41888256, 451.80753935, 63.43362560000003, 151.10617552999997], "area": 9585.212564417903, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 148, "image_id": 51, "category_id": 255, "bbox": [522.572288, 347.54424948, 40.778752000000054, 55.9092872], "area": 2279.9109572255775, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 149, "image_id": 51, "category_id": 255, "bbox": [696.259584, 380.7875943, 83.06787327999996, 90.66374219999997], "area": 7531.244248160183, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 150, "image_id": 52, "category_id": 255, "bbox": [258.57101824, 412.55908209999996, 85.21090048000002, 96.90003230000003], "area": 8256.93900882409, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 151, "image_id": 52, "category_id": 255, "bbox": [411.36297984, 362.64091144, 82.27260416000001, 136.54089205999995], "area": 11233.574764105664, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 152, "image_id": 53, "category_id": 255, "bbox": [83.200000512, 516.8, 31.999999487999993, 102.40000000000009], "area": 3276.799947571202, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 153, "image_id": 53, "category_id": 255, "bbox": [152.00000255999998, 577.6, 116.79999744, 227.19999999999993], "area": 26536.95941836799, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 154, "image_id": 53, "category_id": 255, "bbox": [691.2, 720.0, 76.79999999999998, 166.39999999999998], "area": 12779.519999999995, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 155, "image_id": 54, "category_id": 255, "bbox": [39.9266048, 584.8073216, 201.98166016, 227.81651967999994], "area": 46014.7588568397, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 156, "image_id": 54, "category_id": 255, "bbox": [549.57800448, 594.20184576, 194.93573632000005, 293.57799424000007], "area": 57228.842474523146, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 157, "image_id": 54, "category_id": 255, "bbox": [883.08257792, 361.68808448, 112.73397248000003, 32.88072192000004], "area": 3706.7744000518187, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 158, "image_id": 55, "category_id": 255, "bbox": [139.70614272, 328.69280564999997, 170.41080319999998, 238.07192235000002], "area": 40570.02750703153, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 159, "image_id": 55, "category_id": 255, "bbox": [402.2308864, 351.73202235, 188.83358720000007, 238.07189415], "area": 44955.969783843204, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 160, "image_id": 56, "category_id": 255, "bbox": [100.8, 382.40000256, 30.39999999999999, 35.19999743999996], "area": 1070.0799221759985, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 161, "image_id": 56, "category_id": 255, "bbox": [249.6, 408.0, 33.599999999999994, 19.200000000000017], "area": 645.1200000000005, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 162, "image_id": 56, "category_id": 255, "bbox": [664.0, 543.9999744, 124.79999999999995, 200.00002559999996], "area": 24960.003194879988, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 163, "image_id": 56, "category_id": 255, "bbox": [904.0, 481.60002048, 68.79999999999995, 120.0], "area": 8255.999999999995, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 164, "image_id": 57, "category_id": 255, "bbox": [26.99443458, 95.38137088, 80.98330277000001, 138.57293312000002], "area": 11222.093798583923, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 165, "image_id": 57, "category_id": 255, "bbox": [28.794062970000002, 394.12301824, 196.15954883, 336.53426176], "area": 66014.40895267873, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 166, "image_id": 57, "category_id": 255, "bbox": [316.734682, 75.58523904, 82.78295249999998, 35.99297023999999], "area": 2979.604345711832, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 167, "image_id": 57, "category_id": 255, "bbox": [516.4935138, 41.39191296, 73.78479599999999, 106.17926655999999], "area": 7834.415522559219, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 168, "image_id": 57, "category_id": 255, "bbox": [626.2708970000001, 296.94201856, 241.1502449999999, 268.14767104000003], "area": 64663.87656747539, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 169, "image_id": 57, "category_id": 255, "bbox": [768.441566, 169.16696064, 161.96662299999997, 178.1651968], "area": 28856.8152618264, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 170, "image_id": 58, "category_id": 255, "bbox": [545.93224704, 553.7477858, 260.90131456000006, 126.74335739999998], "area": 33067.508557407906, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 171, "image_id": 59, "category_id": 255, "bbox": [561.6, 467.20001279999997, 83.19999999999993, 144.0], "area": 11980.79999999999, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 172, "image_id": 59, "category_id": 255, "bbox": [732.8, 420.79998720000003, 62.40000000000009, 102.40001280000001], "area": 6389.76079872001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 173, "image_id": 60, "category_id": 255, "bbox": [202.57993728, 367.80721919999996, 181.76695296, 177.65781120000003], "area": 32292.319011366963, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 174, "image_id": 60, "category_id": 255, "bbox": [706.2547456, 152.674704, 123.49050880000004, 142.95904128], "area": 17654.08474522741, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 175, "image_id": 61, "category_id": 255, "bbox": [18.23145472, 156.65055196, 33.424329728000004, 21.292314080000022], "area": 711.6813264820577, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 176, "image_id": 61, "category_id": 255, "bbox": [197.50742016, 162.73406928, 79.00295168, 95.81538567999998], "area": 7569.698285077602, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 177, "image_id": 61, "category_id": 255, "bbox": [410.20770304, 142.96263972, 66.8486656, 34.980226320000014], "area": 2338.3814518779996, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 178, "image_id": 61, "category_id": 255, "bbox": [724.7003136, 167.29670208000002, 63.81005823999999, 91.25275287999997], "area": 5822.843475833126, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 179, "image_id": 61, "category_id": 255, "bbox": [1002.729984, 314.82198152, 21.270016000000055, 98.85714087999996], "area": 2102.6929682318587, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 180, "image_id": 62, "category_id": 255, "bbox": [30.11764736, 294.0133, 134.02353152, 153.79158800000002], "area": 20611.691741828858, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 181, "image_id": 62, "category_id": 255, "bbox": [340.32941056, 312.106434, 111.43529472, 155.29931800000003], "area": 17305.825271145004, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 182, "image_id": 62, "category_id": 255, "bbox": [603.8588416, 275.9201796, 108.42350592000003, 72.37248840000001], "area": 7846.878924482534, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 183, "image_id": 63, "category_id": 255, "bbox": [75.62776576, 313.0132434, 77.14033664, 151.2141336], "area": 11664.709170629934, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 184, "image_id": 63, "category_id": 255, "bbox": [276.7976448, 432.472421, 139.15508735999998, 208.67548875], "area": 29038.25586689694, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 185, "image_id": 63, "category_id": 255, "bbox": [496.1181696, 187.5055295, 19.663206400000036, 15.12140924999999], "area": 297.33539114161954, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 186, "image_id": 63, "category_id": 255, "bbox": [515.781376, 284.28256925, 58.98968063999996, 15.12140924999999], "area": 892.0071024842408, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 187, "image_id": 63, "category_id": 255, "bbox": [636.78582784, 179.94482144999998, 71.09011455999996, 68.04634505000001], "area": 4837.422464993787, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 188, "image_id": 9, "category_id": 255, "bbox": [20.8, 519.9999744, 144.0, 131.20002047999995], "area": 18892.802949119992, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 189, "image_id": 9, "category_id": 255, "bbox": [710.4, 435.19999487999996, 40.0, 62.40003072000002], "area": 2496.0012288000007, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 190, "image_id": 64, "category_id": 255, "bbox": [264.69720064, 417.3509775, 45.37665535999997, 101.31348650000004], "area": 4597.267160230512, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 191, "image_id": 64, "category_id": 255, "bbox": [353.93796096, 443.05738349999996, 90.75332096, 192.04196940000003], "area": 17428.446486748704, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 192, "image_id": 65, "category_id": 255, "bbox": [153.37445376, 318.94222824, 90.22025728, 145.93110735000002], "area": 13165.942050272302, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 193, "image_id": 65, "category_id": 255, "bbox": [375.91775232, 327.96888587999996, 103.75333888, 168.49779207], "area": 17482.208521170487, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 194, "image_id": 65, "category_id": 255, "bbox": [753.3392384, 452.83776499, 109.76793599999996, 42.12444971000003], "area": 4623.9138998025, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 195, "image_id": 66, "category_id": 255, "bbox": [56.0, 355.20000000000005, 73.6, 144.0], "area": 10598.4, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 196, "image_id": 66, "category_id": 255, "bbox": [396.8, 432.0, 147.2, 211.20000000000002], "area": 31088.64, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 197, "image_id": 66, "category_id": 255, "bbox": [470.4, 214.40000256000002, 28.80000000000001, 15.999997439999987], "area": 460.7999262719999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 198, "image_id": 66, "category_id": 255, "bbox": [598.4, 214.40000256000002, 24.0, 38.40000767999999], "area": 921.6001843199997, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 199, "image_id": 66, "category_id": 255, "bbox": [787.2, 208.00000511999997, 33.59999999999991, 35.19998976000001], "area": 1182.7196559359973, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 200, "image_id": 66, "category_id": 255, "bbox": [934.4, 204.80001024, 28.800000000000068, 30.399989760000025], "area": 875.5197050880029, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 201, "image_id": 67, "category_id": 255, "bbox": [96.0, 438.3999744, 152.0, 225.60000000000005], "area": 34291.20000000001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 202, "image_id": 67, "category_id": 255, "bbox": [726.4, 620.80000512, 89.60000000000002, 44.80002048], "area": 4014.081835008001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 203, "image_id": 68, "category_id": 255, "bbox": [360.18603008, 251.60538327999998, 55.06979839999997, 84.86097288], "area": 4673.276668529465, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 204, "image_id": 68, "category_id": 255, "bbox": [384.0, 315.6233032, 55.069767679999984, 90.81616312000001], "area": 5001.225004607384, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 205, "image_id": 68, "category_id": 255, "bbox": [541.7674752, 245.6502196, 52.092999679999934, 89.32735559999999], "area": 4653.32990668604, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 206, "image_id": 68, "category_id": 255, "bbox": [571.53490944, 309.66816608, 58.04650495999999, 92.30495071999998], "area": 5357.979779801033, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 207, "image_id": 69, "category_id": 255, "bbox": [121.59999744, 609.6, 187.20000768, 324.79999999999995], "area": 60802.56249446399, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 208, "image_id": 70, "category_id": 255, "bbox": [9.703971072, 392.31770112000004, 22.180504319999997, 33.27076607999996], "area": 737.9623707671485, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 209, "image_id": 70, "category_id": 255, "bbox": [194.07941376, 410.33935871999995, 54.06498047999999, 65.15524607999998], "area": 3522.6171074847944, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 210, "image_id": 70, "category_id": 255, "bbox": [408.95306496, 562.830336, 19.407920640000015, 36.04329216000002], "area": 699.5253538456151, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 211, "image_id": 70, "category_id": 255, "bbox": [440.83752960000004, 428.36098560000005, 60.9964032, 60.99643391999999], "area": 3720.563077146476, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 212, "image_id": 70, "category_id": 255, "bbox": [464.4043008, 511.53792, 16.635417599999982, 37.429578239999955], "area": 622.6566646142717, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 213, "image_id": 71, "category_id": 255, "bbox": [469.71090944, 264.43583962, 226.54867456, 374.74335848], "area": 84897.61116380694, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 214, "image_id": 71, "category_id": 255, "bbox": [850.312704, 241.7699109, 46.82004479999989, 143.550891], "area": 6721.059147699902, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 215, "image_id": 72, "category_id": 255, "bbox": [0.0, 343.99999488000003, 139.2, 236.80000511999998], "area": 32962.560712704, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 216, "image_id": 72, "category_id": 255, "bbox": [504.0, 492.79998720000003, 356.79999999999995, 275.20001279999997], "area": 98191.36456703999, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 217, "image_id": 72, "category_id": 255, "bbox": [916.8, 192.0, 107.20000000000005, 553.60002048], "area": 59345.92219545602, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 218, "image_id": 73, "category_id": 255, "bbox": [269.94992128, 261.03097152, 55.799715839999976, 31.68584276000001], "area": 1768.061022158921, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 219, "image_id": 73, "category_id": 255, "bbox": [372.500736, 440.5840714, 170.41536000000002, 194.64157239999994], "area": 33169.91363151206, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 220, "image_id": 73, "category_id": 255, "bbox": [380.041216, 153.90265704, 19.605329919999974, 34.70354271999999], "area": 680.374404418413, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 221, "image_id": 73, "category_id": 255, "bbox": [398.13842944, 156.920357, 13.572904960000017, 10.561943040000006], "area": 143.35624907485374, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 222, "image_id": 73, "category_id": 255, "bbox": [426.79232512, 128.2522142, 28.65393664000004, 27.159292819999994], "area": 778.220655651488, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 223, "image_id": 73, "category_id": 255, "bbox": [818.8983808, 315.34955716, 81.43743999999992, 137.30530044], "area": 11181.792166264462, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 224, "image_id": 73, "category_id": 255, "bbox": [867.1576064, 227.8362856, 64.84831231999999, 84.4955716], "area": 5479.395216773722, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 225, "image_id": 74, "category_id": 255, "bbox": [0.0, 351.5619294, 54.37168128, 120.70799840000001], "area": 6563.09681695155, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 226, "image_id": 74, "category_id": 255, "bbox": [176.70796288, 347.03539992000003, 87.59882752000001, 101.09291455999995], "area": 8855.620786035535, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 227, "image_id": 74, "category_id": 255, "bbox": [185.76991232, 318.36725712, 89.10914559999998, 84.49557160000003], "area": 7529.328192259626, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 228, "image_id": 74, "category_id": 255, "bbox": [261.28613376, 383.24778580000003, 80.0472064, 31.685856399999967], "area": 2536.3642872115583, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 229, "image_id": 74, "category_id": 255, "bbox": [348.88495104, 534.13274288, 90.61947392000002, 84.49557159999996], "area": 7656.944246961691, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 230, "image_id": 74, "category_id": 255, "bbox": [519.55163136, 556.7654994000001, 98.17108480000002, 99.58407139999994], "area": 9776.27631813865, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 231, "image_id": 74, "category_id": 255, "bbox": [635.84661504, 523.5707861999999, 42.28909056000009, 58.8451424], "area": 2488.507555969701, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 232, "image_id": 74, "category_id": 255, "bbox": [660.011776, 519.04426354, 99.68143359999999, 98.07518732000003], "area": 9776.275272646144, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 233, "image_id": 75, "category_id": 255, "bbox": [62.456737792, 387.9172392, 26.144677888000004, 116.22985600000004], "area": 3038.792146088626, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 234, "image_id": 75, "category_id": 255, "bbox": [496.74893312, 396.6344784, 127.81846528, 172.89197400000003], "area": 22098.786775909666, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 235, "image_id": 75, "category_id": 255, "bbox": [779.9829504, 357.406902, 69.71919359999993, 145.28735160000002], "area": 10129.31699383166, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 236, "image_id": 76, "category_id": 255, "bbox": [0.0, 382.5717465, 16.638109696, 69.55848254999995], "area": 1157.321662954201, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 237, "image_id": 76, "category_id": 255, "bbox": [63.527324672, 402.22958194999995, 104.366322688, 166.33555655], "area": 17359.830369385374, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 238, "image_id": 76, "category_id": 255, "bbox": [382.67651072, 444.569521, 205.70754048000003, 199.6026295], "area": 41059.7659877857, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 239, "image_id": 76, "category_id": 255, "bbox": [756.2777088, 458.1787859, 155.79321343999993, 139.1170336], "area": 21673.489708784444, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 240, "image_id": 77, "category_id": 255, "bbox": [49.840709632, 306.74557232, 60.412975104, 142.03982179999997], "area": 8581.048218179994, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 241, "image_id": 77, "category_id": 255, "bbox": [270.3480832, 333.94469498, 176.70797311999996, 264.43583961999997], "area": 46727.92123953558, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 242, "image_id": 77, "category_id": 255, "bbox": [498.40707584, 211.54867716, 33.22714112, 10.577429760000006], "area": 351.45775132240794, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 243, "image_id": 78, "category_id": 255, "bbox": [150.1676032, 315.0934631, 195.93294848000002, 189.0560656], "area": 37042.3123610363, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 244, "image_id": 78, "category_id": 255, "bbox": [546.32403968, 388.1378688, 183.06143232, 183.32709020000001], "area": 33560.119715069835, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 245, "image_id": 78, "category_id": 255, "bbox": [972.5139968, 369.51871101, 51.48600320000003, 200.51400414000003], "area": 10323.66465879686, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 246, "image_id": 79, "category_id": 255, "bbox": [0.0, 979.6389888, 11.0902528, 42.512619520000044], "area": 471.47569766701514, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 247, "image_id": 79, "category_id": 255, "bbox": [970.3970816, 944.5198336, 51.75452672000006, 77.63177472000007], "area": 4017.7957590672686, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 248, "image_id": 80, "category_id": 255, "bbox": [552.08269824, 453.64238025, 164.86854656000003, 198.09049200000007], "area": 32658.89150339532, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 249, "image_id": 81, "category_id": 255, "bbox": [188.8, 430.39997952, 206.39999999999998, 195.20004095999997], "area": 40289.28845414399, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 250, "image_id": 81, "category_id": 255, "bbox": [593.6, 156.80000256, 28.799999999999955, 19.199999999999996], "area": 552.959999999999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 251, "image_id": 81, "category_id": 255, "bbox": [662.4, 155.19999744, 52.80000000000007, 25.60000511999999], "area": 1351.6802703360013, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 252, "image_id": 81, "category_id": 255, "bbox": [745.6, 603.19999488, 235.19999999999993, 163.19998464000003], "area": 38384.63638732799, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 253, "image_id": 81, "category_id": 255, "bbox": [755.2, 155.19999744, 28.799999999999955, 38.39999999999999], "area": 1105.919999999998, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 254, "image_id": 82, "category_id": 255, "bbox": [24.0, 319.99999488000003, 12.799999999999997, 32.000010239999966], "area": 409.6001310719995, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 255, "image_id": 82, "category_id": 255, "bbox": [54.4, 321.6, 17.6, 38.39999999999999], "area": 675.8399999999999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 256, "image_id": 82, "category_id": 255, "bbox": [166.4, 334.40000256, 20.799999999999983, 15.999997439999987], "area": 332.7999467519994, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 257, "image_id": 82, "category_id": 255, "bbox": [289.6, 307.20000000000005, 48.0, 94.40002559999999], "area": 4531.2012288, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 258, "image_id": 82, "category_id": 255, "bbox": [436.8, 302.4, 113.59999999999997, 148.8], "area": 16903.68, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 259, "image_id": 83, "category_id": 255, "bbox": [201.6, 460.79999999999995, 118.4, 142.39999488], "area": 16860.159393792, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 260, "image_id": 83, "category_id": 255, "bbox": [435.2, 329.60000256, 56.0, 39.99999744000003], "area": 2239.999856640002, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 261, "image_id": 83, "category_id": 255, "bbox": [723.2, 523.2, 220.79999999999995, 209.5999872], "area": 46279.67717375999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 262, "image_id": 84, "category_id": 255, "bbox": [25.837981696, 132.03439342000001, 77.513949184, 72.14250602000001], "area": 5592.050545640695, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 263, "image_id": 84, "category_id": 255, "bbox": [31.27755776, 53.085994076, 25.837981696, 29.945947023999995], "area": 773.7428310754975, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 264, "image_id": 84, "category_id": 255, "bbox": [48.956176384, 223.23341359999998, 85.673312256, 147.0073902], "area": 12594.610044544233, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 265, "image_id": 84, "category_id": 255, "bbox": [369.8911232, 329.4054084, 156.38773759999998, 191.92628082], "area": 30014.916843422066, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 266, "image_id": 85, "category_id": 255, "bbox": [6.0442477725, 72.49557504, 22.665928378500002, 22.65486847999999], "area": 513.493626392017, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 267, "image_id": 85, "category_id": 255, "bbox": [15.110619602000002, 223.52802816, 60.44247840799999, 101.19173120000002], "area": 6116.2790281241405, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 268, "image_id": 86, "category_id": 255, "bbox": [196.8, 684.7999872, 44.79999999999998, 83.2000128], "area": 3727.3605734399985, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 269, "image_id": 86, "category_id": 255, "bbox": [728.0, 504.0, 72.0, 169.60002047999998], "area": 12211.201474559999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 270, "image_id": 86, "category_id": 255, "bbox": [827.2, 192.0, 16.0, 31.999994880000017], "area": 511.99991808000027, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 271, "image_id": 86, "category_id": 255, "bbox": [867.2, 199.99999488000003, 11.199999999999932, 32.000010239999966], "area": 358.4001146879974, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 272, "image_id": 87, "category_id": 255, "bbox": [64.0, 427.476544, 105.24444672000001, 106.51406150000004], "area": 11210.013470467558, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 273, "image_id": 87, "category_id": 255, "bbox": [473.6, 418.95539125, 122.31113728000003, 102.25353049999997], "area": 12506.745606350165, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 274, "image_id": 88, "category_id": 255, "bbox": [195.96765184, 385.73608079999997, 96.60379135999997, 106.45761115000006], "area": 10284.208856218613, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 275, "image_id": 88, "category_id": 255, "bbox": [365.71429888, 464.5423603, 77.28301055999998, 24.88621847000001], "area": 1923.2818848154773, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 276, "image_id": 88, "category_id": 255, "bbox": [601.70349568, 385.73608079999997, 121.4447616000001, 120.28326270000004], "area": 14607.772163071688, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 277, "image_id": 88, "category_id": 255, "bbox": [750.74932736, 471.45518893, 97.98385664, 29.033905370000003], "area": 2844.8540214734066, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 278, "image_id": 89, "category_id": 255, "bbox": [88.95787200000001, 632.4705792, 221.64080479999998, 192.75292672], "area": 42721.913805776225, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 279, "image_id": 89, "category_id": 255, "bbox": [369.4013436, 412.61175808, 192.9933364, 218.35297792], "area": 42140.66972165633, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 280, "image_id": 90, "category_id": 255, "bbox": [226.54867456, 420.07521592, 66.45428224, 137.50665518], "area": 9137.906073210077, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 281, "image_id": 90, "category_id": 255, "bbox": [317.16814848, 403.45353668, 173.68731648, 200.97124739999995], "area": 34906.15665054417, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 282, "image_id": 90, "category_id": 255, "bbox": [768.7552, 540.9601782, 167.6460032000001, 51.376106920000055], "area": 8612.998985113876, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 283, "image_id": 91, "category_id": 255, "bbox": [537.6, 356.80000512000004, 144.0, 238.39999488], "area": 34329.59926272, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 284, "image_id": 91, "category_id": 255, "bbox": [827.2, 318.39999744, 64.0, 115.20002303999996], "area": 7372.801474559998, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 285, "image_id": 92, "category_id": 255, "bbox": [37.81388288, 453.64238025, 98.31610368, 226.82120725000004], "area": 22300.177328813774, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 286, "image_id": 93, "category_id": 255, "bbox": [136.0, 529.60002048, 177.60000000000002, 107.19996672000002], "area": 19038.714089472007, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 287, "image_id": 93, "category_id": 255, "bbox": [297.6, 259.20000000000005, 225.60000000000002, 72.0], "area": 16243.2, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 288, "image_id": 93, "category_id": 255, "bbox": [414.4, 473.6000256, 219.20000000000005, 276.7999488], "area": 60674.54877696001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 289, "image_id": 93, "category_id": 255, "bbox": [764.8, 412.79999999999995, 108.80000000000007, 172.79999999999998], "area": 18800.64000000001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 290, "image_id": 94, "category_id": 255, "bbox": [382.11209216, 383.80973270000004, 36.247797760000026, 64.97566141999995], "area": 2355.2246344743944, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 291, "image_id": 94, "category_id": 255, "bbox": [394.19469824, 362.65485269, 25.67550976000001, 22.665949210000043], "area": 581.9598001610206, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 292, "image_id": 94, "category_id": 255, "bbox": [433.46313216, 382.29866350000003, 24.16519168000002, 64.97565459], "area": 1570.149147700823, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 293, "image_id": 94, "category_id": 255, "bbox": [534.6548736, 385.3208019, 31.71683328000006, 61.953516189999995], "area": 1964.9693441080144, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 294, "image_id": 94, "category_id": 255, "bbox": [589.02654976, 362.65485269, 19.634237439999993, 19.643810810000037], "area": 385.6912456699793, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 295, "image_id": 94, "category_id": 255, "bbox": [589.02654976, 385.3208019, 25.675530240000057, 58.931425600000004], "area": 1513.0956000791136, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 296, "image_id": 95, "category_id": 255, "bbox": [0.0, 327.5566272, 184.5420032, 188.7614496], "area": 34834.416036119845, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 297, "image_id": 95, "category_id": 255, "bbox": [99.90243328, 510.76627199999996, 195.64227584, 63.84577536000003], "area": 12490.932794199802, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 298, "image_id": 95, "category_id": 255, "bbox": [116.55284736, 234.56385792, 27.750676479999996, 27.759041279999995], "area": 770.3321739562448, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 299, "image_id": 95, "category_id": 255, "bbox": [301.09485056, 333.10842048, 135.97833215999998, 241.50362688], "area": 32839.26039373334, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 300, "image_id": 95, "category_id": 255, "bbox": [357.983744, 238.72771008, 19.425464320000003, 26.37108287999997], "area": 512.2705295652023, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 301, "image_id": 95, "category_id": 255, "bbox": [484.24932352, 530.1975744, 83.2520192, 44.414472960000026], "area": 3697.5945556238034, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 302, "image_id": 95, "category_id": 255, "bbox": [875.5338752, 348.37591679999997, 147.0786048, 226.23613056000005], "area": 33274.49443811545, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 303, "image_id": 95, "category_id": 255, "bbox": [886.63415808, 240.11565696000002, 27.750666239999987, 31.922887679999985], "area": 885.881401424687, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 304, "image_id": 95, "category_id": 255, "bbox": [957.3983744, 255.38313599999998, 16.65039360000003, 15.267456000000017], "area": 254.20915167068233, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 305, "image_id": 96, "category_id": 255, "bbox": [51.120124928, 199.79081320000003, 86.26520371200002, 174.21754815999998], "area": 15028.912282227571, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 306, "image_id": 96, "category_id": 255, "bbox": [431.3260544, 378.8033476, 198.09049600000003, 310.07528279999997], "area": 61422.96656719227, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 307, "image_id": 96, "category_id": 255, "bbox": [972.879872, 268.51881688, 49.52258560000007, 73.52302047999999], "area": 3641.0500752913576, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 308, "image_id": 97, "category_id": 255, "bbox": [445.15350528, 395.55228155000003, 70.51937792000001, 157.33865694999994], "area": 11095.424210882282, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 309, "image_id": 97, "category_id": 255, "bbox": [536.2410496, 380.84771198, 33.79050496000002, 80.875], "area": 2732.807088640002, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 310, "image_id": 98, "category_id": 255, "bbox": [81.55752448, 373.23228245, 114.78465536, 161.68364627], "area": 18558.801614450098, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 311, "image_id": 98, "category_id": 255, "bbox": [422.89086464, 282.56858805999997, 49.840701439999975, 13.599554500000018], "area": 677.811335551509, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 312, "image_id": 98, "category_id": 255, "bbox": [431.9527936, 383.80973270000004, 138.9498368, 211.5486635], "area": 29394.652268583122, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 313, "image_id": 98, "category_id": 255, "bbox": [1004.36578304, 383.80973270000004, 19.634216960000003, 108.79643599999999], "area": 2136.1328288987547, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 314, "image_id": 99, "category_id": 255, "bbox": [8.935428096, 470.23300109999997, 167.986038784, 162.70415755000002], "area": 27332.026920512348, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 315, "image_id": 99, "category_id": 255, "bbox": [675.5183104, 436.26178318, 166.19897856, 166.28006551999997], "area": 27635.577044313868, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 316, "image_id": 100, "category_id": 255, "bbox": [380.71795712, 273.09922812, 179.85640447999998, 216.64124291999997], "area": 38964.315013669446, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 317, "image_id": 100, "category_id": 255, "bbox": [848.0820224, 221.89313736000003, 114.21542399999998, 157.55725116], "area": 17995.468245513886, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 318, "image_id": 100, "category_id": 255, "bbox": [985.92822272, 60.396946536, 10.502563839999993, 6.564889464], "area": 68.94817069820334, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 319, "image_id": 101, "category_id": 255, "bbox": [87.598823424, 208.52655242, 89.109139456, 151.10620967999998], "area": 13464.944311042695, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 320, "image_id": 101, "category_id": 255, "bbox": [306.59586048, 445.7632967, 211.44543231999995, 237.2367033], "area": 50162.61729144006, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 321, "image_id": 101, "category_id": 255, "bbox": [900.15338496, 335.45575052000004, 123.84661503999996, 250.83629877999996], "area": 31065.22653306507, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 322, "image_id": 102, "category_id": 255, "bbox": [264.3067904, 359.6327621, 70.98523647999997, 63.46459904999999], "area": 4505.049571672631, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 323, "image_id": 102, "category_id": 255, "bbox": [330.76105216, 249.32521592, 93.64013055999999, 92.17478407999998], "area": 8631.258815591007, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 324, "image_id": 103, "category_id": 255, "bbox": [305.69412608, 380.3414568, 21.08233727999999, 73.663005], "area": 1552.9883164683258, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 325, "image_id": 103, "category_id": 255, "bbox": [380.9882112, 419.42795340000004, 67.76471551999998, 174.38580359999995], "area": 11817.204371680586, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 326, "image_id": 104, "category_id": 255, "bbox": [36.24778752, 368.699109, 84.57817088, 151.10621650999994], "area": 12780.287401013053, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 327, "image_id": 104, "category_id": 255, "bbox": [299.0442496, 480.51771755, 152.54276096, 200.97121325000003], "area": 30656.70374263594, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 328, "image_id": 104, "category_id": 255, "bbox": [480.28317696, 256.8805346, 77.02657023999996, 48.35398218], "area": 3724.5414047714767, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 329, "image_id": 105, "category_id": 255, "bbox": [22.4, 459.19999487999996, 510.4, 308.80000512000004], "area": 157611.522613248, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 330, "image_id": 105, "category_id": 255, "bbox": [632.0, 411.19999487999996, 232.0, 201.59999232], "area": 46771.19821824, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 331, "image_id": 105, "category_id": 255, "bbox": [1017.6, 395.20001279999997, 6.399999999999977, 27.199987200000038], "area": 174.07991807999963, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 332, "image_id": 106, "category_id": 255, "bbox": [433.47237888, 398.83404852, 190.03681792000003, 215.11914768000003], "area": 40880.558298769756, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 333, "image_id": 106, "category_id": 255, "bbox": [860.6625792, 395.6936076, 80.09816064000006, 128.75745779999994], "area": 10313.235538462422, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 334, "image_id": 106, "category_id": 255, "bbox": [923.484672, 281.06808228, 25.128857599999947, 37.68511391999998], "area": 946.9838613354553, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 335, "image_id": 106, "category_id": 255, "bbox": [973.7422848, 329.74468776, 29.84053760000006, 25.123387140000013], "area": 749.6953785905283, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 336, "image_id": 107, "category_id": 255, "bbox": [41.21362432, 155.56210566, 12.681113599999996, 28.572633960000008], "area": 362.33281709797785, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 337, "image_id": 107, "category_id": 255, "bbox": [136.32197632, 274.61473208, 74.50156031999998, 138.10104152], "area": 10288.743075057102, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 338, "image_id": 107, "category_id": 255, "bbox": [350.31579648, 419.065283, 142.66253311999998, 314.2989434], "area": 44838.683422383496, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 339, "image_id": 108, "category_id": 124, "bbox": [759.79486208, 195.18901737, 24.615413760000024, 19.682947890000015], "area": 484.50390632886985, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 340, "image_id": 109, "category_id": 124, "bbox": [27.19911583, 857.8642944, 516.78316662, 122.33625600000005], "area": 63221.317768115, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 341, "image_id": 110, "category_id": 124, "bbox": [127.054649344, 0.0, 769.890707456, 528.5077084], "area": 406893.1735160253, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 342, "image_id": 111, "category_id": 124, "bbox": [225.14823166, 48.33038336, 205.50440719000002, 172.17698816], "area": 35383.129883580455, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 343, "image_id": 112, "category_id": 124, "bbox": [0.0, 104.557533184, 334.05632204, 385.037285376], "area": 128624.13940097243, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 344, "image_id": 112, "category_id": 124, "bbox": [302.47886242000004, 64.72609792, 217.71834378, 182.560768], "area": 39746.828048164825, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 345, "image_id": 112, "category_id": 124, "bbox": [433.7746434, 137.75041536, 390.56336200000004, 428.18799616], "area": 167234.5433482927, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 346, "image_id": 112, "category_id": 124, "bbox": [546.7887068, 84.64181248, 197.77465638000004, 106.21718528], "area": 21007.0673204028, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 347, "image_id": 113, "category_id": 124, "bbox": [0.0, 128.53200945, 205.70753024, 273.6975725], "area": 56301.65167165834, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 348, "image_id": 113, "category_id": 124, "bbox": [942.3220224, 113.41059335, 81.67797759999996, 272.18542814999995], "area": 22231.555303482095, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 349, "image_id": 114, "category_id": 124, "bbox": [648.0, 280.00000511999997, 89.60000000000002, 103.99999488000002], "area": 9318.399541248004, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 350, "image_id": 115, "category_id": 124, "bbox": [336.25946112, 18.024155058, 113.47027967999998, 133.101434942], "area": 15103.05704867806, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 351, "image_id": 115, "category_id": 124, "bbox": [535.524352, 109.53140323999999, 85.79455999999993, 105.37198685999999], "area": 9040.343248979474, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 352, "image_id": 115, "category_id": 124, "bbox": [730.637824, 117.85024174, 134.22704639999995, 185.78743526], "area": 24937.698693181006, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 353, "image_id": 115, "category_id": 124, "bbox": [844.1080832, 69.3236733, 56.735180799999966, 36.04831355999999], "area": 2045.20758736169, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 354, "image_id": 116, "category_id": 124, "bbox": [228.8, 401.6000256, 24.0, 22.399948800000033], "area": 537.5987712000008, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 355, "image_id": 116, "category_id": 124, "bbox": [379.2, 321.6, 48.0, 46.39999488000001], "area": 2227.1997542400004, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 356, "image_id": 116, "category_id": 124, "bbox": [737.6, 384.0, 32.0, 24.0], "area": 768.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 357, "image_id": 116, "category_id": 124, "bbox": [883.2, 393.59999999999997, 38.39999999999998, 30.399974400000076], "area": 1167.3590169600022, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 358, "image_id": 117, "category_id": 124, "bbox": [89.439253365, 60.760905728, 799.586902785, 625.4799646719999], "area": 500125.58770615567, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 359, "image_id": 118, "category_id": 124, "bbox": [357.33923159999995, 122.15611392, 90.46565640000006, 188.51252224], "area": 17053.90906406121, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 360, "image_id": 119, "category_id": 124, "bbox": [110.85454926, 24.814216192, 569.16360774, 942.940228608], "area": 536687.2623977097, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 361, "image_id": 120, "category_id": 124, "bbox": [63.464602465, 13.592920064, 581.7588724350001, 573.923291136], "area": 333884.9667154636, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 362, "image_id": 27, "category_id": 124, "bbox": [447.05605632, 105.77433858, 80.04722687999998, 54.39822482999999], "area": 4354.427044836258, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 363, "image_id": 28, "category_id": 124, "bbox": [416.0, 79.999997952, 180.79999999999995, 222.40000204799998], "area": 40209.920370278385, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 364, "image_id": 121, "category_id": 124, "bbox": [52.8, 169.59999743999998, 214.39999999999998, 476.79998208000006], "area": 102225.916157952, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 365, "image_id": 122, "category_id": 124, "bbox": [0.0, 0.0, 1024.0, 468.4291981], "area": 479671.4988544, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 366, "image_id": 123, "category_id": 124, "bbox": [107.2, 225.60000000000002, 57.60000000000001, 70.39999488000001], "area": 4055.039705088001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 367, "image_id": 123, "category_id": 124, "bbox": [108.8, 217.59999743999998, 179.2, 169.59999743999998], "area": 30392.319541247998, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 368, "image_id": 123, "category_id": 124, "bbox": [539.2, 393.59999999999997, 46.39999999999998, 20.799974400000025], "area": 965.1188121600007, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 369, "image_id": 123, "category_id": 124, "bbox": [544.0, 401.6000256, 64.0, 87.99997439999996], "area": 5631.998361599997, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 370, "image_id": 123, "category_id": 124, "bbox": [547.2, 401.6000256, 64.0, 110.39999999999995], "area": 7065.599999999997, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 371, "image_id": 123, "category_id": 124, "bbox": [580.8, 427.20000000000005, 80.0, 113.59998719999999], "area": 9087.998975999999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 372, "image_id": 123, "category_id": 124, "bbox": [628.8, 361.59999744, 64.0, 56.00000255999997], "area": 3584.000163839998, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 373, "image_id": 123, "category_id": 124, "bbox": [713.6, 302.4, 220.79999999999995, 324.79999488], "area": 71715.83886950399, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 374, "image_id": 123, "category_id": 124, "bbox": [912.0, 281.60000256, 76.79999999999995, 116.79999744000006], "area": 8970.239803391998, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 375, "image_id": 123, "category_id": 124, "bbox": [915.2, 288.0, 68.79999999999995, 102.39997439999999], "area": 7045.118238719995, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 376, "image_id": 123, "category_id": 124, "bbox": [987.2, 396.79998720000003, 36.799999999999955, 33.59999232000001], "area": 1236.479717375999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 377, "image_id": 124, "category_id": 124, "bbox": [0.0, 0.0, 316.39379856, 262.4094208], "area": 83024.71342484148, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 378, "image_id": 124, "category_id": 124, "bbox": [326.9402685, 95.010304, 192.8495298, 190.02060799999998], "area": 36645.38490511011, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 379, "image_id": 125, "category_id": 124, "bbox": [286.40000256, 196.8, 28.799992319999987, 91.19999999999999], "area": 2626.5592995839984, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 380, "image_id": 126, "category_id": 124, "bbox": [405.6741376, 96.44693616, 193.02231040000004, 179.8163298], "area": 34708.56342564438, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 381, "image_id": 127, "category_id": 124, "bbox": [0.0, 253.48672843999998, 1020.983808, 60.35398556000001], "area": 61620.44200502582, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 382, "image_id": 127, "category_id": 124, "bbox": [102.55081472, 95.05752146, 55.79969535999999, 52.80973566], "area": 2946.767161870128, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 383, "image_id": 128, "category_id": 124, "bbox": [354.11800534, 27.45741312, 101.86954755999994, 75.91167385600001], "area": 7733.087870232997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 384, "image_id": 129, "category_id": 124, "bbox": [255.24484096, 102.75221384, 211.44543231999998, 173.77212474], "area": 36743.322040814266, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 385, "image_id": 130, "category_id": 124, "bbox": [423.437824, 0.0, 229.70808320000003, 186.84783381], "area": 42920.45775456726, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 386, "image_id": 131, "category_id": 124, "bbox": [212.56316928, 0.0, 722.71480832, 789.2563456], "area": 570407.2485256477, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 387, "image_id": 132, "category_id": 124, "bbox": [136.96861192, 34.232559616, 407.92824728, 370.60466278399997], "area": 151180.11052327254, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 388, "image_id": 133, "category_id": 124, "bbox": [99.62790772, 0.0, 640.4651338799999, 613.13580032], "area": 392692.1024385697, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 389, "image_id": 134, "category_id": 124, "bbox": [0.0, 28.77030268, 486.1123584, 589.79117332], "area": 286704.7782260884, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 390, "image_id": 134, "category_id": 124, "bbox": [519.19104, 50.34802380000001, 468.8538623999999, 540.8816822], "area": 253594.46580087926, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 391, "image_id": 135, "category_id": 124, "bbox": [259.7982208, 132.1252808, 247.64391423999996, 366.00220494], "area": 90638.21865181225, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 392, "image_id": 135, "category_id": 124, "bbox": [437.5548928, 160.98021773, 106.35014143999996, 258.1758424], "area": 27457.03735563114, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 393, "image_id": 136, "category_id": 124, "bbox": [290.816, 147.5337452, 77.82400000000001, 75.81594924000001], "area": 5900.3004336537615, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 394, "image_id": 136, "category_id": 124, "bbox": [698.368, 73.7668726, 104.44799999999998, 65.57055267999999], "area": 6848.713086320638, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 395, "image_id": 137, "category_id": 124, "bbox": [691.72864, 98.21902673, 81.55749375999994, 42.3097327], "area": 3450.6757606675155, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 396, "image_id": 138, "category_id": 124, "bbox": [395.49230908, 93.72203008, 93.66923631999997, 90.25085440000001], "area": 8453.72860887551, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 397, "image_id": 139, "category_id": 124, "bbox": [424.40118272, 259.90265934, 247.69323007999998, 163.19470180999997], "area": 40422.22282326131, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 398, "image_id": 140, "category_id": 124, "bbox": [0.0, 1.8199052543999998, 529.2788736, 697.0236915456001], "area": 368919.914333769, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 399, "image_id": 140, "category_id": 124, "bbox": [471.07638272, 0.0, 552.9236172799999, 495.01424639999993], "area": 273705.06772462116, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 400, "image_id": 141, "category_id": 124, "bbox": [152.31811584, 119.02433556, 66.35639808000002, 63.278765160000006], "area": 4198.950930967797, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 401, "image_id": 141, "category_id": 124, "bbox": [164.3829248, 397.7522148, 159.85862656, 146.14379856], "area": 23362.346918062904, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 402, "image_id": 141, "category_id": 124, "bbox": [282.01474048, 506.23009404, 81.43740928, 72.31856346], "area": 5889.436451033673, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 403, "image_id": 141, "category_id": 124, "bbox": [422.26803712, 501.7102017, 91.99408127999999, 69.30526784999996], "area": 6375.674443725065, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 404, "image_id": 141, "category_id": 124, "bbox": [530.85125632, 85.87831539000001, 57.30782208000005, 21.092926259999988], "area": 1208.78966525464, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 405, "image_id": 141, "category_id": 124, "bbox": [637.9264, 132.58407387, 55.79967488000011, 63.27875834999999], "area": 3530.9341427400914, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 406, "image_id": 141, "category_id": 124, "bbox": [717.8556416, 116.01106037999999, 64.84833279999998, 64.78539594000002], "area": 4201.224916496888, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 407, "image_id": 141, "category_id": 124, "bbox": [898.8276736, 9.039822816, 46.75112960000001, 36.159291264000004], "area": 1690.4877121274124, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 408, "image_id": 141, "category_id": 124, "bbox": [957.64361216, 144.63716778, 52.78351359999999, 49.71903366000002], "area": 2624.345289371469, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 409, "image_id": 141, "category_id": 124, "bbox": [959.15167744, 91.90486575000001, 51.27544832000001, 51.225664439999996], "area": 2626.618909650882, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 410, "image_id": 142, "category_id": 124, "bbox": [327.68001024, 2.048, 196.60798463999998, 186.368], "area": 36641.43688138752, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 411, "image_id": 143, "category_id": 124, "bbox": [257.6, 249.60000000000002, 51.19999999999999, 62.39999999999999], "area": 3194.8799999999987, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 412, "image_id": 143, "category_id": 124, "bbox": [676.8, 235.20000000000002, 54.40000000000009, 84.79999488], "area": 4613.119721472008, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 413, "image_id": 144, "category_id": 124, "bbox": [221.69071616, 221.96673354, 27.14579968000001, 7.549899690000003], "area": 204.94806458883428, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 414, "image_id": 144, "category_id": 124, "bbox": [298.6038272, 108.71840163, 33.1782144, 33.21951369000001], "area": 1102.1641474705555, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 415, "image_id": 144, "category_id": 124, "bbox": [487.11632896, 223.47672846, 24.129597439999998, 21.139670099999975], "area": 510.09172952740386, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 416, "image_id": 145, "category_id": 124, "bbox": [271.99114464, 63.433627648, 155.63938995999996, 258.26549555199995], "area": 40196.28417543035, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 417, "image_id": 146, "category_id": 124, "bbox": [273.50221383999997, 220.50737152, 207.01550371, 170.66667008000002], "area": 35330.64667311959, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 418, "image_id": 147, "category_id": 124, "bbox": [371.2, 97.59999744, 451.2, 257.60000256], "area": 116229.121155072, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 419, "image_id": 148, "category_id": 124, "bbox": [271.0588416, 0.0, 439.71765248, 274.41241560000003], "area": 120663.98319899815, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 420, "image_id": 149, "category_id": 124, "bbox": [500.6558208, 294.8675523, 81.67797759999996, 65.02208375], "area": 5310.872300037821, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 421, "image_id": 56, "category_id": 124, "bbox": [440.0, 185.59999488, 43.19999999999999, 32.00000255999999], "area": 1382.4001105919992, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 422, "image_id": 150, "category_id": 124, "bbox": [91.19999999999999, 240.0, 33.60000000000001, 41.60000000000002], "area": 1397.7600000000011, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 423, "image_id": 150, "category_id": 124, "bbox": [318.39999744, 192.0, 44.79999743999997, 43.19999999999999], "area": 1935.3598894079983, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 424, "image_id": 150, "category_id": 124, "bbox": [345.6, 0.0, 422.40000000000003, 641.6], "area": 271011.84, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 425, "image_id": 151, "category_id": 124, "bbox": [399.24908032, 0.0, 155.26354943999996, 97.96389888], "area": 15210.222657090037, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 426, "image_id": 152, "category_id": 124, "bbox": [427.2, 499.20000000000005, 30.400000000000034, 54.40002047999997], "area": 1653.7606225920008, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 427, "image_id": 152, "category_id": 124, "bbox": [513.6, 312.0, 46.39999999999998, 31.999994880000017], "area": 1484.799762432, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 428, "image_id": 153, "category_id": 124, "bbox": [130.56, 156.2572515, 225.27999999999997, 345.81522107999996], "area": 77905.25300490238, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 429, "image_id": 153, "category_id": 124, "bbox": [706.56, 38.423911568, 186.8800000000001, 179.31158543200002], "area": 33509.74908553218, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 430, "image_id": 154, "category_id": 124, "bbox": [104.21238784, 10.577433858, 203.89381119999996, 185.86061960199999], "area": 37895.830082645196, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 431, "image_id": 154, "category_id": 124, "bbox": [806.5132544, 0.0, 217.48674559999995, 179.81637422], "area": 39107.67803469953, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 432, "image_id": 155, "category_id": 124, "bbox": [361.5861248, 265.2747727, 50.3849472, 47.42343521999999], "area": 2389.4272796023197, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 433, "image_id": 155, "category_id": 124, "bbox": [532.0057856, 223.7792858, 50.384957439999994, 40.0135064], "area": 2016.0788169891673, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 434, "image_id": 156, "category_id": 124, "bbox": [82.8670464, 212.91196165, 88.78613503999999, 34.00678125000001], "area": 3019.3306723382407, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 435, "image_id": 156, "category_id": 124, "bbox": [362.54337024, 258.74718485, 57.710960639999996, 35.48531929999998], "area": 2047.8918654201311, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 436, "image_id": 156, "category_id": 124, "bbox": [500.1618432, 270.57562025, 48.832358399999976, 47.313761250000006], "area": 2310.4425466120315, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 437, "image_id": 157, "category_id": 124, "bbox": [281.60000256, 88.0, 246.39999744000002, 372.8], "area": 91857.919045632, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 438, "image_id": 158, "category_id": 124, "bbox": [72.53097326999999, 4.5309733888, 202.48229611000002, 205.4041306112], "area": 41590.69999663412, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 439, "image_id": 158, "category_id": 124, "bbox": [427.6305346, 140.46017536, 252.34736115000004, 318.67846656], "area": 80417.67009174453, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 440, "image_id": 159, "category_id": 124, "bbox": [0.0, 259.20000000000005, 33.6, 31.999994879999974], "area": 1075.1998279679992, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 441, "image_id": 159, "category_id": 124, "bbox": [206.4, 190.40000256000002, 129.6, 126.39999743999998], "area": 16381.439668223997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 442, "image_id": 160, "category_id": 124, "bbox": [376.07079936, 225.14823166, 34.73745919999999, 22.665928720000014], "area": 787.3567741411085, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 443, "image_id": 160, "category_id": 124, "bbox": [416.84955136, 222.12610692, 67.96460031999999, 63.464605879999986], "area": 4313.34657310052, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 444, "image_id": 160, "category_id": 124, "bbox": [596.5782016, 376.25442768, 57.39233279999996, 92.17477041999999], "area": 5290.1250997082325, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 445, "image_id": 160, "category_id": 124, "bbox": [699.28020992, 285.5907128, 31.71683328000006, 30.22123374000001], "area": 958.521832047493, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 446, "image_id": 160, "category_id": 124, "bbox": [702.3008768, 627.0907128, 49.84074240000007, 55.9092872], "area": 2786.560381102821, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 447, "image_id": 160, "category_id": 124, "bbox": [875.988224, 503.1836531, 51.350988800000096, 40.79862935], "area": 2095.0499588072053, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 448, "image_id": 160, "category_id": 124, "bbox": [882.0294656, 598.3805345999999, 57.39233279999996, 30.221247400000042], "area": 1734.467888411936, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 449, "image_id": 161, "category_id": 124, "bbox": [129.85809216, 306.14431744, 452.99336169000003, 352.89542656000003], "area": 159859.28560244094, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 450, "image_id": 162, "category_id": 124, "bbox": [97.75273984, 83.308333846, 496.77619200000004, 485.43122385400005], "area": 241150.67486408973, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 451, "image_id": 162, "category_id": 124, "bbox": [591.32391424, 25.633334615, 432.67608576, 658.456261535], "area": 284898.27788512665, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 452, "image_id": 163, "category_id": 124, "bbox": [203.2, 108.80000256, 86.40000000000003, 68.79999744000001], "area": 5944.319778816003, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 453, "image_id": 164, "category_id": 124, "bbox": [308.80000512000004, 16.0, 144.0, 185.6], "area": 26726.399999999998, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 454, "image_id": 165, "category_id": 124, "bbox": [206.77089848, 144.22536192, 603.48247512, 838.9107916799999], "area": 506267.960967925, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 455, "image_id": 166, "category_id": 124, "bbox": [64.975665518, 644.908544, 559.092908882, 362.47787519999997], "area": 202658.80965093453, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 456, "image_id": 167, "category_id": 124, "bbox": [247.81416038, 135.92920064, 205.50441401999998, 113.27433728], "area": 23278.37630623024, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 457, "image_id": 168, "category_id": 124, "bbox": [13.856562176, 195.70119552, 80.368062464, 58.29398783999998], "area": 4684.974856000776, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 458, "image_id": 168, "category_id": 124, "bbox": [144.10825728, 131.85542016, 91.45331712000001, 80.50120704000001], "area": 7362.102415971898, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 459, "image_id": 168, "category_id": 124, "bbox": [206.46278144, 204.02891712000002, 77.59676415999999, 76.33735487999998], "area": 5923.531723221583, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 460, "image_id": 168, "category_id": 124, "bbox": [390.75506176, 188.76144384, 73.43980543999999, 79.11324864000001], "area": 5810.061587847944, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 461, "image_id": 168, "category_id": 124, "bbox": [482.2084096, 56.90602368, 70.66844160000005, 65.23373376], "area": 4609.966304568512, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 462, "image_id": 168, "category_id": 124, "bbox": [656.8010752, 256.77108864, 127.48036095999998, 115.19997696000001], "area": 14685.734645444483, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 463, "image_id": 168, "category_id": 124, "bbox": [828.6224384, 58.29397632, 126.09474560000001, 115.20000575999998], "area": 14526.115419425734, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 464, "image_id": 169, "category_id": 124, "bbox": [216.08185744, 333.7817088, 43.82080190000002, 51.35104000000001], "area": 2250.2437511989774, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 465, "image_id": 170, "category_id": 124, "bbox": [453.09734912, 78.57522275, 228.05902335999997, 202.48229610999996], "area": 46177.914698536915, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 466, "image_id": 171, "category_id": 124, "bbox": [683.18542848, 135.354078, 59.13674751999997, 59.120161250000024], "area": 3496.1740491829373, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 467, "image_id": 172, "category_id": 124, "bbox": [106.12363264, 214.0625, 297.89092864, 377.86685140000003], "area": 112563.1072658189, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 468, "image_id": 172, "category_id": 124, "bbox": [670.2544896, 91.20923644999999, 279.27279616, 160.08150655], "area": 44706.409947723856, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 469, "image_id": 173, "category_id": 124, "bbox": [881.6, 481.60002048, 68.79999999999995, 46.39997952000002], "area": 3192.318590975999, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 470, "image_id": 174, "category_id": 124, "bbox": [382.11209216, 297.6791981, 641.88790784, 42.30974635999997], "area": 27158.11457226144, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 471, "image_id": 175, "category_id": 124, "bbox": [420.14117888, 266.873616, 137.03524352, 245.76496079999998], "area": 33678.46125191125, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 472, "image_id": 176, "category_id": 124, "bbox": [62.84476416, 332.707584, 105.35740416, 90.57039359999999], "area": 9542.261563445476, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 473, "image_id": 176, "category_id": 124, "bbox": [423.2779776, 131.23465216, 216.25992192, 216.25995264], "area": 46768.3604723493, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 474, "image_id": 177, "category_id": 124, "bbox": [0.0, 0.0, 420.3752936, 1024.0], "area": 430464.3006464, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 475, "image_id": 178, "category_id": 124, "bbox": [58.931415355, 317.16814848, 15.110620285000003, 22.654853119999984], "area": 342.3288831087674, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 476, "image_id": 178, "category_id": 124, "bbox": [216.08185744, 391.1740416, 27.19912265999999, 31.71682304000001], "area": 862.669760250474, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 477, "image_id": 178, "category_id": 124, "bbox": [271.99114464, 363.98819328, 42.30974636000001, 45.309747200000004], "area": 1917.043911667721, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 478, "image_id": 178, "category_id": 124, "bbox": [667.8893763, 342.84365824, 13.59955449999998, 34.73745919999999], "area": 472.4139695819256, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 479, "image_id": 179, "category_id": 124, "bbox": [280.92035072, 205.50442768, 297.53393152, 101.24114464000003], "area": 30122.675796324183, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 480, "image_id": 180, "category_id": 124, "bbox": [0.0, 217.59292664, 218.99705344, 327.90043184], "area": 71809.22839466356, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 481, "image_id": 180, "category_id": 124, "bbox": [672.0944128, 0.0, 351.9055872, 430.65263885], "area": 151549.0697537388, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 482, "image_id": 181, "category_id": 124, "bbox": [87.47008572, 100.054962176, 563.8696717400001, 345.502285824], "area": 194818.26049299855, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 483, "image_id": 182, "category_id": 124, "bbox": [87.838568, 203.90697984, 87.838568, 129.48837376000003], "area": 11374.073323727178, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 484, "image_id": 183, "category_id": 124, "bbox": [6.039911239499999, 61.832108032, 517.9223740604999, 458.46244556799996], "area": 237447.95822616125, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 485, "image_id": 184, "category_id": 124, "bbox": [202.29371136000003, 94.83716841, 238.09787136, 198.62125209], "area": 47291.29732948695, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 486, "image_id": 185, "category_id": 124, "bbox": [452.5714432, 57.916668519999995, 44.190453760000025, 56.39253908000001], "area": 2492.011890623735, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 487, "image_id": 185, "category_id": 124, "bbox": [917.3332992, 163.0811384, 39.61907199999996, 30.482463700000014], "area": 1207.6869240676858, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 488, "image_id": 186, "category_id": 124, "bbox": [0.0, 0.0, 77.48368384, 158.17142956], "area": 12255.70504054787, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 489, "image_id": 186, "category_id": 124, "bbox": [469.45992704, 0.0, 554.54007296, 514.05715472], "area": 285065.2920840388, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 490, "image_id": 187, "category_id": 124, "bbox": [289.60217088, 165.16626048, 162.12176896, 152.67468672000004], "area": 24751.890286460228, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 491, "image_id": 187, "category_id": 124, "bbox": [394.9120512, 54.1301184, 95.61028607999998, 44.41446144], "area": 4246.4793643675275, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 492, "image_id": 187, "category_id": 124, "bbox": [561.1908096, 1.3879518336, 9.699573760000021, 8.3277108864], "area": 80.77524599459196, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 493, "image_id": 188, "category_id": 124, "bbox": [271.99114464, 176.70796288, 128.44028096000002, 128.37757952], "area": 16488.852382513545, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 494, "image_id": 189, "category_id": 124, "bbox": [0.0, 529.2494538999999, 83.190544384, 155.7505461], "area": 12956.97271816429, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 495, "image_id": 189, "category_id": 124, "bbox": [198.14475776, 10.584989215, 72.60264447999998, 40.827815935], "area": 2964.207405223683, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 496, "image_id": 189, "category_id": 124, "bbox": [468.89218048, 299.4039785, 137.64257792, 123.99557639999998], "area": 17067.07078637231, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 497, "image_id": 189, "category_id": 124, "bbox": [480.9926144, 0.0, 63.527372799999966, 43.8520971], "area": 2785.808520533498, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 498, "image_id": 189, "category_id": 124, "bbox": [565.695744, 0.0, 86.21562879999999, 34.77924881], "area": 2998.5148053458015, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 499, "image_id": 189, "category_id": 124, "bbox": [609.55981824, 282.77041805, 58.98971136, 113.41060705000004], "area": 6690.058975041884, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 500, "image_id": 189, "category_id": 124, "bbox": [677.624832, 294.8675523, 95.29098240000008, 72.58279179999998], "area": 6916.485535956667, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 501, "image_id": 190, "category_id": 124, "bbox": [0.0, 114.68799743999999, 1001.472, 118.78400256], "area": 118958.85261176832, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 502, "image_id": 191, "category_id": 124, "bbox": [0.0, 162.40740286, 436.6555136, 714.5925971400001], "area": 312030.79751892464, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 503, "image_id": 191, "category_id": 124, "bbox": [369.87292672, 42.738791888, 458.91638272, 668.4347155119999], "area": 306755.6417272393, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 504, "image_id": 191, "category_id": 124, "bbox": [703.78595328, 164.11695650000001, 118.1538611200001, 194.8888694], "area": 23026.872408921437, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 505, "image_id": 192, "category_id": 124, "bbox": [214.40000256000002, 54.4, 260.79999744, 296.0], "area": 77196.79924224001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 506, "image_id": 193, "category_id": 124, "bbox": [259.20000000000005, 4.8075117568, 219.19997952, 139.4178501632], "area": 30560.38990049587, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 507, "image_id": 194, "category_id": 124, "bbox": [99.53460736, 95.12860398000001, 30.16200703999999, 15.09977214], "area": 455.43943358907575, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 508, "image_id": 194, "category_id": 124, "bbox": [298.6038272, 131.36806665, 27.145809919999977, 16.60976025], "area": 450.88539456327135, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 509, "image_id": 194, "category_id": 124, "bbox": [435.84094208, 129.85809216, 36.19438592, 31.709532390000003], "area": 1147.7070526664002, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 510, "image_id": 194, "category_id": 124, "bbox": [455.44626176, 203.84701242, 37.70248191999997, 30.19954428], "area": 1138.5977722089385, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 511, "image_id": 194, "category_id": 124, "bbox": [478.06775296, 179.68735248, 30.161981439999977, 25.66964123999999], "area": 774.2472426523376, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 512, "image_id": 194, "category_id": 124, "bbox": [659.039744, 67.94900187, 15.08106239999995, 10.569848669999999], "area": 159.40454735082648, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 513, "image_id": 194, "category_id": 124, "bbox": [717.8556416, 58.8891345, 19.605360639999958, 13.58980446], "area": 266.43301746537986, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 514, "image_id": 194, "category_id": 124, "bbox": [820.4064768, 182.7073287, 28.653875200000016, 18.119707500000004], "area": 519.1998373655044, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 515, "image_id": 195, "category_id": 124, "bbox": [222.12610692, 276.389376, 232.70353667999998, 208.42477567999998], "area": 48501.18243247164, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 516, "image_id": 196, "category_id": 124, "bbox": [0.0, 102.40000512, 433.6, 665.59999488], "area": 288604.157779968, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 517, "image_id": 196, "category_id": 124, "bbox": [760.0, 225.60000000000002, 238.39999999999998, 334.40002559999994], "area": 79720.96610303997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 518, "image_id": 197, "category_id": 124, "bbox": [898.6430464, 333.94469498, 72.49561600000004, 36.26548321999996], "area": 2629.088545571562, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 519, "image_id": 198, "category_id": 124, "bbox": [374.74335848, 0.0, 57.4203564, 52.86135808], "area": 3035.31802074162, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 520, "image_id": 198, "category_id": 124, "bbox": [580.2477725, 86.088493056, 19.643831299999988, 12.082595839999996], "area": 237.34847434704156, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 521, "image_id": 198, "category_id": 124, "bbox": [581.7588417, 87.598823424, 16.621692899999985, 15.103241216], "area": 251.04143728697434, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 522, "image_id": 198, "category_id": 124, "bbox": [661.84514731, 110.253684736, 21.154852689999977, 25.675515904000008], "area": 543.1617566888717, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 523, "image_id": 199, "category_id": 124, "bbox": [0.0, 0.0, 766.0, 1024.0], "area": 784384.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 524, "image_id": 200, "category_id": 124, "bbox": [385.1327488, 151.10619602, 169.1563008, 158.66150104], "area": 26838.592595301754, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 525, "image_id": 200, "category_id": 124, "bbox": [524.0825856, 43.820795069999996, 93.64013055999999, 145.06195337], "area": 13583.620252855431, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 526, "image_id": 200, "category_id": 124, "bbox": [555.7994496, 190.39380398, 105.72267520000003, 74.04203564], "area": 7827.922085114546, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 527, "image_id": 200, "category_id": 124, "bbox": [712.8731648, 228.1703564, 24.165171199999918, 34.754427679999985], "area": 839.8466948452156, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 528, "image_id": 200, "category_id": 124, "bbox": [795.9409664, 228.1703564, 10.572288000000071, 19.643803980000005], "area": 207.6799530921077, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 529, "image_id": 201, "category_id": 124, "bbox": [122.336280576, 27.19911583, 173.687312384, 163.19468815000002], "area": 28344.846780118514, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 530, "image_id": 201, "category_id": 124, "bbox": [727.97637632, 0.0, 155.56341759999998, 58.931415355], "area": 9167.572376628916, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 531, "image_id": 97, "category_id": 124, "bbox": [575.9081984, 67.64090614999999, 54.35865088000003, 33.820456310000004], "area": 1838.434377157584, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 532, "image_id": 202, "category_id": 124, "bbox": [296.16814256000004, 22.654867456, 134.48449629, 169.156337664], "area": 22748.9048650042, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 533, "image_id": 203, "category_id": 124, "bbox": [427.42181888, 72.53097326999999, 247.69323007999998, 237.23672379], "area": 58761.930409141874, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 534, "image_id": 204, "category_id": 124, "bbox": [0.0, 48.106429608, 1024.0, 500.60754031199997], "area": 512622.12127948797, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 535, "image_id": 204, "category_id": 124, "bbox": [404.48751616, 48.106429608, 237.58004224000007, 239.028834912], "area": 56788.48069497097, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 536, "image_id": 205, "category_id": 124, "bbox": [88.5032293, 245.13938432, 94.71397438, 107.05456128], "area": 10139.56297433606, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 537, "image_id": 205, "category_id": 124, "bbox": [152.16343496, 347.53939456, 121.10968068000001, 117.91516672], "area": 14280.668188788164, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 538, "image_id": 205, "category_id": 124, "bbox": [177.0064586, 234.27878912, 46.58063863999999, 57.406054400000016], "area": 2674.0106757545823, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 539, "image_id": 205, "category_id": 124, "bbox": [195.63871550000002, 1.551515136, 279.48388238, 308.751512064], "area": 86291.07128234213, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 540, "image_id": 205, "category_id": 124, "bbox": [658.3398159999999, 606.6423808, 63.66018400000002, 138.08491520000007], "area": 8790.511109256404, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 541, "image_id": 206, "category_id": 124, "bbox": [149.5221248, 157.380534, 129.88790784, 186.1327476], "area": 24176.39316627478, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 542, "image_id": 206, "category_id": 124, "bbox": [246.18289152, 152.84070972, 172.1769984, 136.19469420000001], "area": 23449.59364536189, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 543, "image_id": 206, "category_id": 124, "bbox": [623.76403968, 169.48672524, 152.54275071999996, 169.48672524], "area": 25853.971278634443, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 544, "image_id": 206, "category_id": 124, "bbox": [750.63129088, 93.82300776, 271.85841152, 211.85841168000002], "area": 57595.491266475015, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 545, "image_id": 108, "category_id": 244, "bbox": [13.128205312, 0.0, 997.743561728, 782.3963454000001], "area": 780630.9163423666, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 546, "image_id": 37, "category_id": 244, "bbox": [151.03245312, 31.732301573999997, 851.8230118399999, 571.181413306], "area": 486545.47178934474, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 547, "image_id": 207, "category_id": 244, "bbox": [54.885146624, 272.84680412, 953.433419776, 362.22767306000003], "area": 345359.9690630987, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 548, "image_id": 60, "category_id": 244, "bbox": [98.51490816, 24.983133119999998, 731.23034624, 524.64576672], "area": 383636.9056520159, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 549, "image_id": 9, "category_id": 244, "bbox": [299.2, 201.60000000000002, 545.5999999999999, 305.59999488], "area": 166735.35720652796, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 550, "image_id": 70, "category_id": 244, "bbox": [140.01443328, 189.92057087999999, 627.98556672, 392.31769343999997], "area": 246369.84904920164, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 551, "image_id": 208, "category_id": 244, "bbox": [44.0, 42.666666, 941.33330944, 440.00000044], "area": 414186.6565677867, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 552, "image_id": 209, "category_id": 244, "bbox": [0.0, 299.19998976, 276.8, 256.00000511999997], "area": 70860.80141721599, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 553, "image_id": 107, "category_id": 244, "bbox": [118.885451776, 0.0, 905.114548224, 754.0], "area": 682456.3693608961, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 554, "image_id": 108, "category_id": 129, "bbox": [574.3589376, 211.5914457, 13.128243200000043, 11.481729689999975], "area": 150.7349397269808, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 555, "image_id": 110, "category_id": 129, "bbox": [440.15362048, 357.38631180000004, 105.87884544000008, 127.20530242000001], "area": 13468.350554075649, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 556, "image_id": 112, "category_id": 129, "bbox": [299.1549393, 328.60940288, 24.92957208000002, 51.44894463999998], "area": 1282.6001738428101, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 557, "image_id": 112, "category_id": 129, "bbox": [438.7605446, 225.71150336, 38.22534716, 68.04539391999998], "area": 2601.058805230952, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 558, "image_id": 114, "category_id": 129, "bbox": [670.4, 323.19998976, 22.399999999999977, 22.40001024], "area": 501.76022937599953, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 559, "image_id": 117, "category_id": 129, "bbox": [482.97196529999997, 509.3193728, 44.71960514999999, 75.05756159999999], "area": 3356.544518273801, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 560, "image_id": 118, "category_id": 129, "bbox": [202.0399204, 159.85861632, 51.2638536, 52.78350336], "area": 2705.8857887421477, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 561, "image_id": 119, "category_id": 129, "bbox": [345.80000637, 317.6219648, 64.52726553000004, 95.94831871999997], "area": 6191.282639202512, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 562, "image_id": 120, "category_id": 129, "bbox": [309.76769706, 436.48376832, 92.17476359, 107.23302399999994], "area": 9884.178636240791, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 563, "image_id": 210, "category_id": 129, "bbox": [430.87323136, 414.85186556, 146.02819583999997, 117.24073063999995], "area": 17120.4523743226, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 564, "image_id": 125, "category_id": 129, "bbox": [361.59999744, 222.4, 27.200002559999987, 30.400000000000006], "area": 826.8800778239997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 565, "image_id": 126, "category_id": 129, "bbox": [503.82107648, 274.62857715, 39.25881856000001, 57.21428457000002], "area": 2246.165216973839, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 566, "image_id": 128, "category_id": 129, "bbox": [397.77637394000004, 103.369086976, 19.40375755999993, 19.38169855999999], "area": 376.0777799592396, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 567, "image_id": 211, "category_id": 129, "bbox": [422.01083203999997, 460.89291776, 9.295409759999984, 11.150632959999996], "area": 103.64970244656148, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 568, "image_id": 211, "category_id": 129, "bbox": [436.88349039999997, 375.40472832, 11.1544286, 13.00905984000002], "area": 145.10862913840765, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 569, "image_id": 211, "category_id": 129, "bbox": [591.18700018, 163.54265088, 14.87259662, 7.433758720000014], "area": 110.55929481296774, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 570, "image_id": 17, "category_id": 129, "bbox": [402.66274816, 240.08646828, 12.064788480000004, 19.629716040000012], "area": 236.82837194506345, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 571, "image_id": 212, "category_id": 129, "bbox": [434.5163264, 136.68132020000002, 142.81308159999992, 80.49011922999998], "area": 11495.04196558771, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 572, "image_id": 213, "category_id": 129, "bbox": [102.40000512, 692.224, 67.584, 98.30399999999997], "area": 6643.777535999999, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 573, "image_id": 130, "category_id": 129, "bbox": [532.7567872, 200.68840242000002, 29.059440640000048, 27.681160140000003], "area": 804.3990299346655, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 574, "image_id": 131, "category_id": 129, "bbox": [452.85198848, 282.8014592, 55.451269120000006, 64.69314559999998], "area": 3587.317026884943, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 575, "image_id": 132, "category_id": 129, "bbox": [321.57847352, 351.25582848, 90.81612327999996, 104.18604032000002], "area": 9461.772281756168, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 576, "image_id": 134, "category_id": 129, "bbox": [454.47192576, 201.3921014, 30.202224639999997, 41.7169418], "area": 1259.944447537406, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 577, "image_id": 134, "category_id": 129, "bbox": [464.5393408, 188.44547839999998, 25.887641599999995, 27.33179480000002], "area": 707.555708067144, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 578, "image_id": 135, "category_id": 129, "bbox": [259.7982208, 235.39561085000003, 31.905054719999953, 39.48570934999998], "area": 1259.7937174697631, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 579, "image_id": 135, "category_id": 129, "bbox": [480.09496576, 205.0219803, 39.50147584000007, 39.48571626000001], "area": 1559.7440668694885, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 580, "image_id": 138, "category_id": 129, "bbox": [426.71536380000003, 190.91525632, 26.019272399999938, 34.711869440000015], "area": 903.1775864725937, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 581, "image_id": 139, "category_id": 129, "bbox": [548.24779776, 392.87610692, 25.675479040000027, 22.665942380000008], "area": 581.9589284995385, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 582, "image_id": 140, "category_id": 129, "bbox": [198.25222656, 283.905216, 160.05682176, 202.00945919999998], "area": 32332.99200500839, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 583, "image_id": 140, "category_id": 129, "bbox": [638.4084992, 424.0379136, 167.3321471999999, 225.6682752], "area": 37761.55704413648, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 584, "image_id": 141, "category_id": 129, "bbox": [3.016200192, 69.30530871, 13.572901888, 15.066372494999994], "area": 204.49439568269668, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 585, "image_id": 141, "category_id": 129, "bbox": [15.08100096, 259.14159738, 12.064802816, 18.07963746], "area": 218.12726093966708, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 586, "image_id": 141, "category_id": 129, "bbox": [27.145803776, 195.86283222, 15.080998911999998, 16.57300668000003], "area": 249.93749570964914, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 587, "image_id": 141, "category_id": 129, "bbox": [43.73490688, 406.79201309999996, 19.605299200000005, 21.092953499999993], "area": 413.53366437918714, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 588, "image_id": 141, "category_id": 129, "bbox": [185.49632, 161.21017446, 9.04860672000001, 15.066375899999983], "area": 136.32971021478602, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 589, "image_id": 141, "category_id": 129, "bbox": [208.1178112, 34.652654355, 3.016202239999984, 6.026548316999996], "area": 18.177288533203523, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 590, "image_id": 141, "category_id": 129, "bbox": [251.85271808, 462.5375835, 16.589117439999995, 24.10621506000001], "area": 399.9008326642367, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 591, "image_id": 141, "category_id": 129, "bbox": [266.93371904, 106.97124165, 9.048616959999947, 12.053093910000012], "area": 109.06382997449819, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 592, "image_id": 141, "category_id": 129, "bbox": [306.14431744, 296.8075167, 9.048616960000004, 13.559745119999974], "area": 122.69693966610905, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 593, "image_id": 141, "category_id": 129, "bbox": [315.1929344, 558.9624165, 19.60527872, 21.09288539999995], "area": 413.53189727601773, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 594, "image_id": 141, "category_id": 129, "bbox": [318.2091264, 229.00884558, 12.064798719999999, 12.053100720000009], "area": 145.41823413868718, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 595, "image_id": 141, "category_id": 129, "bbox": [389.0898432, 495.68362410000003, 19.605288959999996, 18.079630649999967], "area": 354.4563831833219, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 596, "image_id": 141, "category_id": 129, "bbox": [393.6141312, 28.626105357, 9.048616960000004, 9.039824177999998], "area": 81.79790637246887, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 597, "image_id": 141, "category_id": 129, "bbox": [435.84094208, 212.43583890000002, 15.080990719999988, 18.079651079999994], "area": 272.65905015831765, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 598, "image_id": 141, "category_id": 129, "bbox": [456.95434752, 560.46902004, 21.113405440000008, 19.586281860000003], "area": 413.53310997229755, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 599, "image_id": 141, "category_id": 129, "bbox": [488.62445568, 232.02212075999998, 12.064788480000004, 10.54646994], "area": 127.24092903677833, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 600, "image_id": 141, "category_id": 129, "bbox": [561.013248, 464.04422789999995, 16.589107200000058, 21.092953499999993], "area": 349.9132667761163, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 601, "image_id": 141, "category_id": 129, "bbox": [580.6185472, 117.51769797, 13.572915200000011, 13.559738309999995], "area": 184.0451782158214, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 602, "image_id": 141, "category_id": 129, "bbox": [582.1266432, 301.32743628, 13.572966400000041, 13.559731500000018], "area": 184.0457800425224, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 603, "image_id": 141, "category_id": 129, "bbox": [613.7967616, 572.52212076, 21.113395200000014, 16.57300667999999], "area": 349.91243968708, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 604, "image_id": 141, "category_id": 129, "bbox": [627.3696768, 73.82522148, 7.540480000000002, 13.55973149999999], "area": 102.24688418111995, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 605, "image_id": 141, "category_id": 129, "bbox": [662.05596672, 156.6902685, 10.556692480000038, 10.546456320000006], "area": 111.33569612399293, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 606, "image_id": 141, "category_id": 129, "bbox": [720.8718848, 212.43583890000002, 10.556702719999976, 7.533181139999995], "area": 79.52555383089046, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 607, "image_id": 141, "category_id": 129, "bbox": [734.4447488, 152.17035573, 12.06482944000004, 7.533181139999995], "area": 90.886545594725, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 608, "image_id": 141, "category_id": 129, "bbox": [737.46100224, 67.79867112, 10.556702719999976, 13.559734223999998], "area": 143.14608316497754, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 609, "image_id": 141, "category_id": 129, "bbox": [770.6391552, 256.1283222, 10.556723199999965, 10.546456320000006], "area": 111.33602011113032, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 610, "image_id": 141, "category_id": 129, "bbox": [799.29309184, 471.5774499, 22.621429759999955, 16.572993059999998], "area": 374.90479841975673, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 611, "image_id": 141, "category_id": 129, "bbox": [835.487488, 67.79867112, 9.048586239999963, 6.026550360000004], "area": 54.53176066216287, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 612, "image_id": 141, "category_id": 129, "bbox": [852.0765952, 568.0022148, 18.097172479999927, 25.612818600000033], "area": 463.51959590315084, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 613, "image_id": 141, "category_id": 129, "bbox": [865.6494592, 105.46460406, 7.540531200000032, 12.053093909999994], "area": 90.88673068488534, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 614, "image_id": 141, "category_id": 129, "bbox": [886.7629056, 354.0597315, 13.572915200000011, 21.092926260000006], "area": 286.29249944683346, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 615, "image_id": 141, "category_id": 129, "bbox": [894.30340608, 590.60177184, 10.55670272000009, 12.053100719999971], "area": 127.24100115525873, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 616, "image_id": 141, "category_id": 129, "bbox": [895.8114816, 222.98229522, 9.048627200000055, 9.039825539999997], "area": 81.79801126449917, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 617, "image_id": 141, "category_id": 129, "bbox": [916.92486656, 37.665929535, 9.048637439999993, 9.039822135], "area": 81.79807302170167, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 618, "image_id": 141, "category_id": 129, "bbox": [918.4329728, 488.15044295999996, 6.0324249599999575, 16.57300667999999], "area": 99.97541915867798, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 619, "image_id": 141, "category_id": 129, "bbox": [957.64361216, 122.03761073999999, 9.048586240000077, 15.066369090000006], "area": 136.32934003453653, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 620, "image_id": 141, "category_id": 129, "bbox": [974.2326784, 239.55531552000002, 9.048637439999993, 15.06636227999999], "area": 136.33004981141156, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 621, "image_id": 141, "category_id": 129, "bbox": [974.2326784, 518.28320157, 15.08106239999995, 24.10616058000004], "area": 363.5465119313996, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 622, "image_id": 141, "category_id": 129, "bbox": [977.24890112, 173.26327518000002, 10.556692479999924, 16.57300667999999], "area": 174.9561349897444, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 623, "image_id": 141, "category_id": 129, "bbox": [1007.4108928, 286.26106038, 6.032383999999979, 13.55973149999998], "area": 81.79750734489559, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 624, "image_id": 214, "category_id": 129, "bbox": [220.8, 176.36742912, 17.599999999999994, 25.653450239999998], "area": 451.5007242239998, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 625, "image_id": 142, "category_id": 129, "bbox": [397.3119744, 163.84, 38.912025599999964, 49.15199999999999], "area": 1912.6038822911978, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 626, "image_id": 215, "category_id": 129, "bbox": [340.79999999999995, 102.4, 19.200000000000017, 11.199999999999989], "area": 215.03999999999996, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 627, "image_id": 146, "category_id": 129, "bbox": [355.09955449999995, 241.6519168, 36.26548321999999, 40.77875199999997], "area": 1478.86114638854, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 628, "image_id": 147, "category_id": 129, "bbox": [488.0, 145.59999743999998, 33.60000000000002, 49.599997439999996], "area": 1666.559913984001, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 629, "image_id": 148, "category_id": 129, "bbox": [462.30587392, 185.45455040000002, 60.23532543999994, 88.9578652], "area": 5358.405960769645, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 630, "image_id": 150, "category_id": 129, "bbox": [124.80000000000001, 268.8, 4.800000000000004, 8.0], "area": 38.400000000000034, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 631, "image_id": 150, "category_id": 129, "bbox": [342.39999744, 227.2, 6.4000127999999705, 8.0], "area": 51.200102399999764, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 632, "image_id": 152, "category_id": 129, "bbox": [422.4, 579.19999488, 25.600000000000023, 16.000005120000026], "area": 409.60013107200103, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 633, "image_id": 156, "category_id": 129, "bbox": [177.5722496, 239.52594785, 13.317918719999994, 17.74267275000002], "area": 236.29547356005907, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 634, "image_id": 156, "category_id": 129, "bbox": [393.61850368, 303.10383725, 10.358364160000008, 10.349884249999995], "area": 107.20787007534851, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 635, "image_id": 156, "category_id": 129, "bbox": [477.96533248, 309.0180615, 13.317898240000034, 11.82844849999999], "area": 157.53007346008087, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 636, "image_id": 156, "category_id": 129, "bbox": [825.7110016, 118.2844195, 5.919068159999938, 5.914224249999995], "area": 35.00669644927448, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 637, "image_id": 157, "category_id": 129, "bbox": [380.80000512000004, 171.2, 20.80002048, 30.400000000000006], "area": 632.3206225920002, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 638, "image_id": 158, "category_id": 129, "bbox": [164.70575052, 125.35693312, 36.265483220000014, 34.7374592], "area": 1259.7707437230351, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 639, "image_id": 158, "category_id": 129, "bbox": [462.38496228, 247.69321984, 25.68803979999996, 27.185838079999968], "area": 698.3508905953937, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 640, "image_id": 161, "category_id": 129, "bbox": [150.99778269, 378.53314048, 77.00887605000001, 91.99411200000003], "area": 7084.363168337821, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 641, "image_id": 162, "category_id": 129, "bbox": [573.6964096, 291.57916154, 59.292671999999925, 83.30833846], "area": 4939.573987173759, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 642, "image_id": 162, "category_id": 129, "bbox": [604.14398464, 301.19167691999996, 38.46007808000002, 94.52291923], "area": 3635.358853935335, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 643, "image_id": 163, "category_id": 129, "bbox": [243.2, 156.80000256, 22.400000000000034, 25.599997439999996], "area": 573.4399426560008, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 644, "image_id": 165, "category_id": 129, "bbox": [423.15901984, 435.07980288, 86.55529135999994, 91.34272512000007], "area": 7906.196186377992, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 645, "image_id": 173, "category_id": 129, "bbox": [884.8, 528.0, 16.0, 15.999974400000042], "area": 255.99959040000067, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 646, "image_id": 175, "category_id": 129, "bbox": [489.4117888, 342.2616392, 19.576422400000013, 18.093106800000037], "area": 354.19830124511327, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 647, "image_id": 176, "category_id": 129, "bbox": [68.389892096, 377.06860544, 14.787006464000001, 16.63537151999998], "area": 245.9873461972812, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 648, "image_id": 176, "category_id": 129, "bbox": [497.2129792, 240.28879872, 36.967475200000024, 38.81591808000002], "area": 1434.926488987633, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 649, "image_id": 216, "category_id": 129, "bbox": [30.4, 580.8, 8.0, 17.599979520000034], "area": 140.79983616000027, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 650, "image_id": 216, "category_id": 129, "bbox": [84.8, 446.40000000000003, 3.200000000000003, 6.400005119999975], "area": 20.48001638399994, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 651, "image_id": 216, "category_id": 129, "bbox": [174.4, 446.40000000000003, 4.799999999999983, 6.400005119999975], "area": 30.72002457599977, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 652, "image_id": 216, "category_id": 129, "bbox": [227.2, 441.59999999999997, 3.200000000000017, 4.800000000000068], "area": 15.360000000000301, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 653, "image_id": 216, "category_id": 129, "bbox": [358.4, 531.19999488, 3.2000000000000455, 9.599992320000013], "area": 30.719975424000477, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 654, "image_id": 216, "category_id": 129, "bbox": [427.2, 494.40000000000003, 4.800000000000011, 9.599999999999966], "area": 46.07999999999994, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 655, "image_id": 216, "category_id": 129, "bbox": [572.8, 502.39997952, 6.400000000000091, 6.4000204799999665], "area": 40.960131072000365, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 656, "image_id": 216, "category_id": 129, "bbox": [588.8, 574.39997952, 4.800000000000068, 14.400007679999987], "area": 69.12003686400092, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 657, "image_id": 216, "category_id": 129, "bbox": [657.6, 484.79999999999995, 6.399999999999977, 7.999987200000021], "area": 51.19991807999996, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 658, "image_id": 216, "category_id": 129, "bbox": [739.2, 428.80000512000004, 3.199999999999932, 6.399989759999983], "area": 20.479967231999506, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 659, "image_id": 216, "category_id": 129, "bbox": [784.0, 435.19999487999996, 4.7999999999999545, 3.1999795199999994], "area": 15.359901695999852, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 660, "image_id": 216, "category_id": 129, "bbox": [790.4, 526.39997952, 4.800000000000068, 11.20002047999995], "area": 53.76009830400052, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 661, "image_id": 177, "category_id": 129, "bbox": [332.6710857, 310.073856, 178.4326497, 237.47119104], "area": 42372.613844682106, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 662, "image_id": 179, "category_id": 129, "bbox": [348.88495104, 265.94690882, 67.96460032000005, 84.61943807999998], "area": 5751.12628841019, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 663, "image_id": 180, "category_id": 129, "bbox": [197.85250816, 267.45796436, 57.39233279999999, 52.887162459999985], "area": 3035.317628751986, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 664, "image_id": 181, "category_id": 129, "bbox": [162.44444282, 439.30380288, 99.96582165, 121.94199552000003], "area": 12190.031775797423, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 665, "image_id": 182, "category_id": 129, "bbox": [221.82960472, 202.41860608, 25.30940248000001, 28.27907072000002], "area": 715.7263826128642, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 666, "image_id": 185, "category_id": 129, "bbox": [483.04760832, 68.58552873000001, 9.142886400000009, 13.717104494999994], "area": 125.41392813471444, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 667, "image_id": 185, "category_id": 129, "bbox": [911.23810304, 198.1359515, 10.666680319999955, 10.668861600000008], "area": 113.8013360655233, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 668, "image_id": 185, "category_id": 129, "bbox": [1002.6667008, 80.77851143, 13.714278400000012, 13.717107969999992], "area": 188.1202375434389, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 669, "image_id": 217, "category_id": 129, "bbox": [455.92035328, 80.2293648, 20.392601600000035, 24.798161520000004], "area": 505.6990282898114, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 670, "image_id": 186, "category_id": 129, "bbox": [232.45103104, 184.02638336, 170.16024064, 188.58902307999995], "area": 32090.35354935531, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 671, "image_id": 186, "category_id": 129, "bbox": [650.25518592, 281.3626328, 113.94659328, 111.02420320000002], "area": 12650.829726266476, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 672, "image_id": 189, "category_id": 129, "bbox": [13.612998656, 616.9536343999999, 15.125553152, 25.706419700000065], "area": 388.8238175199709, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 673, "image_id": 189, "category_id": 129, "bbox": [208.73265152, 51.41280515, 15.125544960000013, 19.657835450000004], "area": 297.3354739152571, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 674, "image_id": 189, "category_id": 129, "bbox": [441.66617088, 341.74392439999997, 19.66323712000002, 27.21851610000003], "area": 535.2041361288387, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 675, "image_id": 189, "category_id": 129, "bbox": [476.45495296, 24.194261649999998, 15.125565440000003, 19.657835450000004], "area": 297.33587650772694, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 676, "image_id": 189, "category_id": 129, "bbox": [588.3840512, 9.072847605, 18.150707199999943, 16.63355497], "area": 301.9107859555738, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 677, "image_id": 189, "category_id": 129, "bbox": [617.1226112, 308.47681719999997, 19.663216639999973, 22.6821173], "area": 446.0033863237913, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 678, "image_id": 189, "category_id": 129, "bbox": [668.5495296, 0.0, 15.125503999999978, 15.121412675], "area": 228.71898790136285, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 679, "image_id": 189, "category_id": 129, "bbox": [670.06200832, 306.96468655, 21.175777280000034, 25.70639915], "area": 544.3529830711822, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 680, "image_id": 218, "category_id": 129, "bbox": [673.6047104, 216.08185744, 9.0619903999999, 12.088498960000008], "area": 109.54586152592886, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 681, "image_id": 191, "category_id": 129, "bbox": [390.42142208, 307.7193044, 82.19396095999997, 71.80115641000002], "area": 5901.621446846393, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 682, "image_id": 191, "category_id": 129, "bbox": [575.3578496, 319.68617111000003, 61.645516799999996, 87.18710408999999], "area": 5374.694089923443, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 683, "image_id": 192, "category_id": 129, "bbox": [246.39999744000002, 156.8, 19.199999999999974, 54.39999999999998], "area": 1044.4799999999982, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 684, "image_id": 195, "category_id": 129, "bbox": [270.4800891, 323.20944128, 24.176984260000026, 22.654873599999974], "area": 547.7265224394895, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 685, "image_id": 196, "category_id": 129, "bbox": [388.8, 307.20000000000005, 48.0, 54.39999743999998], "area": 2611.1998771199987, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 686, "image_id": 196, "category_id": 129, "bbox": [595.2, 388.79999999999995, 49.59999999999991, 64.00000512000003], "area": 3174.400253951995, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 687, "image_id": 219, "category_id": 129, "bbox": [144.44444352, 628.822528, 10.111108800000009, 11.538022399999932], "area": 116.66219982323653, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 688, "image_id": 219, "category_id": 129, "bbox": [356.7778032, 285.56618752, 14.444414400000003, 14.422548479999989], "area": 208.32526694921, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 689, "image_id": 199, "category_id": 129, "bbox": [450.38754780000005, 291.84, 148.4231474, 184.32000000000005], "area": 27357.35452876801, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 690, "image_id": 200, "category_id": 129, "bbox": [350.3952896, 208.52655242, 16.613560319999976, 21.154859520000013], "area": 351.45753469664595, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 691, "image_id": 200, "category_id": 129, "bbox": [557.3097472, 113.3296436, 22.654873600000087, 27.199115829999993], "area": 616.1925311604114, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 692, "image_id": 200, "category_id": 129, "bbox": [599.5987968, 264.43583962, 24.16524288000005, 22.665928720000014], "area": 547.727672619569, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 693, "image_id": 200, "category_id": 129, "bbox": [744.58996736, 197.949109, 22.65483264000011, 28.7101782], "area": 650.4242821855796, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 694, "image_id": 220, "category_id": 129, "bbox": [280.0, 208.00000511999997, 16.0, 20.80000512000001], "area": 332.80008192000014, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 695, "image_id": 220, "category_id": 129, "bbox": [891.2, 100.80000000000001, 17.59999999999991, 32.00000255999999], "area": 563.200045055997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 696, "image_id": 202, "category_id": 129, "bbox": [350.5663469, 99.681419264, 22.66593555000005, 22.654861311999994], "area": 513.4936263919815, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 697, "image_id": 205, "category_id": 129, "bbox": [307.43226412, 193.93939456, 49.686018400000016, 65.16363263999997], "area": 3237.72145036188, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 698, "image_id": 108, "category_id": 126, "bbox": [536.61535232, 170.58537084, 72.20514815999991, 78.73171086000002], "area": 5684.834847536575, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 699, "image_id": 108, "category_id": 126, "bbox": [759.79486208, 195.18901737, 26.256414719999952, 26.243914380000007], "area": 689.0710998374506, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 700, "image_id": 108, "category_id": 126, "bbox": [881.2307456, 237.83535201, 18.051276799999982, 16.40245253999998], "area": 296.08521099840243, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 701, "image_id": 109, "category_id": 126, "bbox": [66.486727888, 863.9055872, 55.909289932, 52.861378559999935], "area": 2955.442140116245, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 702, "image_id": 109, "category_id": 126, "bbox": [143.55088417000002, 857.8642944, 40.798670330000014, 48.33040384000003], "area": 1971.816213183928, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 703, "image_id": 109, "category_id": 126, "bbox": [429.1416038, 875.988224, 31.732289280000057, 24.165160960000094], "area": 766.8158780804869, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 704, "image_id": 110, "category_id": 126, "bbox": [133.10487552, 0.0, 744.17722368, 642.0838921], "area": 477824.20819262665, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 705, "image_id": 221, "category_id": 126, "bbox": [66.85349888, 303.15335976, 70.11465216, 63.56443214], "area": 4456.798049244025, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 706, "image_id": 221, "category_id": 126, "bbox": [76.63693824, 149.94683879, 63.59235583999998, 53.78527402], "area": 3420.3322844317463, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 707, "image_id": 221, "category_id": 126, "bbox": [197.29936384, 130.38854646000001, 53.80891647999999, 57.044988079999996], "area": 3069.528999199315, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 708, "image_id": 221, "category_id": 126, "bbox": [229.9108352, 524.8138999, 63.59234559999999, 74.97343932], "area": 4767.736864058068, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 709, "image_id": 221, "category_id": 126, "bbox": [247.84713728, 301.52351070000003, 65.22294272000002, 68.45401119999997], "area": 4464.772051451838, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 710, "image_id": 221, "category_id": 126, "bbox": [260.89171968, 195.58281968999998, 58.70062591999999, 58.67484510999999], "area": 3444.2501337160506, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 711, "image_id": 221, "category_id": 126, "bbox": [366.87896576, 505.25563148000003, 71.74523903999994, 65.19424932], "area": 4677.377001496753, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 712, "image_id": 221, "category_id": 126, "bbox": [386.44586496, 180.91410642, 53.80892671999999, 65.19428120000002], "area": 3508.0342996538743, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 713, "image_id": 221, "category_id": 126, "bbox": [406.0127232, 288.48465446, 63.59237632000003, 60.30471808], "area": 3834.9203260148697, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 714, "image_id": 221, "category_id": 126, "bbox": [520.1528832, 182.54396344999998, 47.286630400000035, 52.15543293000002], "area": 2466.2546803129017, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 715, "image_id": 221, "category_id": 126, "bbox": [521.7834496, 471.02863384999995, 70.11462143999995, 70.08383635000004], "area": 4913.901654743161, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 716, "image_id": 221, "category_id": 126, "bbox": [564.1783296, 285.2249404, 50.54781439999999, 42.37629872000001], "area": 2142.029282657518, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 717, "image_id": 221, "category_id": 126, "bbox": [624.50958336, 158.09610800000002, 53.808906240000056, 55.41514698999997], "area": 2981.8284486607295, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 718, "image_id": 221, "category_id": 126, "bbox": [670.1656064, 531.3333599, 75.00636159999999, 70.08382838], "area": 5256.732973782622, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 719, "image_id": 221, "category_id": 126, "bbox": [699.515904, 291.74436851999997, 60.3312128, 55.41513902], "area": 3343.2625445572035, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 720, "image_id": 221, "category_id": 126, "bbox": [733.757952, 158.09610800000002, 63.59238655999991, 58.674861050000004], "area": 3731.2744452458824, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 721, "image_id": 221, "category_id": 126, "bbox": [812.0254464, 237.95911044, 58.70069760000001, 60.30469417000002], "area": 3539.927616333655, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 722, "image_id": 221, "category_id": 126, "bbox": [883.7706752, 510.1451946, 89.68151039999998, 81.49282758999996], "area": 7308.399865037987, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 723, "image_id": 222, "category_id": 126, "bbox": [328.28234752, 220.13302720000002, 158.11765248, 223.14856879999996], "area": 35283.72785292777, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 724, "image_id": 222, "category_id": 126, "bbox": [658.0706304, 251.79601, 120.47056895999992, 144.74499720000006], "area": 17437.512166797602, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 725, "image_id": 222, "category_id": 126, "bbox": [715.2941056, 434.235012, 18.070579199999997, 31.662976000000018], "area": 572.1683155156994, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 726, "image_id": 112, "category_id": 126, "bbox": [131.29578098, 117.834686464, 189.4647825, 375.07940761599997], "area": 71064.33838419429, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 727, "image_id": 112, "category_id": 126, "bbox": [319.0985854, 66.38573568, 202.76058236, 331.92868864], "area": 67302.05421063752, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 728, "image_id": 112, "category_id": 126, "bbox": [470.338029, 142.72933888, 352.3380231, 346.86547968], "area": 122213.89739208443, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 729, "image_id": 114, "category_id": 126, "bbox": [646.4, 278.4, 92.80000000000007, 118.39998720000001], "area": 10987.51881216001, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 730, "image_id": 116, "category_id": 126, "bbox": [227.2, 406.39997952, 22.400000000000006, 30.400020479999966], "area": 680.9604587519995, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 731, "image_id": 116, "category_id": 126, "bbox": [342.4, 384.0, 24.0, 35.200012799999996], "area": 844.8003071999999, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 732, "image_id": 116, "category_id": 126, "bbox": [376.0, 324.80001024, 51.19999999999999, 57.59999232000001], "area": 2949.119606784, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 733, "image_id": 116, "category_id": 126, "bbox": [734.4, 382.40000256, 33.60000000000002, 41.59997184000004], "area": 1397.7590538240022, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 734, "image_id": 116, "category_id": 126, "bbox": [883.2, 399.99997440000004, 32.0, 35.20002047999995], "area": 1126.4006553599984, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 735, "image_id": 117, "category_id": 126, "bbox": [354.17944122, 339.54623488, 280.83924858, 368.13961216], "area": 103388.05205154704, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 736, "image_id": 118, "category_id": 126, "bbox": [191.485586, 75.4050048, 250.28824600000002, 235.26363136], "area": 58883.721640685, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 737, "image_id": 119, "category_id": 126, "bbox": [193.58181297, 14.88852992, 483.12729738, 522.75283968], "area": 252556.1666323188, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 738, "image_id": 120, "category_id": 126, "bbox": [67.99778616, 19.634217984, 575.7146195400001, 694.749244416], "area": 399977.29692466, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 739, "image_id": 27, "category_id": 126, "bbox": [407.78760192, 96.70796436, 99.68142336, 102.75221384], "area": 10242.48692896229, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 740, "image_id": 223, "category_id": 126, "bbox": [300.55456768, 128.4402673, 54.37167615999999, 55.909287200000016], "area": 3039.881657974834, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 741, "image_id": 223, "category_id": 126, "bbox": [570.9026304, 80.086281022, 55.88203520000002, 37.776549687999996], "area": 2111.030479399366, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 742, "image_id": 122, "category_id": 126, "bbox": [108.74336256, 0.0, 670.5840947199999, 259.90265934], "area": 174286.58952883445, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 743, "image_id": 123, "category_id": 126, "bbox": [100.8, 96.0, 184.0, 284.80000512000004], "area": 52403.20094208, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 744, "image_id": 123, "category_id": 126, "bbox": [537.6, 399.99997440000004, 70.39999999999998, 75.20002559999998], "area": 5294.081802239996, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 745, "image_id": 123, "category_id": 126, "bbox": [574.4, 422.40000000000003, 80.0, 116.80001279999996], "area": 9344.001023999997, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 746, "image_id": 123, "category_id": 126, "bbox": [627.2, 358.40000256, 65.59999999999991, 121.59999744], "area": 7976.959832063989, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 747, "image_id": 123, "category_id": 126, "bbox": [659.2, 190.40000256000002, 281.5999999999999, 406.40000255999996], "area": 114442.24072089596, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 748, "image_id": 123, "category_id": 126, "bbox": [902.4, 271.99999488000003, 97.60000000000002, 180.80001024], "area": 17646.080999424004, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 749, "image_id": 224, "category_id": 126, "bbox": [281.63827712, 566.6884406, 9.183836159999998, 9.18954569999994], "area": 84.39528209363195, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 750, "image_id": 224, "category_id": 126, "bbox": [309.1898368, 565.1568848000001, 7.653212159999953, 6.126321619999956], "area": 46.886039118254274, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 751, "image_id": 224, "category_id": 126, "bbox": [350.51717632, 552.90412205, 7.65324288000005, 6.126370830000047], "area": 46.88660393493786, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 752, "image_id": 224, "category_id": 126, "bbox": [531.1330304, 597.3202596, 6.122598399999902, 4.594779880000005], "area": 28.13199194163977, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 753, "image_id": 125, "category_id": 126, "bbox": [281.60000256, 184.0, 120.00002304000003, 124.80000000000001], "area": 14976.002875392005, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 754, "image_id": 126, "category_id": 126, "bbox": [404.03832832, 96.44693616, 209.38016768, 295.87959576000003], "area": 61951.31937331942, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 755, "image_id": 225, "category_id": 126, "bbox": [422.89086464, 60.442477725, 193.32151295999995, 262.924773835], "area": 50829.015072448005, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 756, "image_id": 225, "category_id": 126, "bbox": [931.870208, 202.48230294, 92.12979199999995, 225.14823165999996], "area": 20742.8597520036, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 757, "image_id": 128, "category_id": 126, "bbox": [347.65010698, 27.45741312, 116.42235791999998, 155.05362944], "area": 18051.709143458727, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 758, "image_id": 211, "category_id": 126, "bbox": [401.56095938, 418.14883328, 50.195148220000036, 70.62067199999996], "area": 3544.815098436004, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 759, "image_id": 211, "category_id": 126, "bbox": [414.574496, 330.802176, 55.77241740000001, 78.05445120000002], "area": 4353.285432254333, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 760, "image_id": 211, "category_id": 126, "bbox": [581.8915904199999, 126.373863424, 35.322503580000024, 57.611606015999996], "area": 2034.9861597497109, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 761, "image_id": 17, "category_id": 126, "bbox": [384.5655552, 226.49668425, 31.670067200000005, 70.96895085000001], "area": 2247.591442532998, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 762, "image_id": 17, "category_id": 126, "bbox": [466.00296448, 261.226152, 18.097192959999973, 70.9689849], "area": 1284.3394139106242, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 763, "image_id": 212, "category_id": 126, "bbox": [265.8753536, 75.93406601, 425.40058624, 490.53407291999997], "area": 208673.4821908629, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 764, "image_id": 129, "category_id": 126, "bbox": [258.26547712, 101.24115147, 223.5280384, 268.96902673], "area": 60122.118935314065, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 765, "image_id": 130, "category_id": 126, "bbox": [132.84324352, 254.66666985, 12.45406208, 17.99274434999999], "area": 224.08275512446914, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 766, "image_id": 130, "category_id": 126, "bbox": [193.7297408, 267.12318561, 11.07025920000001, 19.376814390000003], "area": 214.50635776759012, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 767, "image_id": 130, "category_id": 126, "bbox": [247.69729536, 258.81883985999997, 13.837834240000007, 16.6086915], "area": 229.82831992029705, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 768, "image_id": 130, "category_id": 126, "bbox": [445.57837312, 0.0, 196.49730560000006, 283.73187710999997], "area": 55752.549364945335, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 769, "image_id": 131, "category_id": 126, "bbox": [391.85559552, 38.815883264, 288.34654208, 456.54874521600004], "area": 131644.25197399655, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 770, "image_id": 132, "category_id": 126, "bbox": [136.96861192, 37.209300992, 427.28251928, 570.046496768], "area": 243570.9032457694, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 771, "image_id": 133, "category_id": 126, "bbox": [229.3023172, 0.0, 313.1163156, 309.72838912], "area": 96981.01203797752, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 772, "image_id": 134, "category_id": 126, "bbox": [113.61798144, 23.0162414, 369.61798144, 312.1577426], "area": 115379.11471067909, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 773, "image_id": 134, "category_id": 126, "bbox": [455.91012352, 53.225059400000006, 371.05619968, 274.75636660000004], "area": 101950.05322848089, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 774, "image_id": 135, "category_id": 126, "bbox": [252.2017792, 127.56923449, 267.3946624, 364.48350440999997], "area": 97460.94361208087, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 775, "image_id": 135, "category_id": 126, "bbox": [414.765568, 151.86813202, 138.25515520000005, 192.87252808000002], "area": 26665.621303516768, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 776, "image_id": 136, "category_id": 126, "bbox": [288.768, 145.48466188, 79.87200000000001, 84.01226916], "area": 6710.227962347521, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 777, "image_id": 136, "category_id": 126, "bbox": [686.08, 79.9141092, 106.49599999999998, 67.619636], "area": 7201.220755455998, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 778, "image_id": 207, "category_id": 126, "bbox": [89.38437632, 421.8148748, 23.522211839999997, 10.976583200000047], "area": 258.19351530978616, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 779, "image_id": 207, "category_id": 126, "bbox": [271.28942592, 315.18510309, 36.06738944, 23.52127393000002], "area": 848.35094695823, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 780, "image_id": 140, "category_id": 126, "bbox": [0.0, 0.0, 529.2788736, 764.36018688], "area": 404559.6987365319, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 781, "image_id": 140, "category_id": 126, "bbox": [465.61990656, 0.0, 558.38009344, 768.0], "area": 428835.91176191997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 782, "image_id": 141, "category_id": 126, "bbox": [0.0, 0.0, 1024.0, 647.85398664], "area": 663402.48231936, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 783, "image_id": 142, "category_id": 126, "bbox": [329.72799744, 6.144, 184.32000768, 266.24], "area": 49073.3588447232, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 784, "image_id": 143, "category_id": 126, "bbox": [251.2, 252.80001024, 62.400000000000034, 67.19998464000003], "area": 4193.279041536004, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 785, "image_id": 143, "category_id": 126, "bbox": [476.8, 128.00000255999998, 46.400000000000034, 67.19999232], "area": 3118.0796436480023, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 786, "image_id": 143, "category_id": 126, "bbox": [675.2, 238.40000256000002, 52.799999999999955, 72.0], "area": 3801.5999999999967, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 787, "image_id": 215, "category_id": 126, "bbox": [281.60000256, 99.2, 110.40002303999998, 102.39999999999999], "area": 11304.962359295996, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 788, "image_id": 146, "category_id": 126, "bbox": [306.74557232, 228.05899264, 148.08407128, 135.92920064], "area": 20128.94943660718, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 789, "image_id": 147, "category_id": 126, "bbox": [400.0, 91.19999999999999, 192.0, 174.39999744], "area": 33484.79950848, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 790, "image_id": 150, "category_id": 126, "bbox": [79.999997952, 227.2, 49.60000204800001, 62.400000000000034], "area": 3095.0401277952024, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 791, "image_id": 150, "category_id": 126, "bbox": [313.59999744, 182.4, 46.400002560000004, 72.0], "area": 3340.8001843200004, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 792, "image_id": 150, "category_id": 126, "bbox": [408.0, 3.2, 358.39997952, 635.1999999999999], "area": 227655.66699110396, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 793, "image_id": 152, "category_id": 126, "bbox": [331.2, 481.60002048, 142.40000000000003, 124.79995392000001], "area": 17771.513438208007, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 794, "image_id": 152, "category_id": 126, "bbox": [507.2, 321.6, 118.40000000000003, 64.00002047999998], "area": 7577.602424831999, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 795, "image_id": 226, "category_id": 126, "bbox": [51.20000256, 350.4, 28.799995392000007, 40.0], "area": 1151.9998156800002, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 796, "image_id": 226, "category_id": 126, "bbox": [254.39999999999998, 139.2, 124.80000000000003, 96.0], "area": 11980.800000000003, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 797, "image_id": 155, "category_id": 126, "bbox": [361.5861248, 263.7927922, 48.90301440000002, 69.6531822], "area": 3406.250572132425, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 798, "image_id": 155, "category_id": 126, "bbox": [533.4876672, 222.2973053, 45.939251199999944, 66.6891883], "area": 3063.6513736377974, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 799, "image_id": 227, "category_id": 126, "bbox": [142.96263972, 925.09952, 94.29450808, 97.37891839999998], "area": 9182.297207890459, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 800, "image_id": 227, "category_id": 126, "bbox": [240.29890992, 383.4294272, 182.50549884000003, 231.27485439999992], "area": 42208.93267142036, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 801, "image_id": 156, "category_id": 126, "bbox": [82.8670464, 162.641085, 108.02312191999998, 128.63431029999998], "area": 13895.479784632009, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 802, "image_id": 156, "category_id": 126, "bbox": [358.10403328, 255.790076, 60.67053568, 72.44922249999998], "area": 4395.533138674507, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 803, "image_id": 156, "category_id": 126, "bbox": [460.20809728, 249.87584520000001, 84.34680831999998, 96.10609329999997], "area": 8106.242229959132, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 804, "image_id": 156, "category_id": 126, "bbox": [822.7514368, 79.8419848, 48.83236864000003, 48.792325500000004], "area": 2382.6448256188737, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 805, "image_id": 228, "category_id": 126, "bbox": [493.92941056, 260.84256, 90.35293696000002, 119.11308400000003], "area": 10762.21696976319, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 806, "image_id": 157, "category_id": 126, "bbox": [326.4, 89.6, 135.99997439999999, 164.8], "area": 22412.79578112, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 807, "image_id": 158, "category_id": 126, "bbox": [102.75221384, 37.758113792, 152.61725156, 176.70796492800002], "area": 26968.683936072237, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 808, "image_id": 158, "category_id": 126, "bbox": [456.3407128, 161.60472064, 137.50664834999998, 184.25959423999998], "area": 25336.91923027336, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 809, "image_id": 161, "category_id": 126, "bbox": [134.38802925, 306.14431744, 356.35480365, 316.70102016], "area": 112857.92985487149, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 810, "image_id": 229, "category_id": 126, "bbox": [873.6, 561.5999999999999, 60.799999999999955, 62.400000000000034], "area": 3793.919999999999, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 811, "image_id": 162, "category_id": 126, "bbox": [131.405312, 100.93125, 503.1862272000001, 479.02291154], "area": 241037.73160017197, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 812, "image_id": 162, "category_id": 126, "bbox": [591.32391424, 0.0, 432.67608576, 695.3041461600001], "area": 300841.4763732077, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 813, "image_id": 165, "category_id": 126, "bbox": [245.23989704000002, 144.22536192, 476.0539062399999, 511.99997951999995], "area": 243739.59024529593, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 814, "image_id": 169, "category_id": 126, "bbox": [217.59292664, 341.33334016, 39.28760796000001, 52.86135808], "area": 2076.796312480219, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 815, "image_id": 169, "category_id": 126, "bbox": [267.45796436, 356.4365824, 52.887162459999985, 77.02654975999997], "area": 4073.715650890391, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 816, "image_id": 169, "category_id": 126, "bbox": [462.38496228, 302.06490624, 61.953523019999956, 86.08847871999996], "area": 5333.484548136294, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 817, "image_id": 230, "category_id": 126, "bbox": [197.949109, 148.01179648, 202.48231660000002, 202.38349312000003], "area": 40979.07852853777, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 818, "image_id": 231, "category_id": 126, "bbox": [75.2, 420.79998720000003, 94.39999999999999, 129.59999232], "area": 12234.239275008, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 819, "image_id": 231, "category_id": 126, "bbox": [227.2, 201.60000000000002, 83.19999999999999, 72.0], "area": 5990.4, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 820, "image_id": 231, "category_id": 126, "bbox": [478.4, 363.19999487999996, 83.20000000000005, 81.59999232000001], "area": 6789.119361024004, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 821, "image_id": 231, "category_id": 126, "bbox": [737.6, 401.6000256, 121.60000000000002, 107.19997439999997], "area": 13035.516887039998, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 822, "image_id": 231, "category_id": 126, "bbox": [820.8, 179.19999744, 84.80000000000007, 92.79999744000001], "area": 7869.439782912008, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 823, "image_id": 231, "category_id": 126, "bbox": [900.8, 278.4, 65.60000000000002, 102.40000512000002], "area": 6717.440335872003, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 824, "image_id": 172, "category_id": 126, "bbox": [0.0, 27.921195949999998, 405.8763776, 565.86954705], "area": 229673.08195080678, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 825, "image_id": 172, "category_id": 126, "bbox": [660.945408, 26.059781745, 294.1673472, 370.421232255], "area": 108965.83123900843, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 826, "image_id": 232, "category_id": 126, "bbox": [303.64789728, 145.23517952, 382.78041672, 411.80613632000006], "area": 157631.32446842277, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 827, "image_id": 173, "category_id": 126, "bbox": [880.0, 484.79999999999995, 67.20000000000005, 81.60000000000005], "area": 5483.520000000008, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 828, "image_id": 175, "category_id": 126, "bbox": [420.14117888, 266.873616, 124.98819072000003, 254.81150399999999], "area": 31848.428859602052, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 829, "image_id": 176, "category_id": 126, "bbox": [66.5415168, 323.46569728, 99.81227008, 97.96389888000004], "area": 9777.999133100375, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 830, "image_id": 176, "category_id": 126, "bbox": [425.12633856, 109.0541568, 195.92781823999997, 249.53067520000002], "area": 48890.00077589007, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 831, "image_id": 216, "category_id": 126, "bbox": [1.6, 519.9999744, 51.199999999999996, 97.60005119999997], "area": 4997.122621439998, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 832, "image_id": 216, "category_id": 126, "bbox": [64.0, 423.99997440000004, 25.599999999999994, 32.00002559999996], "area": 819.2006553599988, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 833, "image_id": 216, "category_id": 126, "bbox": [110.4, 369.6, 30.400000000000006, 27.199987199999995], "area": 826.87961088, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 834, "image_id": 216, "category_id": 126, "bbox": [129.6, 447.99997440000004, 30.400000000000006, 19.200038399999954], "area": 583.6811673599987, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 835, "image_id": 216, "category_id": 126, "bbox": [150.4, 428.80000512000004, 27.19999999999999, 35.20002047999995], "area": 957.4405570559983, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 836, "image_id": 216, "category_id": 126, "bbox": [188.8, 377.60000256, 17.599999999999994, 20.799997440000055], "area": 366.07995494400086, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 837, "image_id": 216, "category_id": 126, "bbox": [198.4, 382.40000256, 22.400000000000006, 17.599971840000038], "area": 394.2393692160009, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 838, "image_id": 216, "category_id": 126, "bbox": [204.8, 427.20000000000005, 27.19999999999999, 33.599999999999966], "area": 913.9199999999987, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 839, "image_id": 216, "category_id": 126, "bbox": [257.6, 438.3999744, 38.39999999999998, 33.60000000000005], "area": 1290.2400000000011, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 840, "image_id": 216, "category_id": 126, "bbox": [312.0, 494.40000000000003, 56.0, 67.19999999999993], "area": 3763.199999999996, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 841, "image_id": 216, "category_id": 126, "bbox": [329.6, 371.19998976, 24.0, 19.199984639999983], "area": 460.7996313599996, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 842, "image_id": 216, "category_id": 126, "bbox": [388.8, 441.59999999999997, 22.399999999999977, 24.0], "area": 537.5999999999995, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 843, "image_id": 216, "category_id": 126, "bbox": [388.8, 456.0, 54.39999999999998, 65.60002560000001], "area": 3568.641392639999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 844, "image_id": 216, "category_id": 126, "bbox": [393.6, 417.59999999999997, 24.0, 14.400000000000034], "area": 345.6000000000008, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 845, "image_id": 216, "category_id": 126, "bbox": [444.8, 409.60002048, 16.0, 24.0], "area": 384.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 846, "image_id": 216, "category_id": 126, "bbox": [459.2, 417.59999999999997, 28.80000000000001, 33.60000000000005], "area": 967.6800000000019, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 847, "image_id": 216, "category_id": 126, "bbox": [529.6, 478.39997952, 49.60000000000002, 43.20004607999999], "area": 2142.7222855680006, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 848, "image_id": 216, "category_id": 126, "bbox": [534.4, 427.20000000000005, 30.399999999999977, 19.200000000000017], "area": 583.6800000000001, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 849, "image_id": 216, "category_id": 126, "bbox": [539.2, 408.0, 20.799999999999955, 19.200000000000017], "area": 399.3599999999995, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 850, "image_id": 216, "category_id": 126, "bbox": [571.2, 510.3999744, 99.19999999999993, 91.20004607999999], "area": 9047.044571135993, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 851, "image_id": 216, "category_id": 126, "bbox": [643.2, 367.99999488000003, 19.199999999999932, 20.800005119999966], "area": 399.3600983039979, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 852, "image_id": 216, "category_id": 126, "bbox": [652.8, 460.79999999999995, 48.0, 49.59997440000001], "area": 2380.7987712000004, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 853, "image_id": 216, "category_id": 126, "bbox": [673.6, 366.39999744, 19.199999999999932, 25.600028159999937], "area": 491.5205406719971, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 854, "image_id": 216, "category_id": 126, "bbox": [676.8, 423.99997440000004, 27.200000000000045, 25.600051199999967], "area": 696.3213926400002, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 855, "image_id": 216, "category_id": 126, "bbox": [716.8, 412.79999999999995, 30.40000000000009, 31.99998720000002], "area": 972.7996108800036, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 856, "image_id": 216, "category_id": 126, "bbox": [731.2, 387.19999487999996, 19.199999999999932, 17.600010240000017], "area": 337.9201966079991, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 857, "image_id": 216, "category_id": 126, "bbox": [756.8, 379.20000000000005, 201.60000000000002, 79.99999487999997], "area": 16127.998967807996, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 858, "image_id": 216, "category_id": 126, "bbox": [788.8, 494.40000000000003, 64.0, 67.19999999999993], "area": 4300.799999999996, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 859, "image_id": 177, "category_id": 126, "bbox": [1.5121412674999999, 0.0, 586.7108189825, 987.698688], "area": 579493.5061444207, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 860, "image_id": 233, "category_id": 126, "bbox": [349.18539264, 206.8048224, 193.99182336000007, 177.65781696], "area": 34464.16384622754, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 861, "image_id": 233, "category_id": 126, "bbox": [623.545344, 227.62410047999998, 192.60620800000004, 181.82169792000002], "area": 35019.9877684927, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 862, "image_id": 179, "category_id": 126, "bbox": [274.87905792, 51.37610692, 302.06491648, 406.47567508000003], "area": 122782.04084419183, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 863, "image_id": 180, "category_id": 126, "bbox": [1.5103244288, 232.70353667999998, 300.5545818112, 311.27874577000006], "area": 93556.25326161721, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 864, "image_id": 180, "category_id": 126, "bbox": [672.0944128, 3.0221238520999996, 351.9055872, 445.76327026789994], "area": 156866.58537581764, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 865, "image_id": 182, "category_id": 126, "bbox": [43.174889535999995, 78.88371712, 218.852020224, 251.53488896000002], "area": 55048.91860571552, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 866, "image_id": 183, "category_id": 126, "bbox": [18.11973474, 58.81590784, 449.97337866000004, 450.92194304], "area": 202902.8702216409, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 867, "image_id": 184, "category_id": 126, "bbox": [213.0349824, 85.89026324999999, 245.25872639999994, 366.82300035000003], "area": 89966.54188006774, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 868, "image_id": 185, "category_id": 126, "bbox": [393.14285568, 21.337719725, 115.80953599999998, 89.92324567499999], "area": 10413.969357235754, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 869, "image_id": 234, "category_id": 126, "bbox": [478.69919232, 422.6698677, 43.013519359999975, 47.27230021000005], "area": 2033.348000274568, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 870, "image_id": 217, "category_id": 126, "bbox": [402.02560512, 17.504587296, 116.52912128000003, 112.321100544], "area": 13088.679147594854, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 871, "image_id": 186, "category_id": 126, "bbox": [0.0, 0.0, 553.0207232, 485.16043879999995], "area": 268303.77673320536, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 872, "image_id": 186, "category_id": 126, "bbox": [533.270016, 1.5208791916000002, 490.72998399999994, 547.5164880084], "area": 268682.7574000983, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 873, "image_id": 235, "category_id": 126, "bbox": [465.8670592, 238.9183278, 143.69275904, 176.92051220000005], "area": 25422.196528787987, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 874, "image_id": 189, "category_id": 126, "bbox": [0.0, 529.2494538999999, 84.70309888, 133.06841509999998], "area": 11271.307122020184, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 875, "image_id": 189, "category_id": 126, "bbox": [196.63219712, 12.097130139999999, 75.62779647999997, 111.89845310999999], "area": 8462.6334382299, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 876, "image_id": 189, "category_id": 126, "bbox": [358.47561216, 279.74614305, 116.46676991999999, 170.87192794999999], "area": 19900.901518339462, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 877, "image_id": 189, "category_id": 126, "bbox": [467.3796096, 0.0, 99.82863359999999, 107.36202965000001], "area": 10717.804720482187, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 878, "image_id": 189, "category_id": 126, "bbox": [470.4047104, 284.28256925, 134.61744639999995, 137.60482075000004], "area": 18524.009581694732, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 879, "image_id": 189, "category_id": 126, "bbox": [564.1831424, 0.0, 80.16542720000007, 57.46136885], "area": 4606.415181357027, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 880, "image_id": 189, "category_id": 126, "bbox": [603.5095552, 249.503304, 66.55245312, 114.92272399999995], "area": 7648.389201432695, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 881, "image_id": 189, "category_id": 126, "bbox": [651.9113728, 0.0, 55.964569600000004, 33.267109255], "area": 1861.7794512922517, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 882, "image_id": 189, "category_id": 126, "bbox": [665.5243264, 247.9911665, 101.34128640000006, 113.41058650000001], "area": 11493.174727288482, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 883, "image_id": 218, "category_id": 126, "bbox": [661.5221248, 170.75, 80.04720639999994, 84.6194654], "area": 6773.551812331453, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 884, "image_id": 191, "category_id": 126, "bbox": [10.274247168, 210.27485216, 522.274258432, 352.16763765], "area": 183928.09179740306, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 885, "image_id": 191, "category_id": 126, "bbox": [369.87292672, 39.319689870000005, 376.72240128, 482.0935564299999], "area": 181615.44221992476, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 886, "image_id": 197, "category_id": 126, "bbox": [0.0, 207.01548322, 66.45427712, 89.15265934000001], "area": 5924.575529765318, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 887, "image_id": 197, "category_id": 126, "bbox": [141.97050368, 208.52655242, 95.15043839999998, 101.24114463999999], "area": 9633.139296613808, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 888, "image_id": 197, "category_id": 126, "bbox": [211.44543232, 261.41371488, 42.28908031999998, 49.865051380000004], "area": 2108.747162969746, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 889, "image_id": 197, "category_id": 126, "bbox": [258.26547712, 200.97123374, 83.06786303999996, 90.66372853999998], "area": 7531.242185056454, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 890, "image_id": 197, "category_id": 126, "bbox": [463.66961664, 241.7699109, 69.47491840000004, 86.13053459999996], "area": 5983.911863083377, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 891, "image_id": 197, "category_id": 126, "bbox": [626.7846656, 244.79203564, 69.47491839999998, 81.59734066000003], "area": 5668.968584010502, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 892, "image_id": 197, "category_id": 126, "bbox": [853.3332992, 361.1438313, 169.1564032, 275.0132284], "area": 46520.24854856409, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 893, "image_id": 197, "category_id": 126, "bbox": [879.0088704, 267.45796436, 143.48083200000008, 99.73007544000002], "area": 14309.354199553978, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 894, "image_id": 197, "category_id": 126, "bbox": [921.29792, 139.01769706000002, 81.55754495999997, 93.68583961999998], "area": 7640.787076923494, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 895, "image_id": 198, "category_id": 126, "bbox": [181.32742976, 113.27433728, 16.62167923999999, 27.185838079999996], "area": 451.8742804363372, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 896, "image_id": 198, "category_id": 126, "bbox": [232.70353667999998, 0.0, 58.931425600000004, 39.268435968], "area": 2314.144912676556, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 897, "image_id": 198, "category_id": 126, "bbox": [380.7875943, 0.0, 66.48672379, 48.33038336], "area": 3213.328849121132, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 898, "image_id": 198, "category_id": 126, "bbox": [460.87389308, 0.0, 40.798690820000004, 31.716813824], "area": 1294.004481000878, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 899, "image_id": 198, "category_id": 126, "bbox": [557.5818711000001, 45.309733888, 28.710178199999962, 42.289089536000006], "area": 1214.127296494314, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 900, "image_id": 198, "category_id": 126, "bbox": [580.2477725, 60.4129792, 45.33187110000002, 43.79940864], "area": 1985.5091467247073, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 901, "image_id": 198, "category_id": 126, "bbox": [663.3561687, 107.23303936, 18.132762099999987, 33.22713599999999], "area": 602.4997523523449, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 902, "image_id": 219, "category_id": 126, "bbox": [89.55555648, 552.38311936, 115.55555231999999, 100.95769599999994], "area": 11666.222322234647, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 903, "image_id": 219, "category_id": 126, "bbox": [335.111088, 162.97465856, 108.3333264, 177.39716608], "area": 19218.02509537965, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 904, "image_id": 199, "category_id": 126, "bbox": [0.0, 0.0, 766.0, 1024.0], "area": 784384.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 905, "image_id": 200, "category_id": 126, "bbox": [348.88495104, 149.59513364999998, 205.40409856000002, 164.70575735], "area": 33831.23761611885, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 906, "image_id": 200, "category_id": 126, "bbox": [521.06194944, 46.84291981, 96.66076671999997, 137.50663469000003], "area": 13291.496738222346, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 907, "image_id": 200, "category_id": 126, "bbox": [561.84070144, 190.39380398, 101.19177216000003, 131.46239204], "area": 13302.912422920279, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 908, "image_id": 200, "category_id": 126, "bbox": [711.3628672, 129.95132967, 104.21232640000005, 132.97345441], "area": 13857.473033510443, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 909, "image_id": 201, "category_id": 126, "bbox": [122.336280576, 27.19911583, 193.321529344, 197.94911582999998], "area": 38267.8258045482, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 910, "image_id": 201, "category_id": 126, "bbox": [582.985216, 13.599557915, 92.12983295999993, 145.061943125], "area": 13364.532588959259, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 911, "image_id": 201, "category_id": 126, "bbox": [727.97637632, 0.0, 163.11507968, 172.26105554], "area": 28098.375800168007, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 912, "image_id": 220, "category_id": 126, "bbox": [208.0, 128.00000255999998, 107.19999999999999, 126.39999743999999], "area": 13550.079725567997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 913, "image_id": 220, "category_id": 126, "bbox": [401.6, 0.0, 169.60000000000002, 100.80000000000001], "area": 17095.680000000004, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 914, "image_id": 220, "category_id": 126, "bbox": [892.8, 1.6000000511999999, 131.20000000000005, 177.5999973888], "area": 23301.11965741057, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 915, "image_id": 99, "category_id": 126, "bbox": [539.6998144, 257.46596804999996, 37.528821759999914, 60.79057209000003], "area": 2281.398544654037, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 916, "image_id": 202, "category_id": 126, "bbox": [302.21239204, 22.654867456, 117.86282388000002, 135.929206784], "area": 16021.000159330697, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 917, "image_id": 203, "category_id": 126, "bbox": [425.9115008, 67.99778616, 241.65191679999998, 359.63274844], "area": 86905.9430045782, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 918, "image_id": 236, "category_id": 126, "bbox": [351.88341999999994, 216.1281024, 64.11431250000001, 70.05532160000001], "area": 4491.548781350401, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 919, "image_id": 205, "category_id": 126, "bbox": [0.0, 283.92727552, 57.44946058, 74.47272447999995], "area": 4278.417849298959, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 920, "image_id": 205, "category_id": 126, "bbox": [88.5032293, 246.69089792, 91.60860183999998, 107.05455103999998], "area": 9807.117741383314, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 921, "image_id": 205, "category_id": 126, "bbox": [156.8215046, 234.27878912, 91.60860184, 86.88484352], "area": 7959.399035954385, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 922, "image_id": 205, "category_id": 126, "bbox": [198.74408804, 0.0, 273.27308675999996, 358.4], "area": 97941.07429478398, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 923, "image_id": 108, "category_id": 117, "bbox": [612.1025536, 237.83535201, 47.58978560000003, 34.44514065], "area": 1639.2368584953456, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 924, "image_id": 108, "category_id": 117, "bbox": [658.0512768, 252.59756091, 26.256384000000025, 24.603662670000002], "area": 646.003214869986, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 925, "image_id": 108, "category_id": 117, "bbox": [871.38464768, 259.15852739999997, 14.769223680000096, 21.32317539000003], "area": 314.92674690278375, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 926, "image_id": 108, "category_id": 117, "bbox": [902.56408576, 259.15852739999997, 6.564147199999979, 21.32317539000003], "area": 139.9684620313772, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 927, "image_id": 108, "category_id": 117, "bbox": [996.1025536, 264.07925832, 27.897446400000035, 36.08537622000003], "area": 1006.6898489212869, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 928, "image_id": 109, "category_id": 117, "bbox": [99.7300891, 940.93212672, 36.26548321999999, 83.06787327999996], "area": 3012.496564556924, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 929, "image_id": 109, "category_id": 117, "bbox": [427.6305346, 943.9527936, 66.48670330000004, 55.8819840000001], "area": 3715.4088900233564, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 930, "image_id": 110, "category_id": 117, "bbox": [0.0, 327.09932948, 199.6573184, 328.61370192000004], "area": 65610.13051484415, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 931, "image_id": 110, "category_id": 117, "bbox": [565.695744, 636.02650524, 121.00439040000003, 49.97349475999999], "area": 6047.012269591394, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 932, "image_id": 237, "category_id": 117, "bbox": [146.5014784, 306.74557232, 123.84660480000002, 89.15264567999998], "area": 11041.252476405387, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 933, "image_id": 237, "category_id": 117, "bbox": [348.88495104, 306.74557232, 42.289090560000034, 95.19688832999996], "area": 4025.7898316175792, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 934, "image_id": 237, "category_id": 117, "bbox": [439.50442496, 232.70353667999998, 55.88201472000003, 200.9712474], "area": 11230.678205503567, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 935, "image_id": 237, "category_id": 117, "bbox": [566.37170688, 213.0597327, 80.04717568000001, 199.46017819999997], "area": 15966.223925539505, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 936, "image_id": 222, "category_id": 117, "bbox": [156.61176832, 476.452336, 197.27058943999998, 203.547664], "area": 40153.967656415065, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 937, "image_id": 222, "category_id": 117, "bbox": [515.0117888, 443.281596, 99.3882112, 161.3303672], "area": 16034.336608247155, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 938, "image_id": 222, "category_id": 117, "bbox": [606.8706304, 428.20399000000003, 176.18821120000007, 131.175162], "area": 23111.517146650225, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 939, "image_id": 222, "category_id": 117, "bbox": [688.1882112, 456.85145159999996, 22.588282880000065, 40.70953280000002], "area": 919.5584427990415, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 940, "image_id": 222, "category_id": 117, "bbox": [703.2470528, 477.96007960000003, 27.10589440000001, 36.18626119999994], "area": 980.8609748180161, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 941, "image_id": 222, "category_id": 117, "bbox": [739.38824192, 437.25054, 66.25881087999994, 46.74057520000004], "area": 3096.974932599218, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 942, "image_id": 111, "category_id": 117, "bbox": [40.798671696, 379.09143552, 74.04203427400002, 644.90856448], "area": 47750.34203482431, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 943, "image_id": 111, "category_id": 117, "bbox": [196.43805346, 436.48376832, 457.85176834000004, 549.7581158400001], "area": 251707.72549661063, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 944, "image_id": 112, "category_id": 117, "bbox": [222.7042202, 335.2479744, 561.7464930000001, 688.7520256], "area": 386904.0349274463, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 945, "image_id": 112, "category_id": 117, "bbox": [405.52112342, 697.0502144, 151.23942708, 326.94978560000004], "area": 49447.69825807284, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 946, "image_id": 112, "category_id": 117, "bbox": [761.1831192000001, 456.40195072, 54.84504535999999, 92.94005248000002], "area": 5097.301394026381, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 947, "image_id": 117, "category_id": 117, "bbox": [175.30094406, 848.8655872, 103.74951839999999, 175.13441279999995], "area": 18170.110983266786, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 948, "image_id": 117, "category_id": 117, "bbox": [729.8242776, 780.9563648, 85.86172419000003, 243.04363520000004], "area": 20868.145571677385, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 949, "image_id": 119, "category_id": 117, "bbox": [52.94545893, 666.6753024, 150.56363322, 357.32469760000004], "area": 53800.10470989382, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 950, "image_id": 119, "category_id": 117, "bbox": [643.6181934, 552.52992, 175.38180660000003, 471.47008000000005], "area": 82687.27438824656, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 951, "image_id": 120, "category_id": 117, "bbox": [0.0, 596.5782016, 330.92257023999997, 427.42179839999994], "area": 141443.5201031311, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 952, "image_id": 120, "category_id": 117, "bbox": [433.67478408, 487.83480832, 161.68361212000005, 536.16519168], "area": 86689.12488383461, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 953, "image_id": 238, "category_id": 117, "bbox": [0.0, 0.0, 235.20000000000002, 201.6], "area": 47416.32, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 954, "image_id": 239, "category_id": 117, "bbox": [0.0, 268.95547392000003, 351.02904282, 181.89473279999996], "area": 63850.333948783635, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 955, "image_id": 239, "category_id": 117, "bbox": [284.24031264, 0.0, 243.85646466, 379.33602816], "area": 92503.5427452638, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 956, "image_id": 239, "category_id": 117, "bbox": [559.16126982, 0.0, 121.15162097999996, 289.16599296000004], "area": 35032.92877939526, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 957, "image_id": 239, "category_id": 117, "bbox": [947.4677730000001, 0.0, 13.979004299999923, 320.2591104], "area": 4476.9034813957505, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 958, "image_id": 122, "category_id": 117, "bbox": [95.15044352, 0.0, 385.13273344, 683.0], "area": 263045.65693952, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 959, "image_id": 122, "category_id": 117, "bbox": [459.13864192, 0.0, 330.76107264, 683.0], "area": 225909.81261312, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 960, "image_id": 240, "category_id": 117, "bbox": [286.98089472, 228.22125144, 100.00848896000002, 382.54229747999995], "area": 38257.477134261615, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 961, "image_id": 240, "category_id": 117, "bbox": [834.85351936, 189.09761034, 158.70910464000008, 236.91541506000002], "area": 37600.63339958659, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 962, "image_id": 123, "category_id": 117, "bbox": [32.0, 323.19998976, 289.6, 148.79998464000005], "area": 43092.47555174401, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 963, "image_id": 123, "category_id": 117, "bbox": [377.6, 321.6, 51.19999999999999, 171.1999872], "area": 8765.439344639999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 964, "image_id": 123, "category_id": 117, "bbox": [563.2, 539.2000128, 35.19999999999993, 134.40000768], "area": 4730.880270335991, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 965, "image_id": 123, "category_id": 117, "bbox": [596.8, 500.80000512000004, 118.40000000000009, 267.19999487999996], "area": 31636.479393792022, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 966, "image_id": 123, "category_id": 117, "bbox": [811.2, 456.0, 212.79999999999995, 312.0], "area": 66393.59999999999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 967, "image_id": 30, "category_id": 117, "bbox": [575.3905152, 332.96715487, 198.29838847999997, 81.21151913], "area": 16104.11336949169, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 968, "image_id": 241, "category_id": 117, "bbox": [515.2, 0.0, 152.0, 39.999998976], "area": 6079.999844352, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 969, "image_id": 241, "category_id": 117, "bbox": [625.6, 0.0, 212.79999999999995, 84.799999488], "area": 18045.439891046397, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 970, "image_id": 241, "category_id": 117, "bbox": [944.0, 1.6000000511999999, 80.0, 214.3999999488], "area": 17151.999995904, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 971, "image_id": 125, "category_id": 117, "bbox": [185.59999488, 363.2, 281.60001791999997, 328.00000000000006], "area": 92364.80587776001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 972, "image_id": 125, "category_id": 117, "bbox": [476.80000512000004, 344.0, 110.40000767999999, 184.0], "area": 20313.60141312, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 973, "image_id": 126, "category_id": 117, "bbox": [106.32588288, 286.07143887, 328.79234048, 349.82447067], "area": 115019.6064687664, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 974, "image_id": 126, "category_id": 117, "bbox": [436.75400192, 235.39590954, 390.95205888000004, 478.96533522], "area": 187252.4839364084, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 975, "image_id": 225, "category_id": 117, "bbox": [0.0, 0.0, 951.504384, 683.0], "area": 649877.4942719999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 976, "image_id": 212, "category_id": 117, "bbox": [914.61127168, 420.67473993, 109.38872832000004, 270.32526007], "area": 29570.536431830584, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 977, "image_id": 131, "category_id": 117, "bbox": [136.77978624, 561.9061248, 236.59203584000002, 460.24548352], "area": 108890.41593216198, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 978, "image_id": 131, "category_id": 117, "bbox": [861.34295552, 574.84478464, 110.90254847999995, 449.15521536000006], "area": 49812.45804650722, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 979, "image_id": 133, "category_id": 117, "bbox": [15.813952704, 350.8148224, 309.953488856, 670.0246528], "area": 207676.47875489006, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 980, "image_id": 133, "category_id": 117, "bbox": [47.441858859999996, 0.0, 23.720931300000004, 34.765430784], "area": 824.6683952421694, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 981, "image_id": 133, "category_id": 117, "bbox": [134.41859948, 0.0, 26.883725879999993, 30.024690688], "area": 807.1755540879803, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 982, "image_id": 133, "category_id": 117, "bbox": [518.6976827999999, 609.975296, 145.48839360000008, 410.8641792000001], "area": 59775.969419590576, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 983, "image_id": 134, "category_id": 117, "bbox": [50.337078272, 281.94895560000003, 37.393261568, 64.73319560000002], "area": 2420.5853152033073, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 984, "image_id": 242, "category_id": 117, "bbox": [280.8135608, 137.3538432, 372.44745408, 271.7538432], "area": 101214.0270362955, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 985, "image_id": 243, "category_id": 117, "bbox": [162.056, 63.784511488, 251.70399999999998, 177.562294272], "area": 44693.13971743949, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 986, "image_id": 243, "category_id": 117, "bbox": [386.176, 65.50841344, 199.98400000000004, 156.8754176], "area": 31372.573513318403, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 987, "image_id": 243, "category_id": 117, "bbox": [574.092, 117.22558464, 17.240000000000016, 43.09764096000001], "area": 743.0033301504009, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 988, "image_id": 243, "category_id": 117, "bbox": [593.0559999999999, 91.36700416, 31.03200000000003, 65.50842367999999], "area": 2032.8574036377615, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 989, "image_id": 243, "category_id": 117, "bbox": [627.536, 179.28619008, 56.89200000000005, 10.343434239999993], "area": 588.4586607820802, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 990, "image_id": 243, "category_id": 117, "bbox": [636.156, 81.02356992, 17.240000000000016, 39.64983296], "area": 683.5631202304006, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 991, "image_id": 243, "category_id": 117, "bbox": [648.224, 103.4343424, 89.64799999999998, 58.6127872], "area": 5254.519146905599, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 992, "image_id": 243, "category_id": 117, "bbox": [684.428, 32.75420672, 65.51199999999996, 48.2693632], "area": 3162.222521958398, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 993, "image_id": 243, "category_id": 117, "bbox": [722.356, 91.36700416, 74.13200000000006, 46.54545920000001], "area": 3450.5079814144037, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 994, "image_id": 243, "category_id": 117, "bbox": [730.976, 105.1582464, 17.240000000000016, 44.821555200000006], "area": 772.7236116480009, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 995, "image_id": 243, "category_id": 117, "bbox": [755.112, 29.306396672, 44.82400000000004, 74.127945728], "area": 3322.711039311875, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 996, "image_id": 243, "category_id": 117, "bbox": [756.836, 6.8956227584, 62.06399999999996, 75.85185116160001], "area": 4707.66929049354, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 997, "image_id": 243, "category_id": 117, "bbox": [812.0039999999999, 137.91246336, 48.27200000000004, 22.410762239999997], "area": 1081.8123148492807, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 998, "image_id": 136, "category_id": 117, "bbox": [221.184, 254.08587744, 75.77599999999998, 55.32517616], "area": 4192.320548700159, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 999, "image_id": 136, "category_id": 117, "bbox": [380.928, 221.30061112, 40.95999999999998, 75.81594924], "area": 3105.4212808703983, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1000, "image_id": 136, "category_id": 117, "bbox": [520.192, 143.43558524, 196.60799999999995, 168.02453164000002], "area": 33034.967116677115, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1001, "image_id": 136, "category_id": 117, "bbox": [821.248, 88.11043579999999, 182.27199999999993, 225.39877108000002], "area": 41083.88480229375, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1002, "image_id": 138, "category_id": 117, "bbox": [128.3615454, 272.4881408, 248.05, 303.72877312], "area": 75339.92217241602, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1003, "image_id": 138, "category_id": 117, "bbox": [535.9961816, 234.30508544, 275.80381840000007, 170.08813056], "area": 46910.955872965744, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1004, "image_id": 207, "category_id": 117, "bbox": [294.811648, 316.75320325, 54.885130240000024, 34.497871869999976], "area": 1893.420190587782, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1005, "image_id": 141, "category_id": 117, "bbox": [0.0, 0.0, 1024.0, 681.0], "area": 697344.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 1006, "image_id": 244, "category_id": 117, "bbox": [0.0, 0.0, 840.20513792, 548.90078972], "area": 461189.26373108954, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 1007, "image_id": 142, "category_id": 117, "bbox": [155.64800256, 335.872, 98.30399232, 675.8399999999999], "area": 66437.77016954879, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1008, "image_id": 142, "category_id": 117, "bbox": [534.528, 329.728, 98.304, 606.2080000000001], "area": 59592.67123200001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1009, "image_id": 245, "category_id": 117, "bbox": [49.951217664, 2.7747747720000002, 299.707324416, 621.549572028], "area": 186282.95922442176, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1010, "image_id": 245, "category_id": 117, "bbox": [826.9702144, 0.0, 194.25470464, 760.2882672], "area": 147689.5727861934, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1011, "image_id": 145, "category_id": 117, "bbox": [152.61725839, 297.53393152, 90.66372170999998, 573.92328704], "area": 52034.02117908299, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1012, "image_id": 145, "category_id": 117, "bbox": [460.87389308, 332.27139072, 83.10838937, 570.90265088], "area": 47446.79980170021, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1013, "image_id": 215, "category_id": 117, "bbox": [152.00000255999998, 248.0, 126.39999743999999, 180.8], "area": 22853.119537152, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1014, "image_id": 215, "category_id": 117, "bbox": [409.60002048, 232.0, 28.799953920000007, 176.0], "area": 5068.791889920001, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1015, "image_id": 146, "category_id": 117, "bbox": [194.92699792000002, 380.60177408, 488.07300208, 286.96164352], "area": 140058.23083461716, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1016, "image_id": 151, "category_id": 117, "bbox": [303.13357312, 231.04693248, 72.08665087999998, 393.70396672000004], "area": 28380.800399015774, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1017, "image_id": 151, "category_id": 117, "bbox": [489.81948416, 253.22742784, 168.20219903999998, 290.19493376], "area": 48811.426008699134, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1018, "image_id": 152, "category_id": 117, "bbox": [369.6, 604.8, 169.60000000000002, 115.20000000000002], "area": 19537.920000000006, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1019, "image_id": 152, "category_id": 117, "bbox": [393.6, 300.80001024, 227.19999999999993, 142.40000256000002], "area": 32353.280581631992, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1020, "image_id": 152, "category_id": 117, "bbox": [414.4, 423.99997440000004, 46.400000000000034, 41.600025599999924], "area": 1930.241187839998, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1021, "image_id": 152, "category_id": 117, "bbox": [440.0, 438.3999744, 208.0, 195.20002559999998], "area": 40601.605324799995, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1022, "image_id": 246, "category_id": 117, "bbox": [28.696165376, 409.4977725, 30.206491648, 54.39821799999999], "area": 1643.1793176830831, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1023, "image_id": 246, "category_id": 117, "bbox": [141.97050368, 385.3208019, 15.103242239999986, 49.86505821], "area": 753.1240534573301, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1024, "image_id": 246, "category_id": 117, "bbox": [166.13569536, 386.8318711, 39.26843392000001, 46.842912979999966], "area": 1839.4478329754393, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1025, "image_id": 246, "category_id": 117, "bbox": [264.3067904, 265.94690882, 58.90265088000001, 78.57519542999998], "area": 4628.287304241061, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1026, "image_id": 246, "category_id": 117, "bbox": [484.81415168, 281.05751885999996, 22.654873599999974, 90.66372853999998], "area": 2053.97531017841, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1027, "image_id": 246, "category_id": 117, "bbox": [558.8200448, 288.61283754, 19.634237439999993, 114.84069914000001], "area": 2254.8095546903633, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1028, "image_id": 246, "category_id": 117, "bbox": [567.8820352, 281.05751885999996, 70.98521600000004, 84.61947906000003], "area": 6006.7319988815825, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1029, "image_id": 246, "category_id": 117, "bbox": [579.9646208, 285.5907128, 12.082585600000016, 96.70795070000001], "area": 1168.4820925333315, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1030, "image_id": 246, "category_id": 117, "bbox": [587.5162112, 222.12610692, 90.61949440000001, 122.39599732999997], "area": 11091.463394628348, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1031, "image_id": 246, "category_id": 117, "bbox": [726.466048, 225.14823166, 81.55757568000001, 81.59734066000003], "area": 6654.881286164695, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1032, "image_id": 246, "category_id": 117, "bbox": [962.0767232, 423.09736115, 34.73740800000007, 43.82076775], "area": 1522.2198882049954, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1033, "image_id": 154, "category_id": 117, "bbox": [0.0, 284.0796436, 360.96755712, 356.61062369999996], "area": 128724.86568002857, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1034, "image_id": 154, "category_id": 117, "bbox": [288.47198208, 453.3185744, 111.76400896000001, 120.88496228000002], "area": 13510.588007391187, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1035, "image_id": 154, "category_id": 117, "bbox": [592.0472064, 305.23451678, 229.56933119999997, 374.74337897000004], "area": 86029.58688177103, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1036, "image_id": 228, "category_id": 117, "bbox": [412.61175808, 428.20399000000003, 123.48234752000002, 135.69845399999997], "area": 16756.363654754732, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1037, "image_id": 228, "category_id": 117, "bbox": [618.9176832, 405.5876048, 155.1058943999999, 153.7915472], "area": 23853.9754796158, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1038, "image_id": 247, "category_id": 117, "bbox": [99.681419264, 0.0, 125.35692697600001, 341.5], "area": 42809.390562304005, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1039, "image_id": 157, "category_id": 117, "bbox": [150.40000512, 32.0, 148.79998464000002, 278.4], "area": 41425.915723776, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1040, "image_id": 157, "category_id": 117, "bbox": [363.19999487999996, 17.6, 161.60001024000002, 307.2], "area": 49643.523145728, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1041, "image_id": 248, "category_id": 117, "bbox": [163.19468815000002, 330.76105216, 157.15043866999997, 125.35693312000001], "area": 19699.89703013385, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1042, "image_id": 248, "category_id": 117, "bbox": [395.898218, 486.32449024, 225.14824531999997, 116.29495295999999], "area": 26183.604598515936, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1043, "image_id": 159, "category_id": 117, "bbox": [136.0, 176.00000255999998, 100.80000000000001, 139.19999232], "area": 14031.359225856002, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1044, "image_id": 159, "category_id": 117, "bbox": [238.4, 372.80001024, 348.80000000000007, 249.59996928000004], "area": 87060.46928486403, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1045, "image_id": 159, "category_id": 117, "bbox": [332.8, 177.60000000000002, 163.2, 107.20000512], "area": 17495.040835583997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1046, "image_id": 249, "category_id": 117, "bbox": [4479.292195200001, 1888.5663167999999, 419.6812780799995, 524.6019168000003], "area": 220165.60292584167, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1047, "image_id": 160, "category_id": 117, "bbox": [548.24779776, 459.36281705, 63.433584639999935, 139.01771755], "area": 8818.392152667528, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1048, "image_id": 160, "category_id": 117, "bbox": [637.3569536, 451.80753935, 57.39233279999996, 86.13050045000001], "area": 4943.230346056948, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1049, "image_id": 160, "category_id": 117, "bbox": [691.72864, 657.3119601999999, 24.16516095999998, 25.688039800000034], "area": 620.7556165138865, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1050, "image_id": 160, "category_id": 117, "bbox": [699.28020992, 338.47787525999996, 10.57225728000003, 25.688053460000027], "area": 271.5807102015153, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1051, "image_id": 160, "category_id": 117, "bbox": [750.63129088, 332.43362578, 12.082575359999964, 48.35396852000001], "area": 584.2404685979661, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1052, "image_id": 160, "category_id": 117, "bbox": [856.3539968, 522.8274160999999, 67.96462080000003, 67.99779982000004], "area": 4621.4446800006135, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1053, "image_id": 160, "category_id": 117, "bbox": [869.94688, 648.2455723200001, 28.69616640000004, 33.24335847999998], "area": 953.9569466369319, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1054, "image_id": 160, "category_id": 117, "bbox": [943.9527936, 537.9380398000001, 45.30974720000006, 48.354009499999954], "area": 2190.907946551399, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1055, "image_id": 160, "category_id": 117, "bbox": [987.75220224, 627.0907128, 36.247797760000026, 55.9092872], "area": 2026.5885353313581, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1056, "image_id": 250, "category_id": 117, "bbox": [63.433627648, 262.92478408, 70.98525491199999, 105.77432492000005], "area": 7508.417417590916, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1057, "image_id": 250, "category_id": 117, "bbox": [194.83186176, 278.03539412000003, 43.799408639999996, 104.26326938], "area": 4566.6695417170195, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1058, "image_id": 250, "category_id": 117, "bbox": [247.69321984, 302.21239204, 226.54866431999997, 288.61282388], "area": 65384.8497556374, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1059, "image_id": 250, "category_id": 117, "bbox": [425.9115008, 320.34512682, 158.58411520000004, 213.05972587], "area": 33787.88811184851, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1060, "image_id": 164, "category_id": 117, "bbox": [144.0, 307.2, 153.60000000000002, 358.40000000000003], "area": 55050.24000000001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1061, "image_id": 164, "category_id": 117, "bbox": [539.2000128, 233.6, 96.0, 544.0], "area": 52224.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1062, "image_id": 165, "category_id": 117, "bbox": [88.95957032000001, 800.4506624, 175.51480816, 221.14559999999994], "area": 38814.327559428086, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1063, "image_id": 165, "category_id": 117, "bbox": [757.3584872, 824.48828416, 115.40700459999996, 199.51171583999997], "area": 23025.04950770076, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1064, "image_id": 251, "category_id": 117, "bbox": [333.98153216, 385.96602870000004, 20.480020480000007, 33.082819419999964], "area": 677.5368192577413, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1065, "image_id": 251, "category_id": 117, "bbox": [420.62768128, 401.71974234000004, 47.261542399999996, 143.35880005999996], "area": 6775.358007448811, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1066, "image_id": 251, "category_id": 117, "bbox": [778.24, 365.486198, 86.64616960000001, 281.99150532000004], "area": 24433.483795716027, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1067, "image_id": 251, "category_id": 117, "bbox": [828.65227776, 367.0615753, 55.13846784000009, 100.8238133], "area": 5559.270587148224, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1068, "image_id": 252, "category_id": 117, "bbox": [604.129792, 385.3208019, 199.36282624, 46.842912979999966], "area": 9338.735521007173, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1069, "image_id": 252, "category_id": 117, "bbox": [652.46020608, 389.8540095, 234.10025471999995, 74.04198099999995], "area": 17333.246612073384, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1070, "image_id": 166, "category_id": 117, "bbox": [60.442477725, 652.46020608, 622.557522275, 371.53979391999997], "area": 231304.8935293993, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 1071, "image_id": 167, "category_id": 117, "bbox": [145.06194653999998, 374.56048128, 176.79424948000002, 445.54571776], "area": 78769.92078040712, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1072, "image_id": 167, "category_id": 117, "bbox": [225.14823166, 391.1740416, 456.34069914, 564.8613376], "area": 257769.21771753958, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1073, "image_id": 253, "category_id": 117, "bbox": [0.0, 280.00000511999997, 92.8, 265.60002048], "area": 24647.681900543997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1074, "image_id": 253, "category_id": 117, "bbox": [420.8, 267.19999487999996, 111.99999999999994, 103.99999488000002], "area": 11647.999426559996, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1075, "image_id": 253, "category_id": 117, "bbox": [528.0, 270.39999744, 22.399999999999977, 24.0], "area": 537.5999999999995, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1076, "image_id": 253, "category_id": 117, "bbox": [579.2, 270.39999744, 16.0, 20.79999743999997], "area": 332.7999590399995, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1077, "image_id": 253, "category_id": 117, "bbox": [579.2, 271.99999488000003, 24.0, 48.0], "area": 1152.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1078, "image_id": 253, "category_id": 117, "bbox": [784.0, 275.19998976, 17.600000000000023, 24.0], "area": 422.40000000000055, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1079, "image_id": 253, "category_id": 117, "bbox": [809.6, 275.19998976, 12.799999999999955, 25.600020479999984], "area": 327.6802621439986, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1080, "image_id": 253, "category_id": 117, "bbox": [857.6, 268.79999999999995, 30.399999999999977, 32.00001024000001], "area": 972.8003112959996, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1081, "image_id": 253, "category_id": 117, "bbox": [859.2, 273.6, 27.199999999999932, 22.39999488000001], "area": 609.2798607359987, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1082, "image_id": 253, "category_id": 117, "bbox": [880.0, 281.60000256, 8.0, 14.399992320000038], "area": 115.1999385600003, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1083, "image_id": 253, "category_id": 117, "bbox": [996.8, 281.60000256, 12.800000000000068, 14.399992320000038], "area": 184.31990169600147, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1084, "image_id": 230, "category_id": 117, "bbox": [151.10619602, 430.44247552, 77.06416038, 265.81710848], "area": 20484.972279650578, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1085, "image_id": 230, "category_id": 117, "bbox": [439.71901990000003, 394.19469824, 66.48673061999996, 296.02359296], "area": 19681.640882296037, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1086, "image_id": 254, "category_id": 117, "bbox": [322.23077502, 56.483985408, 242.12823138, 333.437734912], "area": 80734.68902959583, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1087, "image_id": 254, "category_id": 117, "bbox": [704.5384528, 581.2384768, 220.28205962, 302.4625664], "area": 66627.07708454301, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1088, "image_id": 170, "category_id": 117, "bbox": [379.09143552, 232.70353667999998, 87.59883775999998, 349.05530502000005], "area": 30576.839033714292, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1089, "image_id": 170, "category_id": 117, "bbox": [564.8613376, 229.68141194, 129.8879488, 179.81636055999996], "area": 23355.978233819616, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1090, "image_id": 175, "category_id": 117, "bbox": [0.0, 167.3614232, 16.564706304, 57.2949028], "area": 949.0732375982274, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1091, "image_id": 175, "category_id": 117, "bbox": [0.0, 363.370308, 87.34117888, 113.08202799999998], "area": 9876.717635661167, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1092, "image_id": 175, "category_id": 117, "bbox": [352.37646336, 352.81595999999996, 85.83529471999998, 164.34589520000006], "area": 14106.678350514234, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1093, "image_id": 175, "category_id": 117, "bbox": [501.4588416, 349.800432, 85.83526399999994, 199.024406], "area": 17083.31243145317, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1094, "image_id": 176, "category_id": 117, "bbox": [0.0, 391.85559552, 81.32852224, 112.75091967999998], "area": 9169.865678775332, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1095, "image_id": 176, "category_id": 117, "bbox": [0.0, 524.9385984, 24.028880896, 134.9314559999999], "area": 3242.2518853478623, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1096, "image_id": 176, "category_id": 117, "bbox": [134.93141504, 304.9819648, 303.13355264, 587.78335232], "area": 178176.85577141037, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1097, "image_id": 176, "category_id": 117, "bbox": [639.53789952, 340.10107904, 231.04693248, 656.17330176], "area": 151606.82854692137, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1098, "image_id": 180, "category_id": 117, "bbox": [297.53393152, 191.90487318, 288.47198208, 134.48450312], "area": 38795.01117407034, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1099, "image_id": 180, "category_id": 117, "bbox": [385.1327488, 240.25885536, 416.84955136, 426.11945174], "area": 177627.70228358815, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1100, "image_id": 180, "category_id": 117, "bbox": [557.3097472, 409.4977725, 466.69025280000005, 273.5022275], "area": 127640.82369333814, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1101, "image_id": 180, "category_id": 117, "bbox": [589.02654976, 291.63496227999997, 389.6637030400001, 166.21681972000002], "area": 64768.66147962731, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1102, "image_id": 255, "category_id": 117, "bbox": [0.0, 114.78466048, 241.7699109, 442.52508671999993], "area": 106989.25078730917, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1103, "image_id": 185, "category_id": 117, "bbox": [397.71429888, 146.3157924, 141.71428863999995, 89.9232561], "area": 12743.410270404038, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1104, "image_id": 185, "category_id": 117, "bbox": [484.5714432, 124.9780692, 94.47618560000001, 86.87500000000001], "area": 8207.618624000002, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1105, "image_id": 256, "category_id": 117, "bbox": [0.0, 95.15044352, 31.732301573999997, 101.19173632], "area": 3211.0466937029287, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1106, "image_id": 256, "category_id": 117, "bbox": [55.909289932, 92.129792, 86.130531868, 128.37757951999998], "area": 11057.229203984063, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1107, "image_id": 256, "category_id": 117, "bbox": [89.15265251, 87.598823424, 42.309739529999995, 105.722710016], "area": 4473.100323182682, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1108, "image_id": 256, "category_id": 117, "bbox": [152.61725839, 252.22418432, 77.06415355000001, 454.60768767999997], "area": 35033.956648381965, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1109, "image_id": 256, "category_id": 117, "bbox": [197.949109, 84.57817088, 43.82080190000002, 126.86726144000001], "area": 5559.425131157752, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1110, "image_id": 256, "category_id": 117, "bbox": [318.83407128, 54.37168128, 45.33185744000003, 46.820060160000004], "area": 2122.440292505345, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1111, "image_id": 256, "category_id": 117, "bbox": [368.699109, 37.758113792, 13.59955449999998, 31.716814848], "area": 431.3345520917846, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1112, "image_id": 256, "category_id": 117, "bbox": [386.8318711, 140.46017536, 31.732268789999953, 74.00590336000002], "area": 2348.3752174662814, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1113, "image_id": 256, "category_id": 117, "bbox": [403.45353668, 70.985252864, 33.24334481999999, 24.165190655999993], "area": 803.3317656184495, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1114, "image_id": 256, "category_id": 117, "bbox": [414.03098009999997, 214.46607872, 151.10620285000005, 469.71091967999996], "area": 70976.23351002616, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1115, "image_id": 256, "category_id": 117, "bbox": [513.7610692, 40.77876224, 36.265455900000006, 33.227134975999995], "area": 1204.9971981554756, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1116, "image_id": 256, "category_id": 117, "bbox": [618.0243180900001, 49.840709632, 63.46461270999998, 51.351031808], "area": 3258.9733459536105, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1117, "image_id": 257, "category_id": 117, "bbox": [351.04608256, 212.21394142, 382.95937023999994, 260.75963447], "area": 99860.34540064377, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 1118, "image_id": 258, "category_id": 117, "bbox": [188.88274844, 247.69321984, 143.55087734, 211.44542208], "area": 30353.175849110605, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1119, "image_id": 258, "category_id": 117, "bbox": [282.56858805999997, 305.0855424, 93.68583962, 151.03244288000002], "area": 14149.601221072491, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1120, "image_id": 188, "category_id": 117, "bbox": [223.63716245999998, 184.259584, 110.30753252000002, 161.60473088], "area": 17826.219106931454, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1121, "image_id": 188, "category_id": 117, "bbox": [341.5, 184.259584, 99.73008910000001, 163.11504896], "area": 16267.478366331665, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1122, "image_id": 189, "category_id": 117, "bbox": [1.5125553152, 42.33995549, 732.0767950848, 642.66004451], "area": 470476.5057139357, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 1123, "image_id": 259, "category_id": 117, "bbox": [69.40707862000001, 410.2032384, 102.60176453999999, 120.64801791999997], "area": 12378.699526845536, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1124, "image_id": 259, "category_id": 117, "bbox": [235.38052868, 542.916096, 401.35397191999994, 135.72898815999997], "area": 54475.368502698635, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1125, "image_id": 191, "category_id": 117, "bbox": [779.13042944, 487.22226120000005, 244.86957056000006, 389.77773879999995], "area": 95444.70751380386, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1126, "image_id": 192, "category_id": 117, "bbox": [100.80000000000001, 291.2, 209.60000255999998, 260.8], "area": 54663.680667648, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1127, "image_id": 193, "category_id": 117, "bbox": [147.19999488, 112.17526784, 127.99999488000002, 516.0062361600001], "area": 66048.79558652808, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1128, "image_id": 193, "category_id": 117, "bbox": [384.0, 177.87793408, 140.80000512, 387.80598272000003], "area": 54603.08435254264, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1129, "image_id": 195, "category_id": 117, "bbox": [0.0, 407.78760192, 353.5884853, 119.31568127999998], "area": 42188.651016332755, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1130, "image_id": 195, "category_id": 117, "bbox": [175.28318027999998, 102.70206464, 243.28095961, 226.54866943999997], "area": 55114.97769973187, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1131, "image_id": 196, "category_id": 117, "bbox": [76.8, 417.59999999999997, 670.4000000000001, 350.40000000000003], "area": 234908.16000000003, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1132, "image_id": 196, "category_id": 117, "bbox": [419.2, 222.39999744000002, 382.40000000000003, 201.59997696000002], "area": 77091.83118950401, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1133, "image_id": 260, "category_id": 117, "bbox": [425.6000256, 176.0, 57.59996927999998, 75.19999999999999], "area": 4331.517689855998, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1134, "image_id": 199, "category_id": 117, "bbox": [0.0, 397.65331968, 122.83295644, 624.64001024], "area": 76726.37916849108, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1135, "image_id": 200, "category_id": 117, "bbox": [293.0029568, 203.99335847999998, 663.0324224, 479.00664152], "area": 317596.93387269403, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 1136, "image_id": 220, "category_id": 117, "bbox": [169.6, 233.60000255999998, 113.6, 155.19999744], "area": 17630.719709184, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1137, "image_id": 220, "category_id": 117, "bbox": [444.8, 111.99999744000002, 227.2, 291.20000256000003], "area": 66160.640581632, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1138, "image_id": 220, "category_id": 117, "bbox": [700.8, 340.79999999999995, 156.80000000000007, 118.39999488000001], "area": 18565.11919718401, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1139, "image_id": 220, "category_id": 117, "bbox": [707.2, 251.19998976, 278.4, 176.00001024], "area": 48998.402850816, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1140, "image_id": 202, "category_id": 117, "bbox": [152.61725839, 194.83186176, 142.03981497, 314.1474816], "area": 44621.450159755484, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1141, "image_id": 202, "category_id": 117, "bbox": [450.29646332, 197.85250816, 135.99558598000002, 289.98230015999997], "area": 39436.31283408745, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1142, "image_id": 204, "category_id": 117, "bbox": [0.0, 204.45233735999997, 930.7723776, 473.54766264], "area": 440765.0838623555, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 1143, "image_id": 261, "category_id": 117, "bbox": [73.6, 0.0, 881.6, 768.0], "area": 677068.8, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1144, "image_id": 236, "category_id": 117, "bbox": [172.95965049999998, 162.46870016, 126.73766840000002, 150.54439424], "area": 19079.64551666799, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1145, "image_id": 236, "category_id": 117, "bbox": [402.57849799999997, 178.86461952, 117.79146995000004, 144.5822464], "area": 17030.5553321291, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1146, "image_id": 205, "category_id": 117, "bbox": [0.0, 501.1394048, 13.974193757999998, 35.684812799999975], "area": 498.6664882851581, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1147, "image_id": 205, "category_id": 117, "bbox": [45.02795598, 508.8969728, 208.06021287999997, 515.1030272], "area": 107172.44549436442, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1148, "image_id": 205, "category_id": 117, "bbox": [68.31827891, 366.15755776, 57.44946419, 145.84244224000003], "area": 8378.570162849024, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1149, "image_id": 205, "category_id": 117, "bbox": [150.6107523, 231.17575168, 48.13333574000003, 102.39998976000001], "area": 4928.8530868906455, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1150, "image_id": 205, "category_id": 117, "bbox": [549.6515966, 468.55758848, 172.34840340000002, 555.44241152], "area": 95729.61280611777, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1151, "image_id": 22, "category_id": 236, "bbox": [170.05053952, 271.7111808, 123.84114688000003, 131.23468287999998], "area": 16252.253638292303, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1152, "image_id": 22, "category_id": 236, "bbox": [170.05053952, 739.35015936, 90.57040384000001, 133.08309504], "area": 12053.389662049902, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1153, "image_id": 22, "category_id": 236, "bbox": [303.13357312, 338.25271808, 83.17687808, 22.180505600000004], "area": 1844.9052100439574, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1154, "image_id": 22, "category_id": 236, "bbox": [401.097472, 828.07220224, 40.66424832000001, 31.42236159999993], "area": 1277.7667149032302, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1155, "image_id": 22, "category_id": 236, "bbox": [441.76172032, 748.5920256, 133.08306431999995, 170.0505599999999], "area": 22630.849614132, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1156, "image_id": 22, "category_id": 236, "bbox": [611.8122496, 292.04333568, 158.96033280000006, 157.1119104], "area": 24974.56156402779, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1157, "image_id": 22, "category_id": 236, "bbox": [689.4440448, 750.440448, 134.93135359999997, 134.93135360000008], "area": 18206.47018432824, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1158, "image_id": 22, "category_id": 236, "bbox": [813.2852224, 199.62454016, 59.14803200000006, 134.93141504000002], "area": 7980.92765459121, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1159, "image_id": 24, "category_id": 236, "bbox": [170.66667008, 146.57300891, 52.86135808, 71.01991773], "area": 3754.2093019376707, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1160, "image_id": 24, "category_id": 236, "bbox": [232.58996736, 157.1504455, 48.330383359999985, 72.53096644000001], "area": 3505.4494135164937, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1161, "image_id": 24, "category_id": 236, "bbox": [261.28613376, 264.43583962, 54.37167615999999, 111.81858806], "area": 6079.764058666761, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1162, "image_id": 24, "category_id": 236, "bbox": [430.44247552, 364.16592872, 95.15040767999994, 161.68362577999997], "area": 15384.262908147546, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1163, "image_id": 24, "category_id": 236, "bbox": [747.610624, 450.29646332, 45.30974719999995, 31.732289280000057], "area": 1437.782005354071, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1164, "image_id": 24, "category_id": 236, "bbox": [993.793536, 409.4977725, 28.69616640000004, 125.41815622000004], "area": 3599.020280470321, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1165, "image_id": 25, "category_id": 236, "bbox": [506.00002529999995, 549.4245376, 90.69807120000006, 214.99228159999996], "area": 19499.38526400726, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1166, "image_id": 25, "category_id": 236, "bbox": [701.7169797, 393.35614464, 33.41512679999999, 93.95955712], "area": 3139.6705152366417, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1167, "image_id": 26, "category_id": 236, "bbox": [312.80242688, 169.34763992, 7.781150720000028, 10.87553703999999], "area": 84.62419286918289, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1168, "image_id": 26, "category_id": 236, "bbox": [347.03951872, 183.3304836, 9.33736448000002, 9.32187647999998], "area": 87.04175833129943, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1169, "image_id": 26, "category_id": 236, "bbox": [382.83282432, 192.65236008, 10.89361919999999, 9.321876480000022], "area": 101.54897260255655, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1170, "image_id": 26, "category_id": 236, "bbox": [429.51974912, 205.0815432, 12.449853440000027, 10.875529799999994], "area": 135.39875209235274, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1171, "image_id": 26, "category_id": 236, "bbox": [577.3617152, 320.05149792000003, 59.13675775999991, 76.12875928000001], "area": 4502.007996110706, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1172, "image_id": 26, "category_id": 236, "bbox": [686.297856, 316.944213, 46.68697599999996, 59.038616199999964], "area": 2756.334457602607, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1173, "image_id": 26, "category_id": 236, "bbox": [762.5531392, 310.72962144, 12.449894399999948, 13.982829200000024], "area": 174.08474695323605, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1174, "image_id": 26, "category_id": 236, "bbox": [840.3647488, 340.24892592000003, 7.781130239999925, 9.32187647999998], "area": 72.5347349720719, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1175, "image_id": 26, "category_id": 236, "bbox": [980.4255232, 375.98282919999997, 9.337446399999976, 12.429175880000011], "area": 116.05676357567265, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1176, "image_id": 26, "category_id": 236, "bbox": [980.4255232, 386.8583952, 10.89361919999999, 10.875493599999974], "area": 118.4734858904367, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1177, "image_id": 26, "category_id": 236, "bbox": [985.0942464, 389.9656584, 37.349539840000034, 38.84120268000004], "area": 1450.7010469301774, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1178, "image_id": 26, "category_id": 236, "bbox": [994.4316416, 435.0214816, 24.89963519999992, 31.072943319999965], "area": 773.7049532582736, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1179, "image_id": 28, "category_id": 236, "bbox": [771.2, 392.00002559999996, 76.79999999999995, 54.399974400000076], "area": 4177.918033920003, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1180, "image_id": 28, "category_id": 236, "bbox": [996.8, 363.19999487999996, 25.600000000000023, 68.80000512000001], "area": 1761.2801310720017, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1181, "image_id": 32, "category_id": 236, "bbox": [199.36283648, 431.53097152, 144.99113984000002, 137.30531408000002], "area": 19908.053994548405, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1182, "image_id": 32, "category_id": 236, "bbox": [758.1828608, 437.5663578, 172.1769984, 147.86728439999996], "area": 25459.345189551143, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1183, "image_id": 35, "category_id": 236, "bbox": [118.46592512, 497.40738400000004, 163.90492159999997, 89.40327300000001], "area": 14653.636451848393, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1184, "image_id": 35, "category_id": 236, "bbox": [434.91601408, 401.5020555, 180.13309952000003, 201.56379949999996], "area": 36308.31195496283, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1185, "image_id": 35, "category_id": 236, "bbox": [791.9366144, 395.0, 108.72897535999994, 165.8024666], "area": 18027.532305578614, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1186, "image_id": 37, "category_id": 236, "bbox": [317.16814848, 451.80753935, 143.48081151999997, 145.06192605], "area": 20813.602870308227, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1187, "image_id": 37, "category_id": 236, "bbox": [812.5545472, 404.96460588, 75.51625216000002, 96.70797802], "area": 7303.024054042059, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1188, "image_id": 38, "category_id": 236, "bbox": [83.2, 318.39999744, 59.2, 92.79999743999997], "area": 5493.759848447999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1189, "image_id": 38, "category_id": 236, "bbox": [169.6, 305.60000256, 40.0, 72.0], "area": 2880.0, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1190, "image_id": 38, "category_id": 236, "bbox": [230.4, 420.79998720000003, 47.99999999999997, 91.20003839999995], "area": 4377.601843199995, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1191, "image_id": 38, "category_id": 236, "bbox": [681.6, 457.60002048, 56.0, 52.79995392000001], "area": 2956.7974195200004, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1192, "image_id": 38, "category_id": 236, "bbox": [835.2, 318.39999744, 80.0, 100.80001535999997], "area": 8064.001228799998, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1193, "image_id": 39, "category_id": 236, "bbox": [462.4, 497.6000256, 188.80000000000007, 217.5999744], "area": 41082.87516672001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1194, "image_id": 39, "category_id": 236, "bbox": [913.6, 380.80000512000004, 72.0, 120.0], "area": 8640.0, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1195, "image_id": 42, "category_id": 236, "bbox": [508.8, 441.3695064, 167.99999999999994, 215.8872952], "area": 36269.06559359999, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1196, "image_id": 42, "category_id": 236, "bbox": [870.4, 319.83298198, 92.80000000000007, 150.32150221999999], "area": 13949.835406016009, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1197, "image_id": 45, "category_id": 236, "bbox": [88.68199936, 123.52770432, 41.56969471999999, 26.37109440000001], "area": 1096.2383436403018, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1198, "image_id": 45, "category_id": 236, "bbox": [142.72259072, 119.36385216, 20.784855039999997, 20.819283840000004], "area": 432.72579665101455, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1199, "image_id": 45, "category_id": 236, "bbox": [163.50744576, 106.87228992, 18.01353216000001, 18.043378559999997], "area": 325.02497996561465, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1200, "image_id": 45, "category_id": 236, "bbox": [164.89309184, 326.16866880000003, 33.25576192, 212.35662143999997], "area": 7062.081244744207, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1201, "image_id": 45, "category_id": 236, "bbox": [175.97835264, 116.58795264, 49.88361728000001, 22.20723072], "area": 1107.7769980851392, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1202, "image_id": 45, "category_id": 236, "bbox": [228.6332928, 248.44337280000002, 42.955325440000024, 127.69156224], "area": 5485.032611961218, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1203, "image_id": 45, "category_id": 236, "bbox": [232.79025152, 334.49637312, 101.15292159999998, 188.76146111999998], "area": 19093.7732777728, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1204, "image_id": 45, "category_id": 236, "bbox": [241.10419968, 108.2602368, 29.098782720000003, 24.983136000000005], "area": 726.9788461282101, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1205, "image_id": 45, "category_id": 236, "bbox": [285.44519168, 112.42410047999999, 29.09878272000003, 19.431319679999998], "area": 565.4277493311805, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1206, "image_id": 45, "category_id": 236, "bbox": [304.8443904, 222.0722784, 62.35453439999998, 116.58795840000003], "area": 7269.787862678568, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1207, "image_id": 45, "category_id": 236, "bbox": [350.57104896, 104.09638464, 19.39916800000003, 18.0433728], "area": 350.02642023383095, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1208, "image_id": 45, "category_id": 236, "bbox": [382.44113408, 204.02891712000002, 62.35456512000002, 95.76868032000002], "area": 5971.614413469904, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1209, "image_id": 45, "category_id": 236, "bbox": [417.08255232, 266.4867456, 60.968878080000025, 142.9590528], "area": 8716.053060595485, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1210, "image_id": 45, "category_id": 236, "bbox": [471.1231488, 190.14939071999999, 60.96888831999996, 94.38072768], "area": 5754.28804548225, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1211, "image_id": 45, "category_id": 236, "bbox": [480.82272256, 483.0072192, 188.44923904000007, 92.99278079999999], "area": 17524.418777973526, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1212, "image_id": 45, "category_id": 236, "bbox": [505.7645568, 241.5036096, 106.6955264, 122.13976319999998], "area": 13031.766328995347, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1213, "image_id": 45, "category_id": 236, "bbox": [514.0785152, 430.26505344000003, 232.79022080000004, 141.57110016000001], "area": 32956.36766514532, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1214, "image_id": 45, "category_id": 236, "bbox": [570.89038336, 233.17590528, 94.22460927999998, 95.76865151999999], "area": 9023.763770744476, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1215, "image_id": 45, "category_id": 236, "bbox": [651.2584704, 206.8048224, 106.69550592000007, 104.09638463999998], "area": 11106.616423607722, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1216, "image_id": 45, "category_id": 236, "bbox": [708.0704, 192.925296, 95.61026560000005, 91.60482240000002], "area": 8758.361399904836, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1217, "image_id": 45, "category_id": 236, "bbox": [745.48308992, 342.824112, 212.00544767999997, 174.8819232], "area": 37075.92041915537, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1218, "image_id": 45, "category_id": 236, "bbox": [748.2544128, 179.04578688, 90.0676608, 86.05300607999999], "area": 7750.592962433777, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1219, "image_id": 45, "category_id": 236, "bbox": [792.59539456, 172.10603519999998, 34.64141824000001, 80.50120128], "area": 2788.675782362904, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1220, "image_id": 45, "category_id": 236, "bbox": [810.6089472, 302.57349120000003, 177.36401920000003, 126.3036096], "area": 22401.71583812371, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1221, "image_id": 45, "category_id": 236, "bbox": [842.4790016, 259.5469824, 169.050112, 134.63135999999997], "area": 22759.446486712317, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1222, "image_id": 45, "category_id": 236, "bbox": [856.3355648, 235.9518048, 138.56568319999997, 99.93251520000004], "area": 13847.217242582385, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1223, "image_id": 45, "category_id": 236, "bbox": [945.0175488, 204.02891712000002, 12.470988799999986, 29.146988159999992], "area": 363.49176289709214, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1224, "image_id": 45, "category_id": 236, "bbox": [956.1028608, 209.58072192, 31.870105599999988, 36.08673408000001], "area": 1150.0880258887187, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1225, "image_id": 47, "category_id": 236, "bbox": [39.095447552, 153.68000225999998, 60.146843647999994, 158.19999774000001], "area": 9515.230529181734, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1226, "image_id": 47, "category_id": 236, "bbox": [225.55066368, 280.23999774, 148.86342656, 274.21331676], "area": 40820.33394127627, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1227, "image_id": 48, "category_id": 236, "bbox": [148.76164096, 401.555544, 80.88011776000002, 112.66669440000003], "area": 9112.495510701936, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1228, "image_id": 48, "category_id": 236, "bbox": [408.73342976, 394.33330559999996, 121.32016128000004, 158.88893280000005], "area": 19276.430952903094, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1229, "image_id": 49, "category_id": 236, "bbox": [483.328, 391.14968184, 180.22400000000005, 190.45510776000003], "area": 34324.58134093825, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1230, "image_id": 49, "category_id": 236, "bbox": [823.296, 442.3473144, 90.11199999999997, 102.39518303999999], "area": 9227.034734100474, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1231, "image_id": 51, "category_id": 236, "bbox": [92.129792, 406.47568191, 6.041296896000006, 51.376100090000016], "area": 310.3782740023027, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1232, "image_id": 51, "category_id": 236, "bbox": [131.39822592, 448.78539412, 69.47492864, 158.66148738000004], "area": 11022.995513641763, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1233, "image_id": 51, "category_id": 236, "bbox": [444.03539968, 518.2942494800001, 51.35104000000001, 25.68803297], "area": 1319.107208563789, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1234, "image_id": 51, "category_id": 236, "bbox": [519.55163136, 346.03318028, 39.26841344000002, 61.953523019999956], "area": 2432.816556013917, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1235, "image_id": 51, "category_id": 236, "bbox": [696.259584, 380.7875943, 84.57820159999994, 89.15267299999996], "area": 7540.372750172869, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1236, "image_id": 51, "category_id": 236, "bbox": [960.5663744, 376.25442768, 30.206515200000013, 7.5553050200000325], "area": 228.21943592726737, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1237, "image_id": 207, "category_id": 236, "bbox": [15.681469952, 537.85318851, 68.998466048, 68.99574373999995], "area": 4760.600481900895, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1238, "image_id": 207, "category_id": 236, "bbox": [185.04134656, 517.46807068, 111.33845504000001, 116.03833581999997], "area": 12919.529035611491, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1239, "image_id": 207, "category_id": 236, "bbox": [324.60644352, 588.03192932, 117.61102847999996, 39.202128130000006], "area": 4610.602607974038, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1240, "image_id": 207, "category_id": 236, "bbox": [699.393536, 514.33191458, 122.31550975999994, 117.60637701999998], "area": 14385.083956228042, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1241, "image_id": 207, "category_id": 236, "bbox": [831.1179264, 567.64681149, 122.31546879999996, 64.29148010999997], "area": 7863.84252950052, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1242, "image_id": 53, "category_id": 236, "bbox": [81.6, 520.0, 41.59999488, 104.0], "area": 4326.399467519999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1243, "image_id": 53, "category_id": 236, "bbox": [148.8, 577.6, 123.19999488000002, 225.60000000000002], "area": 27793.91884492801, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1244, "image_id": 53, "category_id": 236, "bbox": [681.5999999999999, 718.4, 84.79997952000005, 174.39999999999998], "area": 14789.116428288007, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1245, "image_id": 54, "category_id": 236, "bbox": [49.32110336, 573.064192, 173.79815424, 251.30274815999996], "area": 43675.95378564755, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1246, "image_id": 54, "category_id": 236, "bbox": [561.32110336, 577.7614848, 204.33025023999994, 321.76148480000006], "area": 65745.60470677794, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1247, "image_id": 57, "category_id": 236, "bbox": [28.794062970000002, 399.52197632, 215.95546403, 327.53600512], "area": 70733.18997222206, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1248, "image_id": 57, "category_id": 236, "bbox": [32.393319749999996, 98.98066944, 86.38219085, 140.3725824], "area": 12125.691202984151, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1249, "image_id": 57, "category_id": 236, "bbox": [338.3302479, 75.58523904, 68.38588269999997, 80.98418687999998], "area": 5538.1751045305555, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1250, "image_id": 57, "category_id": 236, "bbox": [520.092757, 41.39191296, 73.78479599999999, 104.37961728], "area": 7701.628767562874, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1251, "image_id": 57, "category_id": 236, "bbox": [626.2708970000001, 302.34094592, 244.74952699999992, 253.75044608000002], "area": 62105.301654118986, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1252, "image_id": 57, "category_id": 236, "bbox": [770.241207, 176.36555776, 158.36734099999995, 169.16694016000002], "area": 26790.51849824531, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1253, "image_id": 58, "category_id": 236, "bbox": [551.964672, 553.7477858, 257.88512256, 125.2345347], "area": 32296.123329854076, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 1254, "image_id": 59, "category_id": 236, "bbox": [561.6, 467.20001279999997, 84.79999999999995, 147.19998720000004], "area": 12482.558914559995, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1255, "image_id": 59, "category_id": 236, "bbox": [728.0, 417.59999999999997, 68.79999999999995, 110.40000000000003], "area": 7595.519999999998, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1256, "image_id": 60, "category_id": 236, "bbox": [195.6422656, 240.11565696000002, 74.92682751999999, 122.13976896000001], "area": 9151.54540219857, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1257, "image_id": 60, "category_id": 236, "bbox": [202.57993728, 367.80721919999996, 181.76695296, 179.04577536], "area": 32544.60502754785, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1258, "image_id": 60, "category_id": 236, "bbox": [706.2547456, 154.06265088, 122.10298880000005, 141.5710944], "area": 17286.25375392695, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1259, "image_id": 262, "category_id": 236, "bbox": [57.16108288, 638.8732090000001, 96.35725312, 75.16157044999996], "area": 7242.3624687473575, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1260, "image_id": 262, "category_id": 236, "bbox": [581.4098944, 651.94479307, 47.36201728000003, 19.607356130000014], "area": 928.6439398441752, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1261, "image_id": 263, "category_id": 236, "bbox": [167.39910656, 567.3274288, 174.93963775999998, 114.67257120000001], "area": 20060.77806673581, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1262, "image_id": 62, "category_id": 236, "bbox": [27.105883136, 295.521064, 134.023527424, 156.80711599999995], "area": 21015.842811504346, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1263, "image_id": 62, "category_id": 236, "bbox": [335.81176832, 307.583142, 120.47057919999997, 161.330374], "area": 19435.563598332617, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1264, "image_id": 62, "category_id": 236, "bbox": [605.3646848, 277.4279368, 108.42352640000001, 150.7760532], "area": 16347.671384618008, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1265, "image_id": 9, "category_id": 236, "bbox": [27.2, 507.19999487999996, 153.60000000000002, 152.00001792], "area": 23347.202752512003, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1266, "image_id": 9, "category_id": 236, "bbox": [704.0, 438.3999744, 52.799999999999955, 62.40003072000002], "area": 3294.721622015998, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1267, "image_id": 65, "category_id": 236, "bbox": [154.87811584, 317.43777176000003, 81.19824384, 141.41777852999996], "area": 11482.875264390053, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1268, "image_id": 65, "category_id": 236, "bbox": [372.91042816, 327.96888587999996, 94.73126400000001, 168.49779207], "area": 15962.008824000279, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1269, "image_id": 65, "category_id": 236, "bbox": [502.2261248, 445.3155706, 69.16889600000002, 15.044429400000055], "area": 1040.6065725479464, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1270, "image_id": 65, "category_id": 236, "bbox": [748.82816, 454.3422147, 114.27901439999994, 42.12446325000003], "area": 4813.942142339021, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1271, "image_id": 67, "category_id": 236, "bbox": [97.6, 440.00002559999996, 150.4, 222.39997440000008], "area": 33448.956149760015, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1272, "image_id": 67, "category_id": 236, "bbox": [721.6, 620.80000512, 94.39999999999998, 44.80002048], "area": 4229.121933311999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1273, "image_id": 68, "category_id": 236, "bbox": [360.18603008, 250.11660232, 49.116293119999966, 83.37218528000004], "area": 4094.9326902674284, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1274, "image_id": 68, "category_id": 236, "bbox": [384.0, 318.60090496000004, 53.58139391999998, 86.34978703999995], "area": 4626.741954298346, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1275, "image_id": 68, "category_id": 236, "bbox": [544.74420224, 245.6502196, 49.11627263999992, 81.88342424], "area": 4021.8085896686175, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1276, "image_id": 68, "category_id": 236, "bbox": [573.023232, 312.64574128, 55.06979839999997, 84.86097952], "area": 4673.277034192926, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1277, "image_id": 69, "category_id": 236, "bbox": [123.19999487999999, 609.6, 188.80000512, 323.19999999999993], "area": 61020.16165478399, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1278, "image_id": 72, "category_id": 236, "bbox": [0.0, 340.79999999999995, 121.6, 240.0], "area": 29184.0, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1279, "image_id": 72, "category_id": 236, "bbox": [512.0, 494.40000000000003, 345.6, 273.59999999999997], "area": 94556.15999999999, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1280, "image_id": 72, "category_id": 236, "bbox": [916.8, 192.0, 107.20000000000005, 550.39997952], "area": 59002.87780454403, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1281, "image_id": 74, "category_id": 236, "bbox": [0.0, 353.0707862, 57.392329728, 117.6902848], "area": 6754.519631023827, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1282, "image_id": 74, "category_id": 236, "bbox": [175.1976448, 344.0176795, 89.1091456, 107.12835540000003], "area": 9546.11621922715, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1283, "image_id": 74, "category_id": 236, "bbox": [178.2182912, 315.34955716, 96.66076671999997, 89.02212836000001], "area": 8604.947182323855, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1284, "image_id": 74, "category_id": 236, "bbox": [262.79645184, 380.2300722, 80.04720640000005, 34.70356999999997], "area": 2777.9238306068473, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1285, "image_id": 74, "category_id": 236, "bbox": [350.3952896, 528.0973566, 92.12979200000001, 92.03981467999999], "area": 8479.608982186946, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1286, "image_id": 74, "category_id": 236, "bbox": [498.40707584, 505.46460007999997, 92.12979200000001, 76.95132852], "area": 7089.509890671269, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1287, "image_id": 74, "category_id": 236, "bbox": [519.55163136, 555.2566426000001, 98.17108480000002, 102.60175771999997], "area": 10072.525857759172, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1288, "image_id": 74, "category_id": 236, "bbox": [656.9911296, 520.5530726, 104.21241855999995, 96.56637826000004], "area": 10063.415830054404, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1289, "image_id": 75, "category_id": 236, "bbox": [515.6312064, 414.06895679999997, 104.57869312000003, 152.5517176], "area": 15953.659259819306, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1290, "image_id": 75, "category_id": 236, "bbox": [794.50781696, 354.501124, 58.09930239999994, 145.28738319999997], "area": 8441.09561144147, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1291, "image_id": 77, "category_id": 236, "bbox": [273.36873984, 339.98894445999997, 172.17697792, 252.34734066000001], "area": 43448.40250098755, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1292, "image_id": 78, "category_id": 236, "bbox": [151.59776256, 316.52571308, 194.50278912000002, 187.62381562000002], "area": 36493.355443426626, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1293, "image_id": 78, "category_id": 236, "bbox": [544.8938496, 388.1378688, 183.0614732800001, 183.32709020000001], "area": 33560.12722414747, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1294, "image_id": 78, "category_id": 236, "bbox": [968.2234368, 369.51871101, 54.346383360000004, 197.64952257], "area": 10741.536724510193, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1295, "image_id": 80, "category_id": 236, "bbox": [0.0, 529.2494538999999, 43.86410496, 119.45917760000003], "area": 5239.969904681682, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1296, "image_id": 80, "category_id": 236, "bbox": [550.5701888, 441.545246, 164.86850560000005, 211.69977744999994], "area": 34902.62594403408, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1297, "image_id": 80, "category_id": 236, "bbox": [995.26147072, 365.9381929, 27.225978879999957, 75.60705310000006], "area": 2058.476030879637, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1298, "image_id": 81, "category_id": 236, "bbox": [198.4, 441.59999999999997, 177.6, 177.60000000000005], "area": 31541.760000000006, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1299, "image_id": 81, "category_id": 236, "bbox": [747.2, 604.8, 238.39999999999998, 161.59997952000003], "area": 38525.435117568006, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1300, "image_id": 82, "category_id": 236, "bbox": [19.2, 324.80001024, 11.2, 27.19999487999999], "area": 304.6399426559999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1301, "image_id": 82, "category_id": 236, "bbox": [56.0, 332.80000512000004, 11.200000000000003, 24.0], "area": 268.80000000000007, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1302, "image_id": 82, "category_id": 236, "bbox": [164.8, 339.19999487999996, 19.19999999999999, 9.60001536], "area": 184.3202949119999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1303, "image_id": 82, "category_id": 236, "bbox": [286.4, 313.59999744, 56.0, 89.60000256000002], "area": 5017.600143360001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1304, "image_id": 82, "category_id": 236, "bbox": [435.2, 304.00000511999997, 126.40000000000003, 151.99999488000003], "area": 19212.799352832008, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1305, "image_id": 82, "category_id": 236, "bbox": [734.4, 387.19999487999996, 97.60000000000002, 25.60000511999999], "area": 2498.560499712, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1306, "image_id": 90, "category_id": 236, "bbox": [226.54867456, 418.56413989, 64.94394368000002, 140.52880041000006], "area": 9126.494499245007, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1307, "image_id": 90, "category_id": 236, "bbox": [314.14749184, 404.96460588, 175.19763456000004, 203.99334482], "area": 35739.15147844643, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1308, "image_id": 90, "category_id": 236, "bbox": [765.7345024, 540.9601782, 176.7079936, 54.39821800000007], "area": 9612.599958195418, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1309, "image_id": 93, "category_id": 236, "bbox": [136.0, 531.19999488, 174.39999999999998, 99.19997952], "area": 17300.476428288, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1310, "image_id": 93, "category_id": 236, "bbox": [411.2, 476.80000512000004, 220.8, 268.80001536], "area": 59351.043391488, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1311, "image_id": 93, "category_id": 236, "bbox": [769.6, 420.79998720000003, 100.79999999999995, 163.20003839999995], "area": 16450.56387071999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1312, "image_id": 94, "category_id": 236, "bbox": [380.60177408, 379.2765251, 22.65485312000004, 69.50886901999996], "area": 1574.7132181854204, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1313, "image_id": 94, "category_id": 236, "bbox": [395.70501632, 362.65485269, 22.654873599999974, 48.35398901], "area": 1095.453509077338, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1314, "image_id": 94, "category_id": 236, "bbox": [433.46313216, 383.80973270000004, 28.69616640000004, 63.464585389999996], "area": 1821.190302858451, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1315, "image_id": 94, "category_id": 236, "bbox": [537.67554048, 382.29866350000003, 25.675499520000017, 69.50887585], "area": 1784.6751085224157, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1316, "image_id": 94, "category_id": 236, "bbox": [589.02654976, 361.1438313, 19.634237439999993, 22.66590140000003], "area": 445.02768987922883, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1317, "image_id": 94, "category_id": 236, "bbox": [589.02654976, 383.80973270000004, 24.16516095999998, 63.464585389999996], "area": 1533.6319212090132, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1318, "image_id": 98, "category_id": 236, "bbox": [84.57817088, 373.23228245, 108.74336256, 154.12834124999995], "area": 16760.43409332015, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1319, "image_id": 98, "category_id": 236, "bbox": [430.44247552, 385.3208019, 143.48080128000004, 200.97124739999995], "area": 28835.51561119312, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1320, "image_id": 98, "category_id": 236, "bbox": [830.67846656, 537.9380398000001, 102.70209024000008, 18.132762099999987], "area": 1862.272569494652, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1321, "image_id": 100, "category_id": 236, "bbox": [401.7230848, 275.72520371999997, 157.53844736000002, 214.01526732], "area": 33715.63292492815, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1322, "image_id": 100, "category_id": 236, "bbox": [845.45642496, 221.89313736000003, 116.84102143999996, 158.87022864], "area": 18562.559790703934, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1323, "image_id": 101, "category_id": 236, "bbox": [308.10619904, 444.2522275, 208.42474496, 238.74777249999997], "area": 49760.94359308059, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1324, "image_id": 101, "category_id": 236, "bbox": [903.1740416, 420.07521592, 120.82595839999999, 158.66148737999995], "area": 19170.426273857996, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1325, "image_id": 104, "category_id": 236, "bbox": [36.24778752, 370.2101782, 83.06784768, 148.08407128000007], "area": 12301.025076921307, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1326, "image_id": 104, "category_id": 236, "bbox": [300.55456768, 482.0287526, 132.90856448, 197.94914314999997], "area": 26309.136456112523, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1327, "image_id": 107, "category_id": 236, "bbox": [42.798763008, 161.9115849, 12.681114623999996, 20.635781139999985], "area": 261.68470599211713, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1328, "image_id": 107, "category_id": 236, "bbox": [139.49225984, 276.20209811999996, 68.16098303999999, 139.68842264], "area": 9521.30020644939, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1329, "image_id": 107, "category_id": 236, "bbox": [353.48604928, 417.47790942, 152.17340416000002, 315.88631698], "area": 48069.49618241142, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1330, "image_id": 23, "category_id": 12, "bbox": [211.2, 283.20000000000005, 107.19999999999999, 65.60001023999997], "area": 7032.321097727996, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1331, "image_id": 23, "category_id": 12, "bbox": [454.4, 275.19998976, 560.0, 352.00000511999997], "area": 197120.0028672, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1332, "image_id": 27, "category_id": 12, "bbox": [255.24484096, 424.6083962, 715.89382144, 258.3916038], "area": 184980.9526723924, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1333, "image_id": 30, "category_id": 12, "bbox": [342.95873536, 277.74331585, 567.26349824, 386.56672284999996], "area": 219285.19150706352, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1334, "image_id": 45, "category_id": 12, "bbox": [0.0, 73.56144959999999, 412.92556288, 76.33734912000001], "area": 31521.642854143076, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 1335, "image_id": 45, "category_id": 12, "bbox": [84.52503552, 120.7518048, 752.41136128, 417.77348544], "area": 314337.5168866007, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 1336, "image_id": 45, "category_id": 12, "bbox": [476.66577408, 151.28674560000002, 547.33422592, 423.32530176], "area": 231700.42635116001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 1337, "image_id": 55, "category_id": 12, "bbox": [136.63567872, 199.673202, 448.28786688, 391.66669799999994], "area": 175579.42857435317, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1338, "image_id": 58, "category_id": 12, "bbox": [533.8674176, 490.37612074000003, 277.49043200000006, 187.09733613999995], "area": 51917.72063153781, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 1339, "image_id": 89, "category_id": 12, "bbox": [88.95787200000001, 414.11764224, 473.43680800000004, 408.09414656], "area": 193206.7901108506, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1340, "image_id": 102, "category_id": 12, "bbox": [265.81710848, 247.81416038, 206.9144576, 175.28320076999998], "area": 36268.62841371645, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1341, "image_id": 23, "category_id": 127, "bbox": [596.8, 299.19998976, 172.80000000000007, 260.80003583999996], "area": 45066.24619315201, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1342, "image_id": 23, "category_id": 127, "bbox": [635.2, 315.19999487999996, 148.79999999999995, 198.40000511999997], "area": 29521.920761855985, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1343, "image_id": 264, "category_id": 127, "bbox": [225.14823166, 0.0, 457.85176834000004, 169.15634176], "area": 77448.5302007414, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1344, "image_id": 237, "category_id": 127, "bbox": [196.34217984, 429.1416038, 99.68141311999997, 222.12611375], "area": 22141.84490945386, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1345, "image_id": 237, "category_id": 127, "bbox": [297.53393152, 438.2079507, 74.00589312, 197.94910899999996], "area": 14649.400603853226, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1346, "image_id": 237, "category_id": 127, "bbox": [469.71090944, 398.9203564, 70.98525696000002, 243.2809801], "area": 17269.36288587915, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1347, "image_id": 237, "category_id": 127, "bbox": [518.0412928, 385.3208019, 87.59884800000009, 241.76991089999999], "area": 21178.765675902665, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1348, "image_id": 265, "category_id": 127, "bbox": [670.4, 304.00000511999997, 166.39999999999998, 361.60002048], "area": 60170.243407871996, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1349, "image_id": 240, "category_id": 127, "bbox": [60.87473152, 908.537949, 50.004254720000006, 78.24728219999997], "area": 3912.6970302765208, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1350, "image_id": 240, "category_id": 127, "bbox": [291.32910592, 932.4468714, 71.74520831999996, 32.60297580000001], "area": 2339.107290622918, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1351, "image_id": 240, "category_id": 127, "bbox": [526.13165056, 845.5054355999999, 76.09339904000001, 117.37087320000003], "area": 8931.148690080845, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1352, "image_id": 30, "category_id": 127, "bbox": [367.33969408, 329.71868398, 305.57463551999996, 147.80493111999996], "area": 45165.43795505269, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1353, "image_id": 30, "category_id": 127, "bbox": [416.1015808, 324.84598159999996, 177.16828159999994, 147.80491530000003], "area": 26186.342855734543, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1354, "image_id": 127, "category_id": 127, "bbox": [27.145803776, 337.98230004, 13.572900863999998, 52.809728839999984], "area": 716.7812142000413, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1355, "image_id": 127, "category_id": 127, "bbox": [46.751106048, 339.49115684, 19.605302272000003, 72.42477175999998], "area": 1419.9095423354095, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1356, "image_id": 127, "category_id": 127, "bbox": [70.88070656, 345.52654312000004, 28.653900800000002, 66.38938547999996], "area": 1902.3148657168795, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1357, "image_id": 127, "category_id": 127, "bbox": [73.89690368, 344.0176795, 27.145804800000008, 60.35400602000004], "area": 1638.3580663169462, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1358, "image_id": 127, "category_id": 127, "bbox": [126.68041216, 345.52654312000004, 7.5405004799999915, 66.38938547999996], "area": 500.60919307884416, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1359, "image_id": 127, "category_id": 127, "bbox": [141.76141312, 354.579643, 7.54050048000002, 49.792042520000045], "area": 375.4569205222417, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1360, "image_id": 127, "category_id": 127, "bbox": [220.18262016, 347.03539992000003, 12.064798719999999, 64.88052867999995], "area": 782.7705193713867, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1361, "image_id": 127, "category_id": 127, "bbox": [232.24741888, 354.579643, 19.60529919999999, 54.318571999999996], "area": 1064.9318561767418, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1362, "image_id": 127, "category_id": 127, "bbox": [268.44183552, 345.52654312000004, 9.04858624000002, 60.354006019999964], "area": 546.11842840145, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1363, "image_id": 127, "category_id": 127, "bbox": [280.506624, 345.52654312000004, 9.048627199999999, 70.91595587999997], "area": 641.6920472897675, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1364, "image_id": 127, "category_id": 127, "bbox": [316.70102016, 359.1062134, 10.556702720000033, 49.79200159999999], "area": 525.6393587249659, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1365, "image_id": 127, "category_id": 127, "bbox": [330.27392512, 350.05307259999995, 15.080990719999988, 79.96903530000004], "area": 1206.0122792466523, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1366, "image_id": 127, "category_id": 127, "bbox": [389.0898432, 337.98230004, 13.57290495999996, 66.38938548000003], "area": 901.0968194728418, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1367, "image_id": 127, "category_id": 127, "bbox": [405.67891968, 339.49115684, 9.048616960000004, 61.862808259999994], "area": 559.7728560146643, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1368, "image_id": 127, "category_id": 127, "bbox": [515.7702656, 366.6504292, 10.556723199999965, 66.38939911999995], "area": 700.8545099241608, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1369, "image_id": 127, "category_id": 127, "bbox": [532.3593728, 372.68582230000004, 15.081000960000097, 52.809749300000014], "area": 796.4238798906646, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1370, "image_id": 127, "category_id": 127, "bbox": [624.3534848, 359.1062134, 15.080960000000005, 40.73892900000001], "area": 614.3821586918405, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1371, "image_id": 127, "category_id": 127, "bbox": [639.4344448, 354.579643, 13.572915199999898, 52.80971519999999], "area": 716.7817861457455, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1372, "image_id": 127, "category_id": 127, "bbox": [669.59643648, 341.0, 16.589137919999985, 54.318571999999996], "area": 901.0982825254493, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1373, "image_id": 127, "category_id": 127, "bbox": [687.69366016, 345.52654312000004, 13.57287423999992, 60.354006019999964], "area": 819.1773335896575, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1374, "image_id": 127, "category_id": 127, "bbox": [699.7584896, 334.96460008, 19.60529919999999, 67.89822864000001], "area": 1331.1650876372084, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1375, "image_id": 127, "category_id": 127, "bbox": [797.7849856, 413.42478539999996, 27.145830400000023, 89.02214200000004], "area": 2416.57996857672, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1376, "image_id": 127, "category_id": 127, "bbox": [824.930816, 404.37168552, 27.145779199999993, 114.67257801999996], "area": 3112.876483225691, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1377, "image_id": 127, "category_id": 127, "bbox": [900.3358208, 345.52654312000004, 12.064768000000072, 69.40709907999997], "area": 837.3805479532181, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1378, "image_id": 266, "category_id": 127, "bbox": [181.77777595999999, 218.01290752, 282.58184643999994, 805.98709248], "area": 227757.3207998054, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1379, "image_id": 266, "category_id": 127, "bbox": [466.01211328000005, 168.46452736, 285.88686091999995, 855.53547264], "area": 244586.35067875808, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1380, "image_id": 266, "category_id": 127, "bbox": [482.537382, 269.2128768, 254.48887980000006, 754.7871232], "area": 192084.92947063263, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1381, "image_id": 242, "category_id": 127, "bbox": [283.76948384, 397.29231360000006, 70.94237095999998, 320.4923136], "area": 22736.48460123984, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1382, "image_id": 242, "category_id": 127, "bbox": [351.75594048, 395.8153728, 116.75928272000004, 319.0153728], "area": 37248.00610478141, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1383, "image_id": 242, "category_id": 127, "bbox": [421.2203412, 338.21539584, 47.29488200000006, 350.03077632000003], "area": 16554.664262422815, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1384, "image_id": 242, "category_id": 127, "bbox": [452.25765520000004, 319.01538816, 87.19996512, 352.98461184], "area": 30780.245840344738, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1385, "image_id": 242, "category_id": 127, "bbox": [501.03049871999997, 471.1384704, 76.85424320000008, 236.30767871999998], "area": 18161.247810374363, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1386, "image_id": 242, "category_id": 127, "bbox": [533.5457567999999, 394.33845504000004, 84.24409439999998, 326.40000768], "area": 27497.273059154635, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1387, "image_id": 242, "category_id": 127, "bbox": [619.267804, 363.3230592, 69.46439199999999, 339.6923136], "area": 23596.520031297325, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1388, "image_id": 267, "category_id": 127, "bbox": [401.74630912, 0.0, 166.13572608000004, 250.83628512], "area": 41672.86835562111, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1389, "image_id": 267, "category_id": 127, "bbox": [604.129792, 0.0, 161.60471040000004, 226.6592872], "area": 36629.20846742643, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1390, "image_id": 244, "category_id": 127, "bbox": [110.27692544, 110.129769496, 738.68035072, 566.381664104], "area": 418375.00628171995, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 1391, "image_id": 145, "category_id": 127, "bbox": [382.29866350000003, 1007.3864192, 52.887196610000004, 16.613580800000022], "area": 878.6457141657223, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1392, "image_id": 215, "category_id": 127, "bbox": [262.40000256, 452.8, 259.20002304, 510.40000000000003], "area": 132295.69175961602, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1393, "image_id": 215, "category_id": 127, "bbox": [262.40000256, 468.8, 263.99997696, 369.59999999999997], "area": 97574.391484416, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1394, "image_id": 150, "category_id": 127, "bbox": [92.79999744, 363.2, 57.60000767999999, 158.40000000000003], "area": 9123.841216512, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1395, "image_id": 150, "category_id": 127, "bbox": [92.79999744, 369.6, 108.80000256, 145.60000000000002], "area": 15841.280372736002, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1396, "image_id": 150, "category_id": 127, "bbox": [135.99999744000002, 363.2, 60.800002559999974, 148.8], "area": 9047.040380927996, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1397, "image_id": 150, "category_id": 127, "bbox": [321.6, 326.4, 41.59999487999998, 116.80000000000001], "area": 4858.879401983999, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1398, "image_id": 151, "category_id": 127, "bbox": [279.1047168, 935.2779776, 109.05412608, 86.87363072000005], "area": 9473.927877566248, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1399, "image_id": 151, "category_id": 127, "bbox": [521.2419072, 914.9458432, 92.41876479999996, 107.20576512000002], "area": 9907.824391829323, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1400, "image_id": 152, "category_id": 127, "bbox": [884.8, 492.79998720000003, 137.60000000000002, 97.60001280000003], "area": 13429.761761280008, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1401, "image_id": 157, "category_id": 127, "bbox": [265.59999744, 524.8, 139.20000768, 438.4000000000001], "area": 61025.283366912015, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1402, "image_id": 157, "category_id": 127, "bbox": [395.20001279999997, 539.2, 124.79996160000005, 448.0], "area": 55910.38279680002, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1403, "image_id": 248, "category_id": 127, "bbox": [0.0, 631.3156096, 27.19911583, 89.10919679999995], "area": 2423.691365281464, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1404, "image_id": 248, "category_id": 127, "bbox": [31.732301573999997, 623.76403968, 36.265484586, 89.10912512000004], "area": 3231.585603511307, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1405, "image_id": 248, "category_id": 127, "bbox": [66.486727888, 324.71975936, 172.261058272, 261.28615424], "area": 45009.42944120342, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1406, "image_id": 248, "category_id": 127, "bbox": [205.50442768, 635.84661504, 72.53096644000003, 306.59588096000004], "area": 22237.695552552006, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1407, "image_id": 248, "category_id": 127, "bbox": [436.6968815, 173.68731648, 28.710178199999962, 141.97049343999998], "area": 4075.9981658043253, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1408, "image_id": 248, "category_id": 127, "bbox": [465.4070597, 200.87315456, 49.86504455000001, 114.78465535999999], "area": 5723.741953182796, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1409, "image_id": 164, "category_id": 127, "bbox": [172.8, 612.8, 208.00000512000003, 411.20000000000005], "area": 85529.60210534402, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1410, "image_id": 164, "category_id": 127, "bbox": [392.00002559999996, 624.0, 166.39994880000003, 400.0], "area": 66559.97952000001, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1411, "image_id": 166, "category_id": 127, "bbox": [471.45133649999997, 871.45721856, 31.732316600000043, 152.54278144], "area": 4840.535835698691, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1412, "image_id": 253, "category_id": 127, "bbox": [323.2, 430.39997952, 163.2, 225.60004607999994], "area": 36817.92752025599, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1413, "image_id": 253, "category_id": 127, "bbox": [462.4, 441.59999999999997, 152.0, 275.20000512], "area": 41830.40077824001, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1414, "image_id": 253, "category_id": 127, "bbox": [536.0, 332.80000512000004, 33.60000000000002, 62.40000767999999], "area": 2096.6402580480008, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1415, "image_id": 253, "category_id": 127, "bbox": [568.0, 336.0, 19.200000000000045, 70.39997952000002], "area": 1351.6796067840035, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1416, "image_id": 253, "category_id": 127, "bbox": [788.8, 307.20000000000005, 14.400000000000091, 27.200002559999987], "area": 391.6800368640023, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1417, "image_id": 253, "category_id": 127, "bbox": [803.2, 310.40000256, 12.799999999999955, 20.799997440000013], "area": 266.23996723199923, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1418, "image_id": 253, "category_id": 127, "bbox": [862.4, 318.39999744, 9.600000000000023, 17.60000255999998], "area": 168.9600245760002, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1419, "image_id": 253, "category_id": 127, "bbox": [873.6, 318.39999744, 8.0, 22.40000255999996], "area": 179.2000204799997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1420, "image_id": 253, "category_id": 127, "bbox": [1000.0, 305.60000256, 9.600000000000023, 38.39999232000004], "area": 368.6399262720012, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1421, "image_id": 253, "category_id": 127, "bbox": [1009.6, 316.79999999999995, 9.600000000000023, 25.59999744000004], "area": 245.75997542400097, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1422, "image_id": 254, "category_id": 127, "bbox": [245.76923349999998, 384.45550592, 384.12822853999995, 639.54449408], "area": 245667.0935834609, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1423, "image_id": 254, "category_id": 127, "bbox": [520.6666927, 548.4412928, 354.99995314000006, 475.55870719999996], "area": 168823.318771319, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1424, "image_id": 268, "category_id": 127, "bbox": [545.6, 319.99999488000003, 81.60000000000002, 147.20001792], "area": 12011.521462272001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1425, "image_id": 268, "category_id": 127, "bbox": [598.4, 291.19999487999996, 89.60000000000002, 192.0], "area": 17203.200000000004, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1426, "image_id": 269, "category_id": 127, "bbox": [298.33546415, 367.38931712, 70.28848627999997, 267.33437951999997], "area": 18790.528867063822, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1427, "image_id": 269, "category_id": 127, "bbox": [367.06197887, 339.2488448, 126.51923583000001, 212.61680640000003], "area": 26900.11587034306, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1428, "image_id": 176, "category_id": 127, "bbox": [40.664260608, 567.4512896, 99.81226803199999, 168.20214783999995], "area": 16788.637863764165, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1429, "image_id": 176, "category_id": 127, "bbox": [88.7220224, 576.6931456, 121.99277568000001, 164.50539520000007], "area": 20068.46977478336, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1430, "image_id": 176, "category_id": 127, "bbox": [284.64980992, 831.7689856, 212.56316928, 192.23101440000005], "area": 40861.23365477333, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1431, "image_id": 176, "category_id": 127, "bbox": [502.75811328, 787.4079744, 190.38267392, 236.59202560000006], "area": 45043.0224618771, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1432, "image_id": 256, "category_id": 127, "bbox": [0.0, 203.89380096, 54.39823166, 212.95575040000003], "area": 11584.416243588339, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1433, "image_id": 256, "category_id": 127, "bbox": [57.420352302000005, 212.9557504, 48.353986278, 209.93511424000002], "area": 10151.199633231323, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1434, "image_id": 256, "category_id": 127, "bbox": [132.97345441, 194.83186176, 34.75442085000001, 169.15633152], "area": 5878.930335088202, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1435, "image_id": 256, "category_id": 127, "bbox": [176.79424948, 202.38348288, 27.199108999999996, 67.96460032000002], "area": 1848.5765722451151, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1436, "image_id": 256, "category_id": 127, "bbox": [235.72566142, 593.557504, 190.39380398000003, 428.93219840000006], "area": 81666.03290288009, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1437, "image_id": 256, "category_id": 127, "bbox": [346.03318028, 569.3923328, 137.50664152000002, 453.0973696000001], "area": 62303.89757524217, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1438, "image_id": 256, "category_id": 127, "bbox": [513.7610692, 120.8259584, 18.132762099999987, 117.805312], "area": 2136.1356966122735, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1439, "image_id": 256, "category_id": 127, "bbox": [522.8274160999999, 116.29498368, 28.710178200000037, 119.31564032], "area": 3425.5732956343095, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1440, "image_id": 256, "category_id": 127, "bbox": [592.3362851200001, 161.60472064, 43.820774579999956, 135.92921088], "area": 5956.5233088097575, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1441, "image_id": 256, "category_id": 127, "bbox": [618.0243180900001, 167.64601344, 46.84291981, 126.86726144], "area": 5942.832954148224, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1442, "image_id": 257, "category_id": 127, "bbox": [400.9972736, 420.26681271999996, 94.35230207999996, 153.95914438000003], "area": 14526.39969852009, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1443, "image_id": 257, "category_id": 127, "bbox": [496.7371264, 423.0408787, 76.314368, 151.1850784], "area": 11537.593709126453, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1444, "image_id": 257, "category_id": 127, "bbox": [571.66394368, 432.75, 45.78863104000004, 141.47595710000002], "area": 6477.990400682775, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1445, "image_id": 257, "category_id": 127, "bbox": [618.840064, 428.58892411000005, 56.88893440000004, 145.63703299], "area": 8285.13561597875, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1446, "image_id": 258, "category_id": 127, "bbox": [163.19468815000002, 635.84661504, 184.34956133000003, 285.45130496], "area": 52622.82285045207, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1447, "image_id": 258, "category_id": 127, "bbox": [324.87832076, 661.5221248, 202.48230293999998, 193.32150272], "area": 39144.183078567075, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1448, "image_id": 192, "category_id": 127, "bbox": [147.19999488, 715.2, 497.60001024, 203.19999999999993], "area": 101112.32208076798, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1449, "image_id": 193, "category_id": 127, "bbox": [188.80000512, 485.5586816, 492.79999488, 538.4413184], "area": 265343.87895070045, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1450, "image_id": 193, "category_id": 127, "bbox": [443.20001279999997, 487.1611904, 259.1999616, 520.81378304], "area": 134994.91256471872, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1451, "image_id": 198, "category_id": 127, "bbox": [0.0, 175.1976448, 89.15265251, 315.65782016], "area": 28141.731952788552, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1452, "image_id": 198, "category_id": 127, "bbox": [78.57522275, 197.85250816, 49.86504455, 217.48672511999996], "area": 10844.985237142402, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1453, "image_id": 198, "category_id": 127, "bbox": [134.48450995000002, 232.58996736, 27.199115829999993, 87.59881727999999], "area": 2382.610377769725, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1454, "image_id": 198, "category_id": 127, "bbox": [157.1504455, 240.14158848, 31.732302939999993, 80.04719616], "area": 2540.0818780467243, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1455, "image_id": 198, "category_id": 127, "bbox": [418.56413989, 206.9144576, 77.06416721000004, 188.79055872000004], "area": 14548.987184867414, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1456, "image_id": 198, "category_id": 127, "bbox": [463.8959905, 188.79055872, 43.82082922000001, 92.12979199999998], "area": 4037.203881306122, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1457, "image_id": 198, "category_id": 127, "bbox": [497.13937630000004, 196.34217984, 60.442494800000006, 172.17698815999998], "area": 10406.806711540461, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1458, "image_id": 198, "category_id": 127, "bbox": [569.6703564, 211.44543232, 37.776525100000015, 51.351019519999966], "area": 1939.8630778078693, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1459, "image_id": 198, "category_id": 127, "bbox": [604.42478408, 199.36283648, 28.710178200000037, 51.35102975999999], "area": 1474.2972151631047, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1460, "image_id": 220, "category_id": 127, "bbox": [321.6, 672.0, 46.39999999999998, 96.0], "area": 4454.399999999998, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1461, "image_id": 220, "category_id": 127, "bbox": [587.2, 275.19998976, 188.79999999999995, 158.40003071999996], "area": 29905.925799935987, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1462, "image_id": 220, "category_id": 127, "bbox": [606.4, 481.60002048, 188.80000000000007, 120.0], "area": 22656.000000000007, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1463, "image_id": 220, "category_id": 127, "bbox": [817.6, 639.9999744, 22.399999999999977, 126.40000511999997], "area": 2831.3601146879964, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1464, "image_id": 220, "category_id": 127, "bbox": [819.2, 656.0000256, 188.79999999999995, 111.99997440000004], "area": 21145.595166720002, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1465, "image_id": 205, "category_id": 127, "bbox": [0.0, 549.23638784, 41.922581274, 166.01208831999998], "area": 6959.655265061666, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1466, "image_id": 205, "category_id": 127, "bbox": [45.02795598, 566.3030272, 32.60645138, 201.69697280000003], "area": 6576.622537096384, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1467, "image_id": 23, "category_id": 14, "bbox": [211.2, 307.20000000000005, 43.20000000000002, 38.39999999999999], "area": 1658.8800000000006, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1468, "image_id": 23, "category_id": 14, "bbox": [286.4, 304.00000511999997, 35.200000000000045, 44.80000512000001], "area": 1576.9601802240022, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1469, "image_id": 23, "category_id": 14, "bbox": [456.0, 420.79998720000003, 209.60000000000002, 203.2000128], "area": 42590.722682880005, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1470, "image_id": 23, "category_id": 14, "bbox": [809.6, 403.20000000000005, 201.60000000000002, 211.20000000000002], "area": 42577.92000000001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1471, "image_id": 27, "category_id": 14, "bbox": [255.24484096, 672.4225839000001, 151.03244288, 10.577416099999976], "area": 1597.5329929412385, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1472, "image_id": 27, "category_id": 14, "bbox": [726.466048, 636.1570597, 244.67261440000004, 46.84294030000002], "area": 11461.184669384127, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1473, "image_id": 30, "category_id": 14, "bbox": [342.95873536, 466.15401840000004, 199.92383487999996, 198.15602029999994], "area": 39616.111482935106, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1474, "image_id": 30, "category_id": 14, "bbox": [716.8, 466.15401840000004, 193.42223360000003, 194.90757313999995], "area": 37699.45814229416, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1475, "image_id": 45, "category_id": 14, "bbox": [67.897155584, 119.36385216, 38.798381056, 29.146999680000018], "area": 1130.8564002237508, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1476, "image_id": 45, "category_id": 14, "bbox": [69.282816, 134.63132544, 15.242219520000006, 16.655420160000006], "area": 253.8655702765537, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1477, "image_id": 45, "category_id": 14, "bbox": [87.29634816, 123.52770432, 41.569679359999995, 26.37109440000001], "area": 1096.237938580292, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1478, "image_id": 45, "category_id": 14, "bbox": [126.094718976, 251.2192896, 29.098788864, 152.67469824000003], "area": 4442.648808960673, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1479, "image_id": 45, "category_id": 14, "bbox": [127.480377344, 270.650592, 15.242213375999995, 112.42408319999998], "area": 1713.591864735576, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1480, "image_id": 45, "category_id": 14, "bbox": [145.4939136, 120.7518048, 15.242219519999992, 19.431331199999992], "area": 296.1766157162247, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1481, "image_id": 45, "category_id": 14, "bbox": [155.19350784, 324.7807104, 47.11230463999999, 213.74457984], "area": 10069.999760570881, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1482, "image_id": 45, "category_id": 14, "bbox": [160.73613312, 109.64818944, 15.242219519999992, 31.92289920000001], "area": 486.57583732123226, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1483, "image_id": 45, "category_id": 14, "bbox": [177.36399872, 113.81205311999999, 48.497971199999995, 23.59517184], "area": 1144.317964355371, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1484, "image_id": 45, "category_id": 14, "bbox": [210.6197504, 108.2602368, 23.556167680000016, 27.759035519999998], "area": 653.8964953441964, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1485, "image_id": 45, "category_id": 14, "bbox": [224.4763136, 249.8313312, 59.58323199999998, 130.46745600000003], "area": 7773.672699297791, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1486, "image_id": 45, "category_id": 14, "bbox": [231.40460544, 333.10842048, 103.92422399999998, 190.14941376], "area": 19761.130269062916, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1487, "image_id": 45, "category_id": 14, "bbox": [242.489856, 109.64818944, 26.327470079999983, 22.20723072], "area": 584.6602023404564, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1488, "image_id": 45, "category_id": 14, "bbox": [284.0595456, 111.03614208, 29.09878272000003, 16.655425919999985], "area": 484.65261995513623, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1489, "image_id": 45, "category_id": 14, "bbox": [303.45874432, 220.68433152, 62.35450367999999, 116.58794112000004], "area": 7269.783203610665, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1490, "image_id": 45, "category_id": 14, "bbox": [353.34234112, 102.70843776, 16.62787584, 20.819266559999996], "area": 346.18017943954385, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1491, "image_id": 45, "category_id": 14, "bbox": [365.813248, 104.09638464, 24.941813760000002, 19.431319679999998], "area": 484.6523565695828, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1492, "image_id": 45, "category_id": 14, "bbox": [381.055488, 204.02891712000002, 60.96885759999998, 98.54457408], "area": 6008.1501043361695, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1493, "image_id": 45, "category_id": 14, "bbox": [400.45467648, 104.09638464, 15.242219519999992, 18.0433728], "area": 275.0210490987969, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1494, "image_id": 45, "category_id": 14, "bbox": [422.6251776, 262.3228992, 56.81189888, 149.89879296], "area": 8516.035067877576, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1495, "image_id": 45, "category_id": 14, "bbox": [471.1231488, 190.14939071999999, 65.12578560000003, 95.76868032000002], "area": 6237.010541715263, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1496, "image_id": 45, "category_id": 14, "bbox": [478.0514304, 484.39517184, 193.99184383999994, 91.60482815999998], "area": 17770.589519404748, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1497, "image_id": 45, "category_id": 14, "bbox": [504.37888, 241.5036096, 108.0812032, 123.52771583999997], "area": 13351.024156534897, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1498, "image_id": 45, "category_id": 14, "bbox": [507.15020288, 427.48914816, 253.57509632, 145.73493503999998], "area": 36954.75018995694, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1499, "image_id": 45, "category_id": 14, "bbox": [545.94861056, 180.43373952, 65.12579584000002, 87.44095296000002], "area": 5694.661650528007, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1500, "image_id": 45, "category_id": 14, "bbox": [570.89038336, 172.10603519999998, 69.28283648000001, 63.845769600000004], "area": 4423.416015136556, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1501, "image_id": 45, "category_id": 14, "bbox": [570.89038336, 233.17590528, 94.22460927999998, 95.76865151999999], "area": 9023.763770744476, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1502, "image_id": 45, "category_id": 14, "bbox": [651.2584704, 201.2530176, 108.08119296000007, 109.64818944], "area": 11850.907120579282, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1503, "image_id": 45, "category_id": 14, "bbox": [705.2990464, 188.76144384, 98.38161920000005, 97.1566272], "area": 9558.426299946768, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1504, "image_id": 45, "category_id": 14, "bbox": [741.3261312, 338.6602368, 218.93369856000004, 179.0457984], "area": 39199.15885534014, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1505, "image_id": 45, "category_id": 14, "bbox": [745.48308992, 179.04578688, 92.83898367999996, 87.44095872000001], "area": 8117.92973956963, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1506, "image_id": 45, "category_id": 14, "bbox": [791.20971776, 172.10603519999998, 36.02709504000006, 81.88914816], "area": 2950.2281235049663, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1507, "image_id": 45, "category_id": 14, "bbox": [809.2232704, 299.79759744, 177.36400895999998, 133.24334976], "area": 23632.574680693047, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1508, "image_id": 45, "category_id": 14, "bbox": [842.4790016, 260.9349408, 169.050112, 129.07949760000002], "area": 21820.90352618374, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1509, "image_id": 45, "category_id": 14, "bbox": [856.3355648, 233.17590528, 124.70910975999993, 109.64820672000002], "area": 13674.130246831646, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1510, "image_id": 45, "category_id": 14, "bbox": [943.6319744, 190.14939071999999, 77.59672320000004, 63.84579263999999], "area": 4954.224298970679, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1511, "image_id": 45, "category_id": 14, "bbox": [956.1028608, 205.416864, 66.51146239999991, 59.68192895999998], "area": 3969.5323739825044, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1512, "image_id": 45, "category_id": 14, "bbox": [999.05816576, 179.04578688, 23.556157439999993, 40.25059199999999], "area": 948.1492822052039, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1513, "image_id": 55, "category_id": 14, "bbox": [135.10044672, 325.62092325000003, 167.34030848, 238.07186595000002], "area": 39839.01948848221, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1514, "image_id": 55, "category_id": 14, "bbox": [400.69564416, 347.1241776, 187.29836544000005, 244.21572239999998], "area": 45741.20562026881, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1515, "image_id": 58, "category_id": 14, "bbox": [547.44037376, 576.38054914, 40.71870463999994, 96.56637826000004], "area": 3932.057834523453, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1516, "image_id": 58, "category_id": 14, "bbox": [548.9484288, 580.9070717999999, 73.8969088, 87.51328520000004], "area": 6466.961255212793, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1517, "image_id": 58, "category_id": 14, "bbox": [589.6671744, 573.36282872, 70.88067583999998, 90.53095787999999], "area": 6416.895478976971, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1518, "image_id": 58, "category_id": 14, "bbox": [646.974976, 562.80088568, 159.85858560000008, 116.18143482000004], "area": 18572.599843303808, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1519, "image_id": 78, "category_id": 14, "bbox": [153.0279424, 313.66124990000003, 193.07260928000002, 190.48827880000002], "area": 36778.06902517211, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1520, "image_id": 78, "category_id": 14, "bbox": [968.2234368, 355.19622960000004, 55.776563200000055, 257.80377039999996], "area": 14379.408292913902, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1521, "image_id": 78, "category_id": 14, "bbox": [971.083776, 368.08643037999997, 52.91622400000006, 200.51404092], "area": 10610.445904467897, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1522, "image_id": 89, "category_id": 14, "bbox": [88.95787200000001, 635.48235776, 221.64080479999998, 186.72943104], "area": 41386.8613755517, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1523, "image_id": 89, "category_id": 14, "bbox": [366.385836, 412.61175808, 194.50108000000003, 218.35297792], "area": 42469.89002665616, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1524, "image_id": 102, "category_id": 14, "bbox": [265.81710848, 356.61062369999996, 63.43362559999997, 67.99777250000005], "area": 4313.3452423989775, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1525, "image_id": 102, "category_id": 14, "bbox": [332.27139072, 247.81416038, 92.12979200000001, 93.68583962], "area": 8631.256917535959, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1526, "image_id": 23, "category_id": 261, "bbox": [585.6, 62.400000000000006, 284.79999999999995, 508.79999999999995], "area": 144906.23999999996, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1527, "image_id": 112, "category_id": 261, "bbox": [0.0, 111.19611392, 779.464812, 912.80388608], "area": 711498.5094562167, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1528, "image_id": 112, "category_id": 261, "bbox": [405.52112342, 136.09075712, 420.47887658, 887.90924288], "area": 373347.0809511808, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1529, "image_id": 116, "category_id": 261, "bbox": [201.6, 401.6000256, 88.00000000000003, 127.99999487999997], "area": 11263.999549440003, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1530, "image_id": 116, "category_id": 261, "bbox": [836.8, 390.3999744, 120.0, 164.80002048], "area": 19776.0024576, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1531, "image_id": 119, "category_id": 261, "bbox": [56.254542435, 16.542810112, 761.090913765, 1005.802917888], "area": 765507.4618428812, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1532, "image_id": 120, "category_id": 261, "bbox": [0.0, 16.613569536, 683.0, 1007.386430464], "area": 688044.932006912, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1533, "image_id": 28, "category_id": 261, "bbox": [129.6, 75.20000256, 584.0, 691.19997696], "area": 403660.78654463997, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1534, "image_id": 240, "category_id": 261, "bbox": [26.089171968, 63.03254345999999, 382.641175552, 919.40561094], "area": 351802.44377918635, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1535, "image_id": 240, "category_id": 261, "bbox": [521.7834496, 36.950106708, 467.43096319999995, 925.926202092], "area": 432806.57649598137, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1536, "image_id": 123, "category_id": 261, "bbox": [540.8, 395.20001279999997, 68.80000000000007, 209.5999872], "area": 14420.479119360012, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1537, "image_id": 123, "category_id": 261, "bbox": [553.6, 425.6000256, 97.60000000000002, 340.79995392], "area": 33262.07550259201, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1538, "image_id": 124, "category_id": 261, "bbox": [0.0, 0.0, 467.05751669999995, 1022.4918528], "area": 477562.50561474985, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1539, "image_id": 124, "category_id": 261, "bbox": [242.5685907, 98.026512384, 436.9247649, 515.7702492159999], "area": 225352.79488111517, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1540, "image_id": 127, "category_id": 261, "bbox": [0.0, 253.48672843999998, 1024.0, 262.53981468], "area": 268840.77023232, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 1541, "image_id": 270, "category_id": 261, "bbox": [0.0, 0.0, 928.1516544, 422.7768657], "area": 392401.0473415016, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 1542, "image_id": 266, "category_id": 261, "bbox": [0.0, 0.0, 770.0767338, 1020.6967808], "area": 786014.8431586387, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1543, "image_id": 131, "category_id": 261, "bbox": [144.17328128, 0.0, 829.92059392, 1024.0], "area": 849838.68817408, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1544, "image_id": 133, "category_id": 261, "bbox": [14.23255878, 0.0, 722.69763962, 1024.0], "area": 740042.38297088, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1545, "image_id": 133, "category_id": 261, "bbox": [49.023257271999995, 0.0, 113.86045976799998, 200.69136384], "area": 22850.810958289367, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1546, "image_id": 134, "category_id": 261, "bbox": [0.0, 18.70069606, 483.23596288, 601.29930394], "area": 290569.4481185197, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1547, "image_id": 134, "category_id": 261, "bbox": [454.47192576, 50.34802380000001, 540.76401664, 569.6519762], "area": 308047.2907368257, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1548, "image_id": 135, "category_id": 261, "bbox": [256.75964416, 135.16264040000002, 262.83679744000005, 379.67033696000004], "area": 99791.3354495321, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1549, "image_id": 135, "category_id": 261, "bbox": [411.72699136, 150.34945222, 159.52523263999996, 369.03957145], "area": 58871.123488927136, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1550, "image_id": 135, "category_id": 261, "bbox": [423.8813184, 167.05494384000002, 91.15725823999998, 179.20441679000004], "area": 16335.783299074621, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1551, "image_id": 135, "category_id": 261, "bbox": [464.90207232, 159.46153793, 101.79226624, 353.85275963000004], "area": 36019.474318015695, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1552, "image_id": 242, "category_id": 261, "bbox": [487.72883631999997, 103.38461952, 158.14233608000006, 617.3538432], "area": 97629.77895161406, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1553, "image_id": 243, "category_id": 261, "bbox": [163.78, 25.8585856, 425.82800000000003, 984.3501824], "area": 419163.8694710272, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1554, "image_id": 140, "category_id": 261, "bbox": [0.0, 0.0, 531.0977024, 768.0], "area": 407883.03544320003, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1555, "image_id": 140, "category_id": 261, "bbox": [471.07638272, 0.0, 552.9236172799999, 768.0], "area": 424645.33807103994, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1556, "image_id": 141, "category_id": 261, "bbox": [0.0, 0.0, 1024.0, 681.0], "area": 697344.0, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 1557, "image_id": 215, "category_id": 261, "bbox": [152.00000255999998, 102.4, 375.99999744, 862.4], "area": 324262.39779225603, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1558, "image_id": 271, "category_id": 261, "bbox": [118.784, 235.52000255999997, 45.056, 65.53599744000003], "area": 2952.7899006566413, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1559, "image_id": 271, "category_id": 261, "bbox": [854.016, 280.57598976, 118.78399999999999, 442.3680230399999], "area": 52546.24324878334, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1560, "image_id": 271, "category_id": 261, "bbox": [952.32, 333.82399488, 45.055999999999926, 395.26397952], "area": 17809.013861253094, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1561, "image_id": 148, "category_id": 261, "bbox": [198.7764736, 0.0, 823.71766272, 678.492236], "area": 558886.0388115867, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1562, "image_id": 151, "category_id": 261, "bbox": [277.25631488, 0.0, 432.51986432, 1022.15160832], "area": 442100.8749450362, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1563, "image_id": 226, "category_id": 261, "bbox": [115.19999999999999, 70.4, 408.0, 862.4], "area": 351859.2, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1564, "image_id": 153, "category_id": 261, "bbox": [17.92, 148.57245844000002, 463.35999999999996, 438.03258225999997], "area": 202966.77731599356, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1565, "image_id": 157, "category_id": 261, "bbox": [148.8, 19.2, 374.40000000000003, 971.1999999999999], "area": 363617.28, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1566, "image_id": 248, "category_id": 261, "bbox": [0.0, 498.40707584, 75.55309801, 225.03837696], "area": 17002.346550470204, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1567, "image_id": 248, "category_id": 261, "bbox": [411.0088417, 0.0, 114.8407128, 332.27139072], "area": 38158.28335333211, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1568, "image_id": 161, "category_id": 261, "bbox": [0.0, 76.91311104, 679.4900187000001, 947.08688896], "area": 643536.0878899553, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1569, "image_id": 58, "category_id": 261, "bbox": [110.09130496, 354.579643, 170.41531903999999, 327.420357], "area": 55797.44459834569, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1570, "image_id": 162, "category_id": 261, "bbox": [0.0, 105.73750000000001, 777.2144128, 660.05833846], "area": 513006.85393993254, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1571, "image_id": 164, "category_id": 261, "bbox": [144.0, 1.6, 489.59999999999997, 1020.8], "area": 499783.67999999993, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1572, "image_id": 166, "category_id": 261, "bbox": [55.909289932, 640.3775488, 423.09735158800004, 383.6224512], "area": 162309.6431124168, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 1573, "image_id": 253, "category_id": 261, "bbox": [324.8, 188.80000512, 291.2, 524.8000204800001], "area": 152821.765963776, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1574, "image_id": 253, "category_id": 261, "bbox": [536.0, 251.19998976, 65.60000000000002, 152.00001024], "area": 9971.200671744005, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1575, "image_id": 253, "category_id": 261, "bbox": [787.2, 265.59999744, 35.19999999999993, 72.0], "area": 2534.399999999995, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1576, "image_id": 253, "category_id": 261, "bbox": [996.8, 273.6, 22.40000000000009, 73.59998976], "area": 1648.6397706240068, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1577, "image_id": 254, "category_id": 261, "bbox": [258.51283038, 0.0, 660.84611922, 1024.0], "area": 676706.42608128, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1578, "image_id": 231, "category_id": 261, "bbox": [48.0, 409.60002048, 211.2, 358.39997952], "area": 75694.07567462401, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 1579, "image_id": 231, "category_id": 261, "bbox": [816.0, 257.60000256, 182.39999999999998, 510.39999744], "area": 93096.959533056, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1580, "image_id": 170, "category_id": 261, "bbox": [376.07079936, 77.06416038, 317.16814848, 602.91373537], "area": 191225.0331404636, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1581, "image_id": 176, "category_id": 261, "bbox": [0.0, 330.85919232, 184.83753984, 406.64263680000005], "area": 75162.82458016266, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1582, "image_id": 176, "category_id": 261, "bbox": [138.62815744, 9.241877504, 772.62094336, 1014.758122496], "area": 784023.3778850819, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1583, "image_id": 177, "category_id": 261, "bbox": [0.0, 1.5125553152, 589.7351046, 1020.9748942848], "area": 602104.7360750205, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1584, "image_id": 255, "category_id": 261, "bbox": [1.5110619602, 0.0, 679.9778688398, 1022.4897024], "area": 695270.3687485934, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1585, "image_id": 183, "category_id": 261, "bbox": [0.0, 60.32400384, 631.1707533, 963.67599616], "area": 608244.1044334351, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1586, "image_id": 186, "category_id": 261, "bbox": [0.0, 0.0, 537.82788096, 643.33186836], "area": 346001.81551409647, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1587, "image_id": 258, "category_id": 261, "bbox": [154.12832076, 244.6725632, 373.23230293999995, 676.6253568], "area": 252538.44014606313, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1588, "image_id": 188, "category_id": 261, "bbox": [190.39380398, 182.74926592, 250.83628512, 700.790528], "area": 175783.69269080335, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1589, "image_id": 189, "category_id": 261, "bbox": [0.0, 523.2008765, 170.9187584, 160.28698599999998], "area": 27396.05263479818, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1590, "image_id": 191, "category_id": 261, "bbox": [0.0, 39.319689870000005, 1024.0, 837.68031013], "area": 857784.63757312, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1591, "image_id": 191, "category_id": 261, "bbox": [0.0, 157.27875071, 529.1237376, 719.72124929], "area": 380821.59745446616, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1592, "image_id": 192, "category_id": 261, "bbox": [51.20000256, 27.2, 639.99999744, 969.5999999999999], "area": 620543.9975178239, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1593, "image_id": 193, "category_id": 261, "bbox": [142.40000256000002, 0.0, 559.99997184, 1020.7949824], "area": 571645.1613984132, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1594, "image_id": 195, "category_id": 261, "bbox": [0.0, 96.66076672, 681.4889308, 820.10619904], "area": 558893.2967262216, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1595, "image_id": 196, "category_id": 261, "bbox": [0.0, 102.40000512, 795.2, 665.59999488], "area": 529285.1159285761, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1596, "image_id": 196, "category_id": 261, "bbox": [595.2, 228.80001024, 428.79999999999995, 537.59996928], "area": 230522.86682726396, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1597, "image_id": 197, "category_id": 261, "bbox": [4.5309733888, 203.99335847999998, 114.78466181120001, 438.20797802], "area": 50299.554559995464, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1598, "image_id": 197, "category_id": 261, "bbox": [102.70206464, 211.54867716, 187.28023552000002, 426.11945174], "area": 79803.75128152048, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1599, "image_id": 197, "category_id": 261, "bbox": [398.72567296, 240.25885536, 196.34220031999996, 411.00886218999995], "area": 80698.38435340422, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1600, "image_id": 197, "category_id": 261, "bbox": [587.5162112, 246.30309118, 185.76992255999994, 433.67480457], "area": 80563.73486119202, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1601, "image_id": 197, "category_id": 261, "bbox": [765.7345024, 264.43583962, 256.75520000000006, 417.05309118], "area": 107080.54983653915, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1602, "image_id": 197, "category_id": 261, "bbox": [848.80236544, 352.0774161, 173.68733696000004, 329.4115147], "area": 57214.60875220291, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1603, "image_id": 198, "category_id": 261, "bbox": [0.0, 0.0, 683.0, 489.3451264], "area": 334222.72133120004, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 1604, "image_id": 199, "category_id": 261, "bbox": [0.0, 0.0, 766.0, 1024.0], "area": 784384.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1605, "image_id": 200, "category_id": 261, "bbox": [291.49261824, 148.08407128000002, 270.34808319999996, 531.89382447], "area": 143796.47591138174, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1606, "image_id": 200, "category_id": 261, "bbox": [326.23009792, 187.37167924, 564.86135808, 492.60621651], "area": 278254.2164564891, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1607, "image_id": 200, "category_id": 261, "bbox": [518.0412928, 122.39601782, 437.9940864, 557.58187793], "area": 244217.56521714668, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1608, "image_id": 99, "category_id": 261, "bbox": [484.3001856, 257.46596804999996, 110.79929855999995, 135.88481704000003], "area": 15055.942412985933, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1609, "image_id": 202, "category_id": 261, "bbox": [126.92920493, 22.654867456, 474.47343392, 983.221254144], "area": 466512.3647568327, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1610, "image_id": 204, "category_id": 261, "bbox": [0.0, 49.60975494, 1024.0, 628.39024506], "area": 643471.61094144, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 1611, "image_id": 206, "category_id": 261, "bbox": [175.1976448, 154.35398448, 259.77580544, 529.64601552], "area": 137589.22027979474, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1612, "image_id": 206, "category_id": 261, "bbox": [543.71679232, 172.51326792, 293.0029977600001, 511.48673207999997], "area": 149867.145813906, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1613, "image_id": 272, "category_id": 261, "bbox": [309.89474304, 597.9932922, 100.30407935999997, 249.66219479999998], "area": 25042.13660041097, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1614, "image_id": 273, "category_id": 261, "bbox": [206.4, 387.19999487999996, 331.20000000000005, 312.0], "area": 103334.40000000001, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1615, "image_id": 273, "category_id": 261, "bbox": [537.6, 183.99999744000002, 216.0, 380.79998976], "area": 82252.79778816001, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1616, "image_id": 273, "category_id": 261, "bbox": [694.4, 0.0, 302.4, 764.80000512], "area": 231275.521548288, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1617, "image_id": 264, "category_id": 43, "bbox": [36.265486634999995, 64.94395392, 646.734513365, 767.24483072], "area": 496203.712227511, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1618, "image_id": 274, "category_id": 43, "bbox": [0.0, 0.0, 1024.0, 649.60002048], "area": 665190.42097152, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1619, "image_id": 275, "category_id": 43, "bbox": [166.40000256000002, 155.2, 473.5999718400001, 771.2], "area": 365240.2982830081, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1620, "image_id": 276, "category_id": 43, "bbox": [0.0, 52.8, 681.5999999999999, 971.2], "area": 661969.9199999999, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1621, "image_id": 277, "category_id": 43, "bbox": [0.0, 0.0, 872.96344064, 576.0], "area": 502826.94180864, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1622, "image_id": 278, "category_id": 43, "bbox": [116.29498368, 0.0, 907.70501632, 683.0], "area": 619962.52614656, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1623, "image_id": 279, "category_id": 43, "bbox": [372.8, 44.800000512, 511.99999999999994, 620.800025088], "area": 317849.612845056, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1624, "image_id": 280, "category_id": 43, "bbox": [80.0, 0.0, 484.79999999999995, 620.80000512], "area": 300963.84248217597, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1625, "image_id": 280, "category_id": 43, "bbox": [470.4, 0.0, 536.0, 707.2000128], "area": 379059.2068608, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1626, "image_id": 281, "category_id": 43, "bbox": [0.0, 0.0, 1022.4, 768.0], "area": 785203.2, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1627, "image_id": 282, "category_id": 43, "bbox": [210.90514944, 117.97590527999999, 567.5013529600001, 458.02409472000005], "area": 259929.29344187924, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1628, "image_id": 264, "category_id": 125, "bbox": [140.52875942999998, 0.0, 42.309739530000016, 101.19174144], "area": 4281.396222913509, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1629, "image_id": 110, "category_id": 125, "bbox": [0.0, 440.6754926, 136.12998656, 215.03753880000002], "area": 29273.057266739477, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1630, "image_id": 111, "category_id": 125, "bbox": [197.949109, 815.5751936, 126.92921176000002, 143.48083199999996], "area": 18211.90890842898, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1631, "image_id": 112, "category_id": 125, "bbox": [594.9859307, 335.2479744, 196.11267829999997, 303.7147136], "area": 59562.305923213426, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1632, "image_id": 120, "category_id": 125, "bbox": [152.61725839, 598.0884992, 178.30531184999998, 306.5958912], "area": 54667.67599234466, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1633, "image_id": 120, "category_id": 125, "bbox": [433.67478408, 492.36578304, 160.17257707, 409.29790976000004], "area": 65558.3009956235, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1634, "image_id": 238, "category_id": 125, "bbox": [0.0, 0.0, 238.40000256000002, 203.2], "area": 48442.880520192004, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1635, "image_id": 122, "category_id": 125, "bbox": [95.15044352, 0.0, 385.13273344, 683.0], "area": 263045.65693952, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1636, "image_id": 122, "category_id": 125, "bbox": [457.62832384, 0.0, 341.33334016000003, 669.4004455], "area": 228488.68996710706, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1637, "image_id": 240, "category_id": 125, "bbox": [334.8110336, 528.16923, 52.17835008000003, 80.42078051999997], "area": 4196.223639679406, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1638, "image_id": 240, "category_id": 125, "bbox": [956.6029824, 312.98915886000003, 32.61143040000002, 52.16484143999995], "area": 1701.170095947595, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1639, "image_id": 123, "category_id": 125, "bbox": [264.0, 399.99997440000004, 59.19999999999999, 59.20002047999995], "area": 3504.641212415996, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1640, "image_id": 123, "category_id": 125, "bbox": [376.0, 318.39999744, 51.19999999999999, 99.20000255999994], "area": 5079.040131071995, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1641, "image_id": 123, "category_id": 125, "bbox": [582.4, 632.0000256, 14.399999999999977, 43.19996928000003], "area": 622.0795576319995, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1642, "image_id": 123, "category_id": 125, "bbox": [812.8, 710.4000000000001, 96.0, 57.599999999999966], "area": 5529.599999999997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1643, "image_id": 30, "category_id": 125, "bbox": [577.01586944, 349.20943812999997, 34.13334015999999, 32.484606070000005], "area": 1108.8081089509105, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1644, "image_id": 211, "category_id": 125, "bbox": [332.7750671, 561.2486656, 22.30896010000002, 31.59344127999998], "area": 704.8168209372132, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1645, "image_id": 211, "category_id": 125, "bbox": [390.4065102, 496.203264, 39.040644159999964, 31.59347200000002], "area": 1233.429498130923, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1646, "image_id": 211, "category_id": 125, "bbox": [462.91057736, 492.48638976, 37.18157043999997, 37.168762879999974], "area": 1381.9929751903753, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1647, "image_id": 211, "category_id": 125, "bbox": [479.642282, 538.9473792, 31.604321840000033, 26.01814016000003], "area": 822.2856752948709, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1648, "image_id": 212, "category_id": 125, "bbox": [919.1691264, 419.15606013, 103.31156480000004, 236.91426992], "area": 24475.98394888478, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1649, "image_id": 133, "category_id": 125, "bbox": [150.23255368, 18.962963456, 11.069771679999983, 15.802467328000002], "area": 174.92970530161944, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1650, "image_id": 133, "category_id": 125, "bbox": [185.0232604, 889.67901184, 137.58139031999997, 134.32098815999996], "area": 18480.068300209048, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1651, "image_id": 133, "category_id": 125, "bbox": [520.2791044, 801.1851776, 145.48831879999994, 222.81482240000003], "area": 32416.953914696573, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1652, "image_id": 283, "category_id": 125, "bbox": [187.0636032, 245.24095, 442.02434560000006, 329.75904999999995], "area": 145761.5282819277, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1653, "image_id": 283, "category_id": 125, "bbox": [325.6292352, 18.012049225, 473.8944512, 383.795190775], "area": 181878.4113055179, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1654, "image_id": 242, "category_id": 125, "bbox": [280.8135608, 246.64615680000003, 25.125415600000018, 35.4461568], "area": 890.5994210227666, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1655, "image_id": 242, "category_id": 125, "bbox": [490.68471576, 320.4923136, 32.51528423999996, 35.4461568], "area": 1152.5418635676072, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1656, "image_id": 242, "category_id": 125, "bbox": [493.64068240000006, 370.7076864, 41.38302719999999, 36.923059200000026], "area": 1527.9879631808108, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1657, "image_id": 242, "category_id": 125, "bbox": [521.7220472, 186.09231359999998, 41.38306207999997, 28.061521920000025], "area": 1161.2717036746412, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1658, "image_id": 242, "category_id": 125, "bbox": [561.6271216, 190.52307456, 60.59658800000003, 50.21538815999998], "area": 3042.881187591599, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1659, "image_id": 242, "category_id": 125, "bbox": [608.9220472000001, 165.41538816, 11.823709599999948, 8.86153728], "area": 104.77624340829342, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1660, "image_id": 284, "category_id": 125, "bbox": [1.5103244288, 0.0, 746.1002995712, 645.78759366], "area": 481822.31708909036, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1661, "image_id": 284, "category_id": 125, "bbox": [678.1357056, 3.0176990733999998, 344.3539968, 633.7168015266], "area": 218222.91344499704, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1662, "image_id": 284, "category_id": 125, "bbox": [694.7492864, 0.0, 327.7404160000001, 525.079643], "area": 172089.82062995154, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1663, "image_id": 136, "category_id": 125, "bbox": [223.232, 272.52761396, 24.575999999999993, 20.49078643999999], "area": 503.5815675494397, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1664, "image_id": 136, "category_id": 125, "bbox": [387.072, 223.34969444, 30.71999999999997, 30.736182999999983], "area": 944.2155417599986, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1665, "image_id": 136, "category_id": 125, "bbox": [524.288, 270.47852396, 40.960000000000036, 36.88343963999999], "area": 1510.7456876544013, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1666, "image_id": 136, "category_id": 125, "bbox": [960.512, 252.03681415999998, 40.960000000000036, 55.32514944000001], "area": 2266.1181210624027, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1667, "image_id": 285, "category_id": 125, "bbox": [569.29961984, 123.84115712, 454.70038016, 900.15884288], "area": 409302.5680619217, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1668, "image_id": 141, "category_id": 125, "bbox": [0.0, 379.6725501, 15.08100096, 58.7588592], "area": 886.1424120037049, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1669, "image_id": 141, "category_id": 125, "bbox": [9.0486016, 378.1659057, 28.653900800000002, 73.82523509999999], "area": 2115.3809630920778, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1670, "image_id": 141, "category_id": 125, "bbox": [51.27540736, 15.066371814000002, 40.71870464, 61.772124846000004], "area": 2515.2809065894794, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1671, "image_id": 141, "category_id": 125, "bbox": [63.34020608, 156.6902685, 46.75109888, 70.8119463], "area": 3310.5363033565504, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1672, "image_id": 141, "category_id": 125, "bbox": [95.010304, 0.0, 25.63770368, 13.559734905], "area": 347.64046547374295, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1673, "image_id": 141, "category_id": 125, "bbox": [161.36671232, 204.90265775999998, 60.32400383999999, 58.75884558000001], "area": 3544.568826401887, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1674, "image_id": 141, "category_id": 125, "bbox": [164.3829248, 384.19248330000005, 84.45359103999999, 48.212389259999966], "area": 4071.709405625325, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1675, "image_id": 141, "category_id": 125, "bbox": [180.97201152, 641.8274499, 58.815907839999994, 39.17255010000002], "area": 2303.9690965393834, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1676, "image_id": 141, "category_id": 125, "bbox": [187.00442624, 266.67477852, 43.73489664000002, 66.29204034], "area": 2899.2755323246115, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1677, "image_id": 141, "category_id": 125, "bbox": [247.32843008, 513.76325475, 55.799715840000005, 88.89161781], "area": 4960.127014355884, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1678, "image_id": 141, "category_id": 125, "bbox": [257.8851328, 219.96902004, 42.226800639999965, 70.81195991999998], "area": 2990.1625144695067, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1679, "image_id": 141, "category_id": 125, "bbox": [262.4094208, 116.01106037999999, 25.63768319999997, 48.21238926], "area": 1236.053962162961, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1680, "image_id": 141, "category_id": 125, "bbox": [274.47420928, 141.6238926, 48.259215359999985, 67.79867112000001], "area": 3271.9106707018914, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1681, "image_id": 141, "category_id": 125, "bbox": [315.1929344, 73.82522148, 58.81591807999996, 60.26548317], "area": 3544.5697211783367, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1682, "image_id": 141, "category_id": 125, "bbox": [325.74963712, 483.63053699999995, 52.78350336, 82.86503340000003], "area": 4373.906768895414, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1683, "image_id": 141, "category_id": 125, "bbox": [357.4197248, 204.90265775999998, 37.70253312, 66.29202672000001], "area": 2499.3773330027248, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1684, "image_id": 141, "category_id": 125, "bbox": [375.51693824, 91.90486575000001, 33.17819392000001, 58.75885238999999], "area": 1949.5125991120758, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1685, "image_id": 141, "category_id": 125, "bbox": [438.85714432, 120.53097315000001, 33.17818368000002, 37.66592612999998], "area": 1249.6870156184516, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1686, "image_id": 141, "category_id": 125, "bbox": [452.43004928, 342.0066444, 43.73489663999999, 76.83848304000001], "area": 3360.5231137287924, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1687, "image_id": 141, "category_id": 125, "bbox": [459.97056, 25.612832219999998, 24.129597439999998, 30.132740904], "area": 727.0909077773415, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1688, "image_id": 141, "category_id": 125, "bbox": [514.2621184, 390.21902004, 58.8159488, 33.14601336000006], "area": 1949.5142247058795, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1689, "image_id": 141, "category_id": 125, "bbox": [523.31072512, 192.84955704, 45.24305407999998, 66.29204034], "area": 2999.2543661761597, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1690, "image_id": 141, "category_id": 125, "bbox": [532.3593728, 91.90486575000001, 33.178163200000085, 61.77212757], "area": 2049.4857297286844, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1691, "image_id": 141, "category_id": 125, "bbox": [557.997056, 112.9977852, 25.63768319999997, 51.225664439999996], "area": 1313.3073566222238, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1692, "image_id": 141, "category_id": 125, "bbox": [571.5699712, 596.6283222, 88.97787903999995, 84.37167780000004], "area": 7507.212941690252, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1693, "image_id": 141, "category_id": 125, "bbox": [613.7967616, 132.58407387, 18.09722368000007, 22.599557039999997], "area": 408.9892388218002, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1694, "image_id": 141, "category_id": 125, "bbox": [642.450688, 221.47566444, 34.686279679999984, 54.23893961999999], "area": 1881.3470292059517, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1695, "image_id": 141, "category_id": 125, "bbox": [656.023552, 182.30310072, 39.21063935999996, 70.81194629999997], "area": 2776.5816887489827, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1696, "image_id": 141, "category_id": 125, "bbox": [662.05596672, 338.99336922, 37.70252287999995, 81.35840262000002], "area": 3067.4170362607983, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1697, "image_id": 141, "category_id": 125, "bbox": [681.6612352, 235.03539594, 43.73493760000008, 55.74558401999999], "area": 2438.029638590261, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1698, "image_id": 141, "category_id": 125, "bbox": [689.2017664, 186.82300668, 31.67011839999998, 70.81194630000002], "area": 2242.622723455441, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1699, "image_id": 141, "category_id": 125, "bbox": [698.2503424, 245.58185226, 46.75112960000001, 78.34514106], "area": 3662.723843226343, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1700, "image_id": 141, "category_id": 125, "bbox": [704.2827776, 378.1659057, 60.323993599999994, 102.45134250000002], "area": 6180.274129281409, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1701, "image_id": 141, "category_id": 125, "bbox": [746.50957824, 12.053097315, 22.621532160000015, 39.17256712499999], "area": 886.1434870079466, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1702, "image_id": 141, "category_id": 125, "bbox": [746.50957824, 188.32965108, 31.67010816000004, 25.612832219999987], "area": 811.1611666913336, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1703, "image_id": 141, "category_id": 125, "bbox": [752.5420032, 156.6902685, 22.62145024000006, 52.732295220000005], "area": 1192.8809923602232, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1704, "image_id": 141, "category_id": 125, "bbox": [779.6878336, 64.785400026, 25.63768319999997, 25.612828134], "area": 656.6535735555384, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1705, "image_id": 141, "category_id": 125, "bbox": [787.2282624, 99.4380537, 25.637683200000083, 42.1858389], "area": 1081.54717324444, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1706, "image_id": 141, "category_id": 125, "bbox": [830.9632, 200.38273818000002, 49.767270399999916, 70.81194629999997], "area": 3524.1172790623723, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1707, "image_id": 141, "category_id": 125, "bbox": [895.8114816, 251.60840262, 36.194437119999975, 55.74558402000003], "area": 2017.6800355295666, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1708, "image_id": 141, "category_id": 125, "bbox": [901.8438656, 48.21238926, 16.589107200000058, 34.652654354999996], "area": 574.8565978596438, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1709, "image_id": 141, "category_id": 125, "bbox": [904.8601088, 179.28982554, 39.21054719999995, 61.77212076000002], "area": 2422.1186567040777, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1710, "image_id": 141, "category_id": 125, "bbox": [918.4329728, 48.21238926, 18.097254399999997, 34.652654354999996], "area": 627.1179014977027, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1711, "image_id": 141, "category_id": 125, "bbox": [918.4329728, 320.91371814, 57.30781184, 85.87829495999998], "area": 4921.4971687076995, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1712, "image_id": 141, "category_id": 125, "bbox": [993.83800832, 209.42256372, 19.605268480000063, 27.11947661999999], "area": 531.6846201721845, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1713, "image_id": 142, "category_id": 125, "bbox": [155.64800256, 872.448, 81.91998720000002, 135.168], "area": 11072.960829849604, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1714, "image_id": 142, "category_id": 125, "bbox": [538.62400512, 841.728, 53.24798975999994, 96.25600000000009], "area": 5125.4385023385585, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1715, "image_id": 245, "category_id": 125, "bbox": [177.60434176, 421.7657598, 172.05420032, 197.00904300000002], "area": 33896.2333491735, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1716, "image_id": 245, "category_id": 125, "bbox": [829.7452544, 574.3783584, 149.853696, 180.3603648], "area": 27027.667277188306, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1717, "image_id": 215, "category_id": 125, "bbox": [153.60000000000002, 385.6, 52.79999999999998, 32.0], "area": 1689.5999999999995, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1718, "image_id": 215, "category_id": 125, "bbox": [416.00002559999996, 366.4, 19.199969280000033, 33.60000000000002], "area": 645.1189678080016, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1719, "image_id": 152, "category_id": 125, "bbox": [416.0, 428.80000512000004, 36.80000000000001, 28.800015359999975], "area": 1059.8405652479994, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1720, "image_id": 152, "category_id": 125, "bbox": [444.8, 595.2, 89.59999999999997, 36.80002559999994], "area": 3297.282293759994, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1721, "image_id": 153, "category_id": 125, "bbox": [378.88, 453.4022108, 99.84000000000003, 76.84778920000001], "area": 7672.483273728003, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1722, "image_id": 153, "category_id": 125, "bbox": [645.12, 266.40580120000004, 135.67999999999995, 125.51809339999994], "area": 17030.29491251199, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1723, "image_id": 246, "category_id": 125, "bbox": [40.77876224, 407.9867033, 18.123894784, 19.643831299999988], "area": 356.02273163584573, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1724, "image_id": 246, "category_id": 125, "bbox": [140.46017536, 382.29866350000003, 15.103242240000014, 22.665942380000008], "area": 342.32921836302256, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1725, "image_id": 246, "category_id": 125, "bbox": [187.28024064, 382.29866350000003, 18.12388864000002, 27.19910899999996], "area": 492.9536226232215, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1726, "image_id": 246, "category_id": 125, "bbox": [308.10619904, 330.92257023999997, 19.634216960000003, 10.577429760000006], "area": 207.6795507870009, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1727, "image_id": 246, "category_id": 125, "bbox": [563.35104, 379.2765251, 15.103242239999986, 21.15490049999999], "area": 319.50758681459666, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1728, "image_id": 246, "category_id": 125, "bbox": [573.9232768, 350.5663469, 21.144596479999905, 15.110651020000043], "area": 319.50861836799993, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1729, "image_id": 246, "category_id": 125, "bbox": [575.4336256, 361.1438313, 21.14457600000003, 22.66590140000003], "area": 479.2608747608077, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1730, "image_id": 246, "category_id": 125, "bbox": [643.3982464, 315.81194654, 34.7374592000001, 28.710157709999972], "area": 997.3179320766925, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1731, "image_id": 246, "category_id": 125, "bbox": [785.36870912, 268.96901990000003, 21.144545280000102, 30.221247399999964], "area": 639.0145340673846, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1732, "image_id": 154, "category_id": 125, "bbox": [234.10029568, 556.0708019, 128.37757952000004, 84.61946539999997], "area": 10863.242148328387, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1733, "image_id": 154, "category_id": 125, "bbox": [315.65780992, 519.80532551, 87.59881728000005, 57.4203564], "area": 5029.955308436081, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1734, "image_id": 228, "category_id": 125, "bbox": [489.4117888, 431.2195044, 42.164684799999975, 40.70953960000005], "area": 1716.5049055871193, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1735, "image_id": 228, "category_id": 125, "bbox": [724.32941056, 485.4988724, 48.188231679999944, 61.8182084], "area": 2978.910148421719, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1736, "image_id": 157, "category_id": 125, "bbox": [158.39999999999998, 32.0, 62.39999999999999, 84.8], "area": 5291.5199999999995, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1737, "image_id": 157, "category_id": 125, "bbox": [364.79999999999995, 17.6, 55.99998720000002, 76.80000000000001], "area": 4300.7990169600025, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1738, "image_id": 164, "category_id": 125, "bbox": [152.00000255999998, 566.4, 105.6, 83.20000000000005], "area": 8785.920000000004, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1739, "image_id": 164, "category_id": 125, "bbox": [579.19999488, 628.8, 51.19997952, 148.80000000000007], "area": 7618.556952576004, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1740, "image_id": 251, "category_id": 125, "bbox": [430.08, 524.5987488000001, 34.658467840000014, 20.479793599999986], "area": 709.7982678554376, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1741, "image_id": 251, "category_id": 125, "bbox": [820.77539328, 582.88747146, 40.96003071999996, 66.16560173999999], "area": 2710.1450798776827, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1742, "image_id": 251, "category_id": 125, "bbox": [844.40612864, 439.52867139999995, 44.11078655999995, 29.932057400000065], "area": 1320.32659527307, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1743, "image_id": 167, "category_id": 125, "bbox": [151.10619602, 711.3628672, 101.24114463999999, 105.72267520000003], "area": 10703.484651650942, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1744, "image_id": 167, "category_id": 125, "bbox": [288.61283754, 863.9055872, 131.46237838, 81.55754495999997], "area": 10721.748835275377, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1745, "image_id": 170, "category_id": 125, "bbox": [389.66372352, 515.27210425, 49.840701439999975, 67.99780665], "area": 3389.058379817495, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1746, "image_id": 170, "category_id": 125, "bbox": [566.37170688, 200.97123374, 60.412958720000006, 77.06416038], "area": 4655.6739398284, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1747, "image_id": 286, "category_id": 125, "bbox": [478.8705792, 247.2727316, 304.18826240000004, 312.10642040000005], "area": 94939.10970535992, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1748, "image_id": 180, "category_id": 125, "bbox": [370.02950656, 185.8606237, 212.95570944000002, 142.0398218], "area": 30248.19102015018, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1749, "image_id": 180, "category_id": 125, "bbox": [374.56048128, 285.5907128, 72.49557504, 24.176984259999987], "area": 1752.724376661728, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1750, "image_id": 180, "category_id": 125, "bbox": [555.7994496, 417.0531185, 193.3215232, 226.6592872], "area": 43818.118648930256, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1751, "image_id": 180, "category_id": 125, "bbox": [586.0059136, 293.14601782, 170.66662912000004, 132.97344758000003], "area": 22694.130060943633, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1752, "image_id": 255, "category_id": 125, "bbox": [0.0, 116.29498368, 98.21902673, 197.85250815999999], "area": 19432.88078756458, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1753, "image_id": 184, "category_id": 125, "bbox": [449.34266879999996, 735.4353696000001, 175.44056832, 134.20357739999994], "area": 23544.751889633102, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1754, "image_id": 186, "category_id": 125, "bbox": [214.21959168, 479.0769284, 294.74183168, 202.27692840000003], "area": 59619.47238322023, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1755, "image_id": 188, "category_id": 125, "bbox": [308.25664152, 184.259584, 33.24335847999998, 31.716812800000014], "area": 1054.3733777534526, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1756, "image_id": 188, "category_id": 125, "bbox": [343.0110692, 184.259584, 43.82080190000002, 31.716812800000014], "area": 1389.8561706081855, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1757, "image_id": 189, "category_id": 125, "bbox": [167.89364736, 514.1280515000001, 51.42687744, 69.55849624999995], "area": 3577.1762615594466, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1758, "image_id": 189, "category_id": 125, "bbox": [246.54652416, 175.4083884, 45.376665600000024, 57.461361999999994], "area": 2607.4050083945485, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1759, "image_id": 189, "category_id": 125, "bbox": [249.5716352, 157.2626973, 34.788782079999976, 37.803533400000006], "area": 1315.1388853066007, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1760, "image_id": 189, "category_id": 125, "bbox": [263.18462976, 613.92937995, 60.50223103999997, 71.07062004999997], "area": 4299.9310744211525, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1761, "image_id": 189, "category_id": 125, "bbox": [356.963072, 172.38411340000002, 40.83899392000001, 34.779237849999994], "area": 1420.349083098384, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1762, "image_id": 189, "category_id": 125, "bbox": [642.8360704, 190.52980449999998, 55.96452863999991, 61.99778820000001], "area": 3469.676993335549, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1763, "image_id": 195, "category_id": 125, "bbox": [169.23893762999998, 92.129792, 102.75220700999999, 60.41297920000001], "area": 6207.5669448492245, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1764, "image_id": 196, "category_id": 125, "bbox": [587.2, 416.00002559999996, 160.0, 163.19996928000003], "area": 26111.995084800008, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1765, "image_id": 196, "category_id": 125, "bbox": [644.8, 223.99999488000003, 152.0, 199.99997952], "area": 30399.996887040004, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1766, "image_id": 287, "category_id": 125, "bbox": [0.0, 0.0, 1003.2, 768.0], "area": 770457.6000000001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1767, "image_id": 96, "category_id": 125, "bbox": [143.77534464, 0.0, 38.34010624000001, 33.564852492], "area": 1286.880010473209, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1768, "image_id": 96, "category_id": 125, "bbox": [982.4649216, 36.761504892000005, 6.389995519999957, 9.589959491999995], "area": 61.27979819086103, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1769, "image_id": 96, "category_id": 125, "bbox": [998.439936, 11.188284928, 7.987507199999982, 6.393304799999999], "area": 51.06656812179443, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1770, "image_id": 220, "category_id": 125, "bbox": [617.6, 227.19998976, 56.0, 52.800015359999975], "area": 2956.8008601599986, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1771, "image_id": 220, "category_id": 125, "bbox": [699.2, 406.39997952, 78.39999999999998, 48.0], "area": 3763.199999999999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1772, "image_id": 220, "category_id": 125, "bbox": [708.8, 294.39999744, 84.80000000000007, 73.59999744], "area": 6241.2797829120045, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1773, "image_id": 205, "category_id": 125, "bbox": [0.0, 502.6909184, 13.974193757999998, 37.23632640000005], "area": 520.3476399497313, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1774, "image_id": 205, "category_id": 125, "bbox": [63.660212879999996, 465.45456128, 43.475266100000006, 51.19997951999994], "area": 2225.932733946548, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1775, "image_id": 205, "category_id": 125, "bbox": [88.5032293, 485.62423808, 37.2645138, 26.375761920000002], "area": 982.8799440533546, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1776, "image_id": 205, "category_id": 125, "bbox": [93.1612845, 912.2909184, 164.58493956, 111.70908159999999], "area": 18385.632443439106, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1777, "image_id": 109, "category_id": 119, "bbox": [0.0, 857.8642944, 550.0265251, 166.13570560000005], "area": 91379.04484620463, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 1778, "image_id": 110, "category_id": 119, "bbox": [0.0, 0.0, 884.84491264, 686.0], "area": 607003.61007104, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1779, "image_id": 237, "category_id": 119, "bbox": [144.99115008, 231.19248114, 244.67257344, 417.05309118], "area": 102041.45308011757, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1780, "image_id": 237, "category_id": 119, "bbox": [441.01474304, 111.81858122999999, 203.89380096000002, 534.91591506], "area": 109066.03911557992, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1781, "image_id": 111, "category_id": 119, "bbox": [46.84291981, 45.309733888, 605.9358327900001, 977.1799685120001], "area": 592108.3580060248, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1782, "image_id": 112, "category_id": 119, "bbox": [0.0, 114.51539456, 791.098609, 909.48460544], "area": 719492.0062704978, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1783, "image_id": 112, "category_id": 119, "bbox": [191.12676058, 59.747162112, 365.63378991999997, 645.6012922880001], "area": 236053.64727651112, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1784, "image_id": 112, "category_id": 119, "bbox": [415.49295060000003, 147.7082624, 410.50704939999997, 876.2917376], "area": 359723.935615775, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1785, "image_id": 114, "category_id": 119, "bbox": [510.4, 280.00000511999997, 320.0, 257.59999488], "area": 82431.9983616, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1786, "image_id": 288, "category_id": 119, "bbox": [353.03970816, 86.8736512, 120.14440448000005, 260.6209536], "area": 31312.149265281725, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1787, "image_id": 288, "category_id": 119, "bbox": [639.53789952, 90.5703936, 118.29603327999996, 256.9242112], "area": 30393.11503855294, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1788, "image_id": 117, "category_id": 119, "bbox": [130.58130063000002, 67.909248, 744.13459527, 952.5165824], "area": 708800.5415321875, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1789, "image_id": 119, "category_id": 119, "bbox": [54.60000273, 21.50565376, 764.39999727, 1002.49434624], "area": 766306.6755290464, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1790, "image_id": 120, "category_id": 119, "bbox": [0.0, 21.144542208, 683.0, 1002.855457792], "area": 684950.277671936, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1791, "image_id": 27, "category_id": 119, "bbox": [261.28613376, 43.820795069999996, 536.16523264, 636.15710068], "area": 341085.31988168013, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1792, "image_id": 238, "category_id": 119, "bbox": [0.0, 3.2, 233.60000255999998, 195.20000000000002], "area": 45598.720499712, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1793, "image_id": 122, "category_id": 119, "bbox": [0.0, 0.0, 1024.0, 683.0], "area": 699392.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1794, "image_id": 240, "category_id": 119, "bbox": [26.089171968, 60.859003056, 386.989376512, 923.752689744], "area": 357482.4774553135, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1795, "image_id": 240, "category_id": 119, "bbox": [521.7834496, 34.77657432, 469.60511999999994, 928.09973448], "area": 435840.38718244847, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1796, "image_id": 123, "category_id": 119, "bbox": [1.6, 102.40000512, 424.0, 663.9999744], "area": 281535.9891456, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1797, "image_id": 123, "category_id": 119, "bbox": [536.0, 396.79998720000003, 70.39999999999998, 208.00001279999998], "area": 14643.200901119992, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1798, "image_id": 123, "category_id": 119, "bbox": [555.2, 425.6000256, 92.79999999999995, 339.19997952], "area": 31477.758099455983, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1799, "image_id": 123, "category_id": 119, "bbox": [593.6, 196.79999999999998, 428.79999999999995, 569.59997952], "area": 244244.471218176, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1800, "image_id": 123, "category_id": 119, "bbox": [628.8, 364.79999999999995, 62.40000000000009, 115.20000000000002], "area": 7188.480000000012, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1801, "image_id": 123, "category_id": 119, "bbox": [916.8, 281.60000256, 104.0, 209.60001024000002], "area": 21798.401064960002, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1802, "image_id": 124, "category_id": 119, "bbox": [0.0, 0.0, 459.52433556, 986.29748736], "area": 453227.6975436015, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1803, "image_id": 124, "category_id": 119, "bbox": [235.03539594, 95.010304, 445.96460406000006, 512.7540428799999], "area": 228670.15371314346, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1804, "image_id": 30, "category_id": 119, "bbox": [372.21587968, 227.39219503, 450.23491071999996, 242.01026261999996], "area": 108961.46898403943, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1805, "image_id": 210, "category_id": 119, "bbox": [198.30985728, 79.36296152, 616.56337408, 894.63703848], "area": 551600.4310221676, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1806, "image_id": 289, "category_id": 119, "bbox": [0.0, 429.41934592, 169.91083317, 319.31184128], "area": 54254.5409929316, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1807, "image_id": 126, "category_id": 119, "bbox": [107.96166144, 96.44693616, 719.74439936, 704.55306384], "area": 507098.1217507685, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1808, "image_id": 225, "category_id": 119, "bbox": [0.0, 0.0, 1024.0, 681.4889308], "area": 697844.6651392, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 1809, "image_id": 128, "category_id": 119, "bbox": [30.722567974999997, 27.45741312, 724.405791725, 961.0094489600001], "area": 696160.8107290749, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1810, "image_id": 211, "category_id": 119, "bbox": [329.0569128, 336.3774976, 206.35771799999995, 338.23590399999995], "area": 69797.58929510704, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1811, "image_id": 211, "category_id": 119, "bbox": [334.6341614, 423.72415488, 176.61244244000005, 236.02173951999998], "area": 41684.37588556468, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1812, "image_id": 211, "category_id": 119, "bbox": [555.8644966, 124.5154304, 92.95393981999997, 163.5426304], "area": 15201.931824206098, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1813, "image_id": 212, "category_id": 119, "bbox": [80.52225536, 59.22857439, 943.47774464, 631.77142561], "area": 596062.2797625203, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1814, "image_id": 213, "category_id": 119, "bbox": [55.29599999999999, 28.672, 516.096, 585.728], "area": 302291.877888, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1815, "image_id": 213, "category_id": 119, "bbox": [98.304, 481.28, 501.75997440000003, 514.048], "area": 257928.71132037122, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1816, "image_id": 266, "category_id": 119, "bbox": [185.08283133999998, 0.0, 604.82426746, 1024.0], "area": 619340.04987904, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1817, "image_id": 131, "category_id": 119, "bbox": [142.32491008, 0.0, 833.61733632, 1024.0], "area": 853624.15239168, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1818, "image_id": 132, "category_id": 119, "bbox": [71.46188448, 31.25581312, 591.04932792, 989.76741888], "area": 585001.3677261372, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1819, "image_id": 133, "category_id": 119, "bbox": [0.0, 203.85184768, 208.74419544, 546.76544512], "area": 114134.11293596787, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1820, "image_id": 133, "category_id": 119, "bbox": [11.069767192, 0.0, 736.930232808, 1024.0], "area": 754616.558395392, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1821, "image_id": 133, "category_id": 119, "bbox": [47.441858859999996, 0.0, 118.60465649999999, 191.20987136], "area": 22678.381112061987, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1822, "image_id": 283, "category_id": 119, "bbox": [182.90663424, 13.855421375, 839.7076889599999, 558.373481125], "area": 468870.5054120239, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1823, "image_id": 134, "category_id": 119, "bbox": [0.0, 18.70069606, 484.6741504, 601.29930394], "area": 291434.2292732308, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1824, "image_id": 134, "category_id": 119, "bbox": [455.91012352, 53.225059400000006, 535.01119488, 566.7749406], "area": 303230.938198447, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1825, "image_id": 135, "category_id": 119, "bbox": [252.2017792, 129.08791429, 243.08605952000002, 388.78242267], "area": 94507.58713748943, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1826, "image_id": 135, "category_id": 119, "bbox": [419.32345344, 156.42417833, 147.37088512000003, 350.81539312], "area": 51699.97499781516, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1827, "image_id": 242, "category_id": 119, "bbox": [277.85763776, 97.47692544, 373.92538944000006, 556.7999769600001], "area": 208201.64822495106, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1828, "image_id": 242, "category_id": 119, "bbox": [291.1593176, 51.692310528, 329.5864392, 663.138435072], "area": 218561.43551204086, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1829, "image_id": 242, "category_id": 119, "bbox": [433.04405952, 110.76923136, 211.34915136, 607.0153958399999], "area": 128292.18877323846, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1830, "image_id": 242, "category_id": 119, "bbox": [461.12540688, 84.184616448, 227.60678911999997, 624.738442752], "area": 142194.71099461164, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1831, "image_id": 243, "category_id": 119, "bbox": [163.78, 29.306396672, 429.27599999999995, 989.521891328], "area": 424777.9994217185, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1832, "image_id": 243, "category_id": 119, "bbox": [479.27200000000005, 213.76431104, 46.547999999999945, 156.87542784], "area": 7302.2374150963105, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1833, "image_id": 243, "category_id": 119, "bbox": [543.0600000000001, 0.0, 317.216, 362.0201984], "area": 114838.59925565441, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 1834, "image_id": 136, "category_id": 119, "bbox": [227.328, 145.48466188, 225.28, 393.42330272], "area": 88630.4016367616, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1835, "image_id": 136, "category_id": 119, "bbox": [522.24, 40.981595592000005, 483.328, 458.993859408], "area": 221844.5840799498, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1836, "image_id": 290, "category_id": 119, "bbox": [134.41888256, 362.65485269, 125.35693312000001, 39.28760796000001], "area": 4924.974043486501, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1837, "image_id": 290, "category_id": 119, "bbox": [167.64601344, 184.3495545, 143.48082176000003, 63.464605879999986], "area": 9105.953804336928, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1838, "image_id": 290, "category_id": 119, "bbox": [271.85840128, 75.55309801, 90.61947392000002, 71.0199109], "area": 6435.786963603276, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1839, "image_id": 138, "category_id": 119, "bbox": [131.8307727, 93.72203008, 679.9692273, 840.02711552], "area": 571192.5886511822, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1840, "image_id": 139, "category_id": 119, "bbox": [368.519168, 261.41371488, 333.7817088, 231.19245382000003], "area": 77167.8122977047, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1841, "image_id": 140, "category_id": 119, "bbox": [0.0, 0.0, 534.73536, 768.0], "area": 410676.75648, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1842, "image_id": 140, "category_id": 119, "bbox": [471.07638272, 0.0, 552.9236172799999, 768.0], "area": 424645.33807103994, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1843, "image_id": 267, "category_id": 119, "bbox": [398.72567296, 0.0, 367.00882944, 268.96901990000003], "area": 98714.00514912307, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1844, "image_id": 141, "category_id": 119, "bbox": [0.0, 0.0, 1024.0, 681.0], "area": 697344.0, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 1845, "image_id": 214, "category_id": 119, "bbox": [134.4, 118.64718335999999, 443.20000000000005, 259.74111744], "area": 115117.26324940802, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1846, "image_id": 291, "category_id": 119, "bbox": [10.10110976, 49.317460712, 991.17141504, 419.830696288], "area": 416124.18531700544, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 1847, "image_id": 142, "category_id": 119, "bbox": [153.60000000000002, 4.096, 477.1840128, 1019.904], "area": 486681.8833907712, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1848, "image_id": 143, "category_id": 119, "bbox": [356.8, 115.19999999999999, 279.99999999999994, 292.79999999999995], "area": 81983.99999999997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1849, "image_id": 245, "category_id": 119, "bbox": [33.300811776, 0.0, 990.699188224, 924.0], "area": 915406.0499189759, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1850, "image_id": 145, "category_id": 119, "bbox": [152.61725839, 64.94395392, 391.36502406000005, 959.05604608], "area": 375340.99254898774, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1851, "image_id": 215, "category_id": 119, "bbox": [153.60000000000002, 104.0, 371.20000512, 856.0], "area": 317747.20438272, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1852, "image_id": 146, "category_id": 119, "bbox": [83.108406445, 140.46017536, 598.380524355, 882.0295270400001], "area": 527789.2908867879, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1853, "image_id": 147, "category_id": 119, "bbox": [0.0, 0.0, 1024.0, 768.0], "area": 786432.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1854, "image_id": 147, "category_id": 119, "bbox": [115.2, 0.0, 702.4, 768.0], "area": 539443.2, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1855, "image_id": 150, "category_id": 119, "bbox": [76.80000000000001, 235.2, 121.59999744000001, 284.8], "area": 34631.679270912005, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1856, "image_id": 150, "category_id": 119, "bbox": [164.80000512, 0.0, 603.19999488, 1024.0], "area": 617676.79475712, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1857, "image_id": 150, "category_id": 119, "bbox": [292.79999999999995, 195.2, 84.80000256, 238.40000000000003], "area": 20216.320610304003, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1858, "image_id": 151, "category_id": 119, "bbox": [282.8014592, 0.0, 425.12633855999997, 1022.15160832], "area": 434543.5706982968, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1859, "image_id": 152, "category_id": 119, "bbox": [120.0, 291.19999487999996, 516.8, 475.19998464], "area": 245583.352061952, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1860, "image_id": 152, "category_id": 119, "bbox": [323.2, 414.3999744, 696.0, 352.00000512], "area": 244992.00356352003, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1861, "image_id": 226, "category_id": 119, "bbox": [0.0, 300.8, 140.80000512, 299.2], "area": 42127.361531904004, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1862, "image_id": 226, "category_id": 119, "bbox": [118.40000256, 75.2, 439.99997183999994, 844.8], "area": 371711.97621043195, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1863, "image_id": 246, "category_id": 119, "bbox": [0.0, 374.74335848, 1024.0, 308.25664152], "area": 315654.80091648, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 1864, "image_id": 246, "category_id": 119, "bbox": [225.03834624, 210.03760796, 102.70206975999997, 182.83849895999998], "area": 18777.8922750036, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1865, "image_id": 246, "category_id": 119, "bbox": [486.32449024, 229.68141194, 96.66072576000005, 228.17037005999998], "area": 22055.113566927386, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1866, "image_id": 246, "category_id": 119, "bbox": [567.8820352, 235.72566142, 69.47491839999998, 276.52433858], "area": 19211.505858459466, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1867, "image_id": 246, "category_id": 119, "bbox": [587.5162112, 151.10619602, 222.01774079999996, 346.03318028], "area": 76825.50492760469, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1868, "image_id": 154, "category_id": 119, "bbox": [0.0, 9.066371488, 403.2566272, 670.911524262], "area": 270549.5184235051, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1869, "image_id": 154, "category_id": 119, "bbox": [578.45428224, 0.0, 445.54571776, 683.0], "area": 304307.72523008, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1870, "image_id": 292, "category_id": 119, "bbox": [601.73193216, 229.34512876000002, 150.8100710399999, 386.26551304000003], "area": 58252.72946186441, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1871, "image_id": 228, "category_id": 119, "bbox": [412.61175808, 262.350324, 361.41181951999994, 417.649676], "area": 150943.52932509844, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1872, "image_id": 157, "category_id": 119, "bbox": [150.40000512, 19.2, 371.20002048000003, 968.0], "area": 359321.61982464005, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1873, "image_id": 158, "category_id": 119, "bbox": [0.0, 0.0, 365.67699792, 1024.0], "area": 374453.24587008, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1874, "image_id": 158, "category_id": 119, "bbox": [365.67699792, 134.41888256, 314.30089783, 889.5811174400001], "area": 279596.1439040067, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1875, "image_id": 248, "category_id": 119, "bbox": [0.0, 498.40707584, 75.55309801, 225.03837696], "area": 17002.346550470204, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1876, "image_id": 248, "category_id": 119, "bbox": [72.53097326999999, 330.76105216, 545.49334482, 611.6814438399999], "area": 333668.1567646085, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1877, "image_id": 248, "category_id": 119, "bbox": [412.51991089999996, 0.0, 111.8185744, 317.16814848], "area": 35465.29020812113, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1878, "image_id": 159, "category_id": 119, "bbox": [0.0, 59.200000512, 712.0, 686.4000199679999], "area": 488716.814217216, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 1879, "image_id": 249, "category_id": 119, "bbox": [4471.22137824, 1630.30090368, 629.5220265599999, 1711.00881792], "area": 1077117.7385190283, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1880, "image_id": 250, "category_id": 119, "bbox": [57.392329728, 196.43805346, 184.25958707200002, 214.57078823999998], "area": 39536.72483881596, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1881, "image_id": 250, "category_id": 119, "bbox": [232.58996736, 220.61503772, 98.17108480000002, 175.28318027999998], "area": 17207.73995528157, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1882, "image_id": 250, "category_id": 119, "bbox": [246.18289152, 161.68362578, 394.19465728, 519.80530502], "area": 204904.4740646848, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1883, "image_id": 161, "category_id": 119, "bbox": [0.0, 72.3888128, 679.4900187000001, 948.5949952], "area": 644560.8310271745, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1884, "image_id": 162, "category_id": 119, "bbox": [0.0, 83.308333846, 777.2144128, 685.691666154], "area": 532929.4456717347, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1885, "image_id": 162, "category_id": 119, "bbox": [626.5790464, 22.429166923, 397.42095359999996, 746.570833077], "area": 296702.8924114077, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1886, "image_id": 163, "category_id": 119, "bbox": [81.6, 108.80000256, 393.6, 241.59999743999998], "area": 95093.758992384, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1887, "image_id": 164, "category_id": 119, "bbox": [139.2, 12.8, 494.4, 1011.2], "area": 499937.28, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1888, "image_id": 165, "category_id": 119, "bbox": [100.9811346, 149.03286784, 776.5929954, 872.56339456], "area": 677626.6202577425, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1889, "image_id": 251, "category_id": 119, "bbox": [20.48, 269.38853144, 445.83383039999995, 285.14223024], "area": 127126.0527166979, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1890, "image_id": 251, "category_id": 119, "bbox": [302.47385088, 244.1825911, 604.94764032, 437.9532941], "area": 264938.81183616596, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1891, "image_id": 252, "category_id": 119, "bbox": [605.6401408, 282.56858805999997, 327.740416, 344.52212474000004], "area": 112913.8244834915, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1892, "image_id": 166, "category_id": 119, "bbox": [60.442477725, 638.8672512, 622.557522275, 385.13274879999994], "area": 239767.28983988793, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 1893, "image_id": 167, "category_id": 119, "bbox": [0.0, 135.92920064, 683.0, 888.07079936], "area": 606552.3559628801, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1894, "image_id": 230, "category_id": 119, "bbox": [117.86283071, 143.48082176, 469.94028779, 817.08555264], "area": 383981.4197566928, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1895, "image_id": 254, "category_id": 119, "bbox": [258.51283038, 0.0, 660.84611922, 1024.0], "area": 676706.42608128, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1896, "image_id": 231, "category_id": 119, "bbox": [46.4, 176.00000255999998, 964.8000000000001, 590.39997696], "area": 569617.8977710081, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 1897, "image_id": 170, "category_id": 119, "bbox": [380.60177408, 75.55309801, 312.63717376000005, 607.44690199], "area": 189910.48264742133, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1898, "image_id": 293, "category_id": 119, "bbox": [59.2, 432.0, 964.8, 336.0], "area": 324172.8, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 1899, "image_id": 293, "category_id": 119, "bbox": [336.0, 271.99999488000003, 676.8, 56.000010239999966], "area": 37900.80693043197, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 1900, "image_id": 294, "category_id": 119, "bbox": [133.56521472, 143.53239655, 888.7858380800001, 668.16799445], "area": 593858.2509254762, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1901, "image_id": 175, "category_id": 119, "bbox": [0.0, 167.3614232, 140.0470528, 512.6385768], "area": 71793.52183242644, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1902, "image_id": 175, "category_id": 119, "bbox": [350.8705792, 268.38138, 251.482368, 354.32372399999997], "area": 89106.16915009843, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1903, "image_id": 176, "category_id": 119, "bbox": [0.0, 332.707584, 205.16967424, 402.94585343999995], "area": 82672.26948664358, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1904, "image_id": 176, "category_id": 119, "bbox": [415.8844928, 123.84115712, 229.19854080000005, 227.35019008], "area": 52108.33181693865, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1905, "image_id": 216, "category_id": 119, "bbox": [0.0, 353.60000256, 956.8, 414.39999744], "area": 396497.91755059204, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 1906, "image_id": 177, "category_id": 119, "bbox": [0.0, 0.0, 589.7351046, 1024.0], "area": 603888.7471104, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1907, "image_id": 295, "category_id": 119, "bbox": [0.0, 31.569844854000003, 1022.4963584, 643.423496346], "area": 657898.1819227807, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1908, "image_id": 179, "category_id": 119, "bbox": [96.66076672, 55.909289932, 750.63129088, 625.579640868], "area": 469579.6533729937, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1909, "image_id": 180, "category_id": 119, "bbox": [0.0, 191.90487318, 983.221248, 482.02877992000003], "area": 473940.9385648598, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1910, "image_id": 180, "category_id": 119, "bbox": [557.3097472, 1.5110619602, 466.69025280000005, 681.4889380398], "area": 318044.2447741978, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1911, "image_id": 181, "category_id": 119, "bbox": [92.15598578000001, 101.61832448, 638.84401422, 922.38167552], "area": 589258.0122321662, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1912, "image_id": 255, "category_id": 119, "bbox": [0.0, 0.0, 681.4889308, 1022.4897024], "area": 696815.4140425862, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1913, "image_id": 182, "category_id": 119, "bbox": [44.66367448, 84.83721216, 463.01346152, 939.16278784], "area": 434845.01332857175, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1914, "image_id": 183, "category_id": 119, "bbox": [0.0, 61.832108032, 662.8802925, 959.151699968], "area": 635802.75942666, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1915, "image_id": 184, "category_id": 119, "bbox": [39.384615936, 101.99469456, 628.363628544, 907.21593654], "area": 570061.4977572176, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1916, "image_id": 185, "category_id": 119, "bbox": [396.19049472, 21.337719725, 271.23809279999995, 577.642539775], "area": 156678.6608087191, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1917, "image_id": 185, "category_id": 119, "bbox": [873.1428864, 164.60526645, 150.85711360000005, 281.96270930000003], "area": 42536.0804678339, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1918, "image_id": 185, "category_id": 119, "bbox": [926.4761856, 54.868418675, 97.52381439999999, 175.274117625], "area": 17093.400516384267, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1919, "image_id": 256, "category_id": 119, "bbox": [0.0, 36.24778752, 139.01769706000002, 391.17403135999996], "area": 54380.11298934342, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1920, "image_id": 256, "category_id": 119, "bbox": [0.0, 46.820061184, 25.68805346, 191.811209216], "area": 4927.256596567852, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1921, "image_id": 256, "category_id": 119, "bbox": [75.55309801, 24.16519168, 22.665928719999997, 60.4129792], "area": 1369.3162803100424, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1922, "image_id": 256, "category_id": 119, "bbox": [92.17477725, 37.758113792, 152.61725839, 327.740418048], "area": 50018.84406607823, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1923, "image_id": 256, "category_id": 119, "bbox": [154.12832076, 55.882007552, 414.03096644, 966.607694848], "area": 400205.51806625805, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1924, "image_id": 256, "category_id": 119, "bbox": [170.75, 22.654867456, 22.665928720000014, 51.35102975999999], "area": 1163.9187802387592, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1925, "image_id": 256, "category_id": 119, "bbox": [207.01548322, 31.716813824, 48.35398218, 196.342178816], "area": 9493.926215651238, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1926, "image_id": 256, "category_id": 119, "bbox": [267.45796436, 33.227138048, 27.199108999999996, 22.654869503999997], "area": 616.1922650200718, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1927, "image_id": 256, "category_id": 119, "bbox": [290.12389307999996, 21.144542208, 87.64161063000003, 92.129795072], "area": 8074.403627121919, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1928, "image_id": 256, "category_id": 119, "bbox": [341.5, 87.598823424, 78.57521592000002, 119.31563417599999], "area": 9375.251718010933, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1929, "image_id": 256, "category_id": 119, "bbox": [389.8540095, 31.716813824, 42.309705379999954, 172.17698713599998], "area": 7284.757598940201, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1930, "image_id": 256, "category_id": 119, "bbox": [500.1615147, 45.309733888, 54.39821799999999, 193.32153651200002], "area": 10516.347087274735, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1931, "image_id": 256, "category_id": 119, "bbox": [601.40263885, 16.613569536, 69.50887585, 279.410023424], "area": 19421.476629424404, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1932, "image_id": 257, "category_id": 119, "bbox": [352.43359232, 98.47836139, 267.79409408000004, 478.52163861], "area": 128145.26870924213, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1933, "image_id": 257, "category_id": 119, "bbox": [566.11383296, 214.98797278, 183.15447296000002, 359.23798432], "area": 65796.04368534236, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1934, "image_id": 186, "category_id": 119, "bbox": [0.0, 0.0, 536.30859264, 584.0175866], "area": 313213.6499464553, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1935, "image_id": 186, "category_id": 119, "bbox": [156.486656, 0.0, 865.9940352, 690.4791223999999], "area": 597950.8014285307, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1936, "image_id": 258, "category_id": 119, "bbox": [149.59513364999998, 244.6725632, 382.29869764999995, 672.0944025599999], "area": 256940.81479654278, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1937, "image_id": 188, "category_id": 119, "bbox": [191.90487318, 176.70796288, 247.81414672000002, 705.32150272], "area": 174788.64635982498, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1938, "image_id": 189, "category_id": 119, "bbox": [0.0, 0.0, 794.09155072, 685.0], "area": 543952.7122432, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 1939, "image_id": 83, "category_id": 119, "bbox": [124.8, 236.80000512, 12.799999999999997, 7.999994879999974], "area": 102.39993446399964, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1940, "image_id": 83, "category_id": 119, "bbox": [291.2, 208.00000511999997, 225.59999999999997, 67.19998464000003], "area": 15160.316534784004, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1941, "image_id": 83, "category_id": 119, "bbox": [886.4, 246.39999744000002, 9.600000000000023, 8.00000255999997], "area": 76.8000245759999, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1942, "image_id": 83, "category_id": 119, "bbox": [907.2, 220.79999999999998, 8.0, 19.200000000000017], "area": 153.60000000000014, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1943, "image_id": 83, "category_id": 119, "bbox": [940.8, 257.60000256, 46.40000000000009, 123.20000256000003], "area": 5716.480118784013, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1944, "image_id": 83, "category_id": 119, "bbox": [1003.2, 267.19999487999996, 20.799999999999955, 201.59999232], "area": 4193.279840255991, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1945, "image_id": 296, "category_id": 119, "bbox": [0.0, 0.0, 1024.0, 639.9999744], "area": 655359.9737856, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 1946, "image_id": 259, "category_id": 119, "bbox": [0.0, 275.982336, 635.2256438, 741.9852800000001], "area": 471328.0771781233, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1947, "image_id": 259, "category_id": 119, "bbox": [76.95132852, 203.5935232, 594.48674208, 818.8983295999999], "area": 486824.20005865797, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1948, "image_id": 191, "category_id": 119, "bbox": [0.0, 42.738791888, 1022.28759552, 830.842135912], "area": 849359.6093781795, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1949, "image_id": 191, "category_id": 119, "bbox": [0.0, 206.85574488, 525.6989696, 666.72518292], "area": 350496.74166741554, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1950, "image_id": 191, "category_id": 119, "bbox": [708.9230848, 164.11695650000001, 196.92304384, 333.36255638000006], "area": 65646.76930463321, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1951, "image_id": 191, "category_id": 119, "bbox": [794.54181376, 0.0, 227.74578176, 764.16960008], "area": 174036.40296744616, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1952, "image_id": 192, "category_id": 119, "bbox": [62.400000000000006, 22.4, 622.3999871999999, 974.4], "area": 606466.5475276799, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1953, "image_id": 193, "category_id": 119, "bbox": [145.59999743999998, 1.6025038848, 555.20000256, 1022.3974961152], "area": 567635.0924604967, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1954, "image_id": 195, "category_id": 119, "bbox": [1.5110619602, 98.171088896, 679.9778688398, 820.106194944], "area": 557654.0626603386, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1955, "image_id": 196, "category_id": 119, "bbox": [0.0, 96.0, 796.8, 672.0], "area": 535449.6, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1956, "image_id": 196, "category_id": 119, "bbox": [598.4, 246.39999744000002, 425.6, 521.60000256], "area": 221992.96108953602, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1957, "image_id": 260, "category_id": 119, "bbox": [382.40000256, 176.0, 148.79999232, 289.6], "area": 43092.477775872, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1958, "image_id": 198, "category_id": 119, "bbox": [0.0, 0.0, 683.0, 490.85546496], "area": 335254.28256768, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 1959, "image_id": 199, "category_id": 119, "bbox": [0.0, 0.0, 766.0, 1024.0], "area": 784384.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1960, "image_id": 200, "category_id": 119, "bbox": [297.53393152, 154.12832076, 415.33923328000003, 528.87167924], "area": 219661.1577590477, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1961, "image_id": 200, "category_id": 119, "bbox": [329.25073408, 45.33185744, 563.3510195200001, 475.98448945999996], "area": 268146.34741299774, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1962, "image_id": 200, "category_id": 119, "bbox": [536.1652224, 191.90487318, 178.21824000000004, 491.09512682], "area": 87522.10917443721, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1963, "image_id": 200, "category_id": 119, "bbox": [708.3421696, 126.92920493, 250.71385599999996, 556.07079507], "area": 139414.65324098547, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1964, "image_id": 201, "category_id": 119, "bbox": [1.5103244288, 21.154867033, 437.9941005312, 657.3119526869999], "area": 287898.75748554926, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1965, "image_id": 201, "category_id": 119, "bbox": [489.3451264, 4.533185744, 253.7345024, 675.444710006], "area": 171383.62739208472, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1966, "image_id": 201, "category_id": 119, "bbox": [586.0059136, 0.0, 436.48378880000007, 678.46681972], "area": 296139.76804647216, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1967, "image_id": 287, "category_id": 119, "bbox": [0.0, 0.0, 1000.0, 766.39997952], "area": 766399.97952, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1968, "image_id": 97, "category_id": 119, "bbox": [562.68578816, 67.64090614999999, 148.38452224000002, 523.48184465], "area": 77676.60341970416, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1969, "image_id": 220, "category_id": 119, "bbox": [136.0, 123.19999487999999, 664.0, 480.0], "area": 318720.0, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1970, "image_id": 220, "category_id": 119, "bbox": [267.2, 0.0, 408.00000000000006, 768.0], "area": 313344.00000000006, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1971, "image_id": 220, "category_id": 119, "bbox": [699.2, 1.6000000511999999, 324.79999999999995, 766.3999999488], "area": 248926.71998337022, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1972, "image_id": 297, "category_id": 119, "bbox": [0.0, 0.0, 201.60000000000002, 1024.0], "area": 206438.40000000002, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1973, "image_id": 202, "category_id": 119, "bbox": [125.41814256, 22.654867456, 475.98449629000004, 983.221254144], "area": 467998.073395354, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1974, "image_id": 203, "category_id": 119, "bbox": [222.01769984, 80.086281022, 620.74335232, 599.891614728], "area": 372378.7319549166, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1975, "image_id": 203, "category_id": 119, "bbox": [930.3598592, 441.23008910000004, 92.1298432000001, 238.74780665], "area": 21995.79799100844, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1976, "image_id": 204, "category_id": 119, "bbox": [0.0, 48.106429608, 1024.0, 629.893570392], "area": 645011.016081408, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 1977, "image_id": 261, "category_id": 119, "bbox": [78.4, 0.0, 880.0, 766.39997952], "area": 674431.9819776, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1978, "image_id": 298, "category_id": 119, "bbox": [0.0, 63.845783999999995, 381.055488, 510.76626336000004], "area": 194630.28773858133, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1979, "image_id": 298, "category_id": 119, "bbox": [501.6075776, 54.1301184, 241.1042304, 517.7060352], "area": 124821.11519033131, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1980, "image_id": 298, "category_id": 119, "bbox": [692.82812928, 51.35421888, 192.60623871999996, 520.48193472], "area": 100248.06776812776, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1981, "image_id": 298, "category_id": 119, "bbox": [848.02166784, 0.0, 174.59265535999998, 573.2240832], "area": 100080.71480218956, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1982, "image_id": 205, "category_id": 119, "bbox": [0.0, 0.0, 722.0, 1024.0], "area": 739328.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 1983, "image_id": 273, "category_id": 119, "bbox": [217.6, 399.99997440000004, 310.4, 288.0], "area": 89395.2, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1984, "image_id": 273, "category_id": 119, "bbox": [545.6, 190.40000256000002, 224.0, 387.20001791999994], "area": 86732.80401407999, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1985, "image_id": 273, "category_id": 119, "bbox": [700.8, 0.0, 286.4000000000001, 731.2000128], "area": 209415.68366592005, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1986, "image_id": 109, "category_id": 71, "bbox": [172.26105554, 83.067848704, 510.73894445999997, 940.932151296], "area": 480570.69376139605, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1987, "image_id": 109, "category_id": 203, "bbox": [95.19690199, 531.63421696, 87.64159697000001, 77.02657023999996], "area": 6750.731624955473, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1988, "image_id": 109, "category_id": 203, "bbox": [173.77212474, 80.04719616, 409.49778616, 389.66371328], "area": 159566.42793504498, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1989, "image_id": 299, "category_id": 74, "bbox": [194.54492672, 313.840714, 829.45507328, 368.15928599999995], "area": 305371.5875478424, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1990, "image_id": 299, "category_id": 74, "bbox": [301.6200192, 25.650442839999997, 601.7319936, 322.8938207], "area": 194295.54245093197, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1991, "image_id": 300, "category_id": 74, "bbox": [49.911949312, 262.42324128, 821.132044288, 344.53110288], "area": 282905.5288286536, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1992, "image_id": 300, "category_id": 74, "bbox": [156.17609728, 473.327796, 376.75476991999994, 141.67636088], "area": 53377.244746447286, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1993, "image_id": 300, "category_id": 74, "bbox": [328.4528128, 183.53526752, 376.75468800000004, 115.9170176], "area": 43672.27979977852, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1994, "image_id": 300, "category_id": 74, "bbox": [685.8867712, 491.03735759999995, 338.1132288, 144.89624096000006], "area": 48991.33587196843, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1995, "image_id": 301, "category_id": 74, "bbox": [68.840339456, 152.73949439999998, 953.008441344, 518.4537984], "area": 494090.8463220604, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1996, "image_id": 302, "category_id": 25, "bbox": [0.0, 504.0, 359.1482112, 508.79999999999995], "area": 182734.60985855997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1997, "image_id": 302, "category_id": 25, "bbox": [83.373696, 0.0, 604.4593152, 478.4], "area": 289173.33639168, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 1998, "image_id": 302, "category_id": 25, "bbox": [331.8914304, 526.4, 416.86848000000003, 449.6], "area": 187424.06860800003, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 1999, "image_id": 303, "category_id": 25, "bbox": [0.0, 0.0, 1024.0, 766.39997952], "area": 784793.57902848, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2000, "image_id": 304, "category_id": 25, "bbox": [102.85376512, 257.0640189, 160.33086464000002, 163.3112747], "area": 26183.83787811156, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2001, "image_id": 304, "category_id": 25, "bbox": [117.979324416, 146.67770055, 248.059070464, 216.23618995], "area": 53639.34827967394, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2002, "image_id": 304, "category_id": 25, "bbox": [245.03396352, 92.24061355, 196.63220736, 213.21192865000003], "area": 41924.332165932334, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2003, "image_id": 304, "category_id": 25, "bbox": [266.20975104, 368.9624405, 219.3205248, 288.819016], "area": 63343.93816133959, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2004, "image_id": 304, "category_id": 25, "bbox": [397.80206592, 201.11478755000002, 193.60708607999993, 223.7969117], "area": 43328.66794794005, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2005, "image_id": 304, "category_id": 25, "bbox": [470.4047104, 344.7682405, 232.93355008000003, 254.03971649999997], "area": 59174.37302566175, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2006, "image_id": 304, "category_id": 25, "bbox": [577.7961472, 217.74834800000002, 75.62777600000004, 127.0198925], "area": 9606.231977534084, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2007, "image_id": 304, "category_id": 25, "bbox": [605.0221568, 264.62472694999997, 248.05908480000005, 164.8233848], "area": 40885.93798712624, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2008, "image_id": 304, "category_id": 25, "bbox": [710.9010432, 68.04635875, 170.91870719999997, 201.11480125], "area": 34374.28182843494, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2009, "image_id": 304, "category_id": 25, "bbox": [715.4386944, 299.4039785, 264.69716991999996, 337.20748449999996], "area": 89257.86682299225, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2010, "image_id": 305, "category_id": 185, "bbox": [292.8, 304.00000511999997, 471.99999999999994, 137.59999488], "area": 64947.197583359986, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2011, "image_id": 305, "category_id": 185, "bbox": [654.4, 259.20000000000005, 220.80000000000007, 43.199999999999974], "area": 9538.559999999998, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2012, "image_id": 305, "category_id": 185, "bbox": [784.0, 302.4, 174.39999999999998, 81.60000000000001], "area": 14231.04, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2013, "image_id": 110, "category_id": 122, "bbox": [237.47119104, 96.9183201, 512.75626496, 548.1942276999999], "area": 281090.0246680837, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2014, "image_id": 222, "category_id": 122, "bbox": [350.8705792, 250.2882528, 121.97647359999996, 189.9778152], "area": 23172.823960328475, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2015, "image_id": 222, "category_id": 122, "bbox": [673.1293696, 295.521064, 91.8588416, 105.54320799999998], "area": 9695.076825627852, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2016, "image_id": 112, "category_id": 122, "bbox": [186.14084286, 225.71150336, 134.61972062, 268.86222848], "area": 36194.15808324821, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2017, "image_id": 112, "category_id": 122, "bbox": [345.69013556, 114.51539456, 177.83100202000003, 287.11829504], "area": 51058.53410523721, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2018, "image_id": 114, "category_id": 122, "bbox": [649.6, 292.79999999999995, 76.79999999999995, 103.99998720000002], "area": 7987.199016959997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2019, "image_id": 117, "category_id": 122, "bbox": [366.70094406000004, 341.33334016, 268.31774574, 362.77837824], "area": 97339.87665256987, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2020, "image_id": 118, "category_id": 122, "bbox": [189.9778288, 75.4050048, 202.0399, 224.70692863999997], "area": 45399.765391732726, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2021, "image_id": 119, "category_id": 122, "bbox": [248.1818157, 200.16801792, 327.6, 340.78189567999993], "area": 111640.14902476799, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2022, "image_id": 120, "category_id": 122, "bbox": [203.99335847999998, 273.36873984, 330.92257024, 441.01472256], "area": 145941.72550323574, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2023, "image_id": 122, "category_id": 122, "bbox": [262.79645184, 0.0, 389.66375424000006, 418.56413989], "area": 163099.27413977394, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2024, "image_id": 123, "category_id": 122, "bbox": [155.2, 203.19998976, 99.20000000000002, 118.40001024], "area": 11745.281015808003, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2025, "image_id": 123, "category_id": 122, "bbox": [534.4, 408.0, 20.800000000000068, 60.799987200000004], "area": 1264.6397337600042, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2026, "image_id": 123, "category_id": 122, "bbox": [553.6, 416.00002559999996, 25.600000000000023, 57.60000000000005], "area": 1474.5600000000027, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2027, "image_id": 123, "category_id": 122, "bbox": [587.2, 468.79998720000003, 56.0, 60.80003327999998], "area": 3404.801863679999, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2028, "image_id": 123, "category_id": 122, "bbox": [630.4, 379.20000000000005, 54.39999999999998, 100.79999999999998], "area": 5483.519999999997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2029, "image_id": 123, "category_id": 122, "bbox": [745.6, 302.4, 131.19999999999993, 142.3999872], "area": 18682.878320639993, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2030, "image_id": 210, "category_id": 122, "bbox": [279.43661568, 187.58518266000002, 466.92959232000004, 595.22222114], "area": 277926.8690567051, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2031, "image_id": 126, "category_id": 122, "bbox": [431.84664576, 194.52856914, 166.84980224000003, 197.79796278], "area": 33002.550973317884, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2032, "image_id": 225, "category_id": 122, "bbox": [425.9115008, 61.953540095, 188.79057920000002, 258.39158672499997], "area": 48781.89731821979, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2033, "image_id": 128, "category_id": 122, "bbox": [347.65010698, 27.45741312, 109.95446737, 155.05362944], "area": 17048.839238860553, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2034, "image_id": 17, "category_id": 122, "bbox": [386.07364096, 229.51663323, 33.17819392000001, 69.45898316999998], "area": 2304.5236131002766, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2035, "image_id": 17, "category_id": 122, "bbox": [469.019136, 271.7960211, 10.556702719999976, 57.37913277], "area": 605.7344469842986, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2036, "image_id": 212, "category_id": 122, "bbox": [296.26114048, 74.41538621, 390.45691392000003, 495.09011232], "area": 193311.3573687734, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2037, "image_id": 213, "category_id": 122, "bbox": [102.40000512, 618.496, 231.42398976, 321.53600000000006], "area": 74411.14397147138, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2038, "image_id": 129, "category_id": 122, "bbox": [280.92035072, 135.99557232, 184.25958400000002, 249.32522958], "area": 45940.5630831153, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2039, "image_id": 130, "category_id": 122, "bbox": [132.84324352, 260.20289271, 12.45406208, 13.840585800000015], "area": 172.37151477676665, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2040, "image_id": 130, "category_id": 122, "bbox": [193.7297408, 274.04347851, 8.302684159999984, 9.68839859999999], "area": 80.43971359198595, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2041, "image_id": 130, "category_id": 122, "bbox": [250.46486016, 262.9710156, 9.68647679999998, 11.07246291000001], "area": 107.25315509657534, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2042, "image_id": 130, "category_id": 122, "bbox": [459.41622784, 95.50000191, 172.97293312000005, 173.00723655], "area": 29925.569157039175, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2043, "image_id": 131, "category_id": 122, "bbox": [390.00723456, 131.23465216, 269.86281984, 353.03969792], "area": 95272.28839615297, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2044, "image_id": 132, "category_id": 122, "bbox": [136.96861192, 38.697673728, 427.28251928, 570.046528512], "area": 243570.9168094257, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2045, "image_id": 133, "category_id": 122, "bbox": [366.88372248, 48.987655168, 162.88368712000002, 254.419756032], "area": 41440.827938663024, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2046, "image_id": 134, "category_id": 122, "bbox": [345.16854784, 135.220419, 140.94381056000003, 187.00695439999996], "area": 26357.47275435616, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2047, "image_id": 134, "category_id": 122, "bbox": [455.91012352, 117.9582364, 132.31459328, 208.5846904], "area": 27598.798474710722, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2048, "image_id": 135, "category_id": 122, "bbox": [267.3946624, 189.8351823, 62.29079039999999, 132.12526006999997], "area": 8230.186881565858, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2049, "image_id": 139, "category_id": 122, "bbox": [516.530944, 388.3429403, 93.64014080000004, 48.35394119999999], "area": 4527.869862202922, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2050, "image_id": 140, "category_id": 122, "bbox": [0.0, 1.8199052543999998, 531.0977024, 766.1800947456001], "area": 406916.4879440025, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2051, "image_id": 140, "category_id": 122, "bbox": [471.07638272, 103.73458944000001, 525.64118528, 664.26541056], "area": 349165.25774726423, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2052, "image_id": 141, "category_id": 122, "bbox": [0.0, 0.0, 1024.0, 646.34734224], "area": 661859.67845376, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2053, "image_id": 147, "category_id": 122, "bbox": [369.6, 99.19999487999999, 452.79999999999995, 256.00000512], "area": 115916.802318336, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2054, "image_id": 147, "category_id": 122, "bbox": [393.6, 97.59999744, 195.19999999999993, 164.80000512], "area": 32168.960999423995, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2055, "image_id": 148, "category_id": 122, "bbox": [359.9058944, 55.787142200000005, 254.49410559999995, 294.0132898], "area": 74824.64922216459, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2056, "image_id": 152, "category_id": 122, "bbox": [400.0, 526.39997952, 75.19999999999999, 81.60004607999994], "area": 6136.323465215995, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2057, "image_id": 152, "category_id": 122, "bbox": [507.2, 337.59999744, 75.19999999999999, 48.00002303999999], "area": 3609.601732607998, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2058, "image_id": 155, "category_id": 122, "bbox": [367.51376384, 284.54054551999997, 29.63818495999999, 48.905428880000024], "area": 1449.4681466935658, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2059, "image_id": 155, "category_id": 122, "bbox": [534.9696, 243.04503888, 37.04779775999998, 48.90541572000003], "area": 1811.837950963285, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2060, "image_id": 155, "category_id": 122, "bbox": [580.90881024, 312.69820792, 37.04779775999998, 41.495493480000036], "area": 1537.3166503984392, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2061, "image_id": 227, "category_id": 122, "bbox": [270.7164896, 419.946496, 144.48351039999997, 194.75778559999992], "area": 28139.288541218553, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2062, "image_id": 156, "category_id": 122, "bbox": [143.5375616, 218.826199, 44.393072639999986, 70.9706386], "area": 3150.6047146769865, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2063, "image_id": 156, "category_id": 122, "bbox": [369.94220032, 275.01129335, 45.87283456, 57.663638950000006], "area": 2645.194569680923, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2064, "image_id": 156, "category_id": 122, "bbox": [475.00576768, 279.44695989999997, 51.791902719999996, 66.5349786], "area": 3445.9731391284813, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2065, "image_id": 156, "category_id": 122, "bbox": [824.2312192, 91.67042674999999, 34.03464703999998, 39.920998950000005], "area": 1358.69710874746, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2066, "image_id": 157, "category_id": 122, "bbox": [348.80001024, 89.6, 102.39998976000003, 161.6], "area": 16547.838345216005, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2067, "image_id": 158, "category_id": 122, "bbox": [120.88495545, 61.923305472, 119.37389991, 151.032444928], "area": 18029.331963997658, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2068, "image_id": 158, "category_id": 122, "bbox": [463.8959905, 187.28024064, 105.77436590000003, 160.09439232], "area": 16933.882831793835, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2069, "image_id": 160, "category_id": 122, "bbox": [323.20944128, 222.12610692, 610.1711155200001, 426.1194654], "area": 260005.7895479041, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2070, "image_id": 160, "category_id": 122, "bbox": [379.09143552, 225.14823166, 31.71682304000001, 40.79867716000001], "area": 1294.0044237498103, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2071, "image_id": 161, "category_id": 122, "bbox": [147.9778269, 315.1929344, 288.4057473, 307.6524032], "area": 88728.7212535369, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2072, "image_id": 162, "category_id": 122, "bbox": [352.55087104, 168.21875, 280.43821055999996, 410.13335384], "area": 115017.06384186087, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2073, "image_id": 162, "category_id": 122, "bbox": [605.7464832, 123.36041153999999, 275.63065344000006, 501.45208846], "area": 138215.5668110825, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2074, "image_id": 163, "category_id": 122, "bbox": [208.0, 113.59999488, 84.80000000000001, 108.80000256000002], "area": 9226.240217088003, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2075, "image_id": 165, "category_id": 122, "bbox": [319.77357952, 247.58685696, 298.13480128, 406.23473664000005], "area": 121112.71248119955, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2076, "image_id": 167, "category_id": 122, "bbox": [252.34734066, 152.5427712, 166.21679923, 235.61061375999998], "area": 39162.44208380299, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2077, "image_id": 169, "category_id": 122, "bbox": [217.59292664, 305.0855424, 311.27876626, 132.90856448], "area": 41371.61397672206, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2078, "image_id": 231, "category_id": 122, "bbox": [88.0, 454.39997952, 76.80000000000001, 92.80002048], "area": 7127.041572864002, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2079, "image_id": 231, "category_id": 122, "bbox": [232.0, 212.80000512, 68.80000000000001, 68.79999743999997], "area": 4733.439823871999, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2080, "image_id": 231, "category_id": 122, "bbox": [476.8, 363.19999487999996, 79.99999999999994, 76.80003071999997], "area": 6144.002457599993, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2081, "image_id": 231, "category_id": 122, "bbox": [736.0, 408.0, 88.0, 105.59999999999997], "area": 9292.799999999997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2082, "image_id": 231, "category_id": 122, "bbox": [843.2, 190.40000256000002, 64.0, 79.99999488000002], "area": 5119.999672320001, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2083, "image_id": 231, "category_id": 122, "bbox": [916.8, 302.4, 49.60000000000002, 81.60000000000001], "area": 4047.3600000000024, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2084, "image_id": 170, "category_id": 122, "bbox": [531.63421696, 98.21902673, 75.51623168000003, 119.37389991], "area": 9014.667082148695, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2085, "image_id": 172, "category_id": 122, "bbox": [204.8, 182.41847289999998, 169.42545919999998, 221.508176], "area": 37529.12443535441, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2086, "image_id": 172, "category_id": 122, "bbox": [662.8072448, 145.1902162, 176.87275519999992, 238.26086480000004], "area": 42141.855613510685, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2087, "image_id": 232, "category_id": 122, "bbox": [458.23231896, 231.6409344, 231.8765514, 329.0771968], "area": 76305.28553836312, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2088, "image_id": 173, "category_id": 122, "bbox": [884.8, 499.20000000000005, 51.200000000000045, 67.20000000000002], "area": 3440.640000000004, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2089, "image_id": 175, "category_id": 122, "bbox": [459.29412608, 312.106434, 57.223516159999974, 61.81818800000005], "area": 3537.4540799999195, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2090, "image_id": 176, "category_id": 122, "bbox": [72.08664064, 354.8880896, 33.270758400000005, 66.54150656000002], "area": 2213.886388329776, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2091, "image_id": 176, "category_id": 122, "bbox": [460.24548352, 160.80867328, 110.90249728000003, 173.74728192000003], "area": 19269.007460540204, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2092, "image_id": 177, "category_id": 122, "bbox": [3.0242825349999998, 58.989662208, 588.222986965, 937.784328192], "area": 551626.2986580641, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2093, "image_id": 179, "category_id": 122, "bbox": [285.45132544, 214.5708019, 244.67255295999996, 235.72566142], "area": 57675.59937781596, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2094, "image_id": 180, "category_id": 122, "bbox": [123.846610944, 240.25885536, 181.238931456, 255.36945174000002], "area": 46282.88655986216, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2095, "image_id": 180, "category_id": 122, "bbox": [684.1769984, 238.74778616, 190.30087679999997, 207.01551054], "area": 39395.23316696164, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2096, "image_id": 181, "category_id": 122, "bbox": [117.14744302000001, 228.25037824, 399.86324274, 487.76793088], "area": 195040.46654625697, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2097, "image_id": 182, "category_id": 122, "bbox": [147.39013176, 165.20930304, 113.14799704, 126.51160576000001], "area": 14314.534794058129, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2098, "image_id": 183, "category_id": 122, "bbox": [412.22394149999997, 217.16642816, 61.909097100000054, 257.88511232], "area": 15965.4344592633, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2099, "image_id": 184, "category_id": 122, "bbox": [229.1468544, 186.0955788, 200.50348800000006, 277.35396897000004], "area": 55610.4381891288, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2100, "image_id": 185, "category_id": 122, "bbox": [452.5714432, 57.916668519999995, 41.142855680000025, 56.39253908000001], "area": 2320.150096797202, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2101, "image_id": 185, "category_id": 122, "bbox": [905.1428864, 175.27411415, 41.14281472000005, 56.39255714999997], "area": 2320.1485304094626, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2102, "image_id": 186, "category_id": 122, "bbox": [0.0, 0.0, 537.82788096, 482.1186836], "area": 259296.86997181273, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2103, "image_id": 186, "category_id": 122, "bbox": [531.7507072, 22.81318822, 458.82498048, 524.7033013800001], "area": 240746.9820134701, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2104, "image_id": 188, "category_id": 122, "bbox": [318.83407128, 217.48672512, 60.442453820000026, 70.98525695999999], "area": 4290.523115705634, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2105, "image_id": 189, "category_id": 122, "bbox": [0.0, 0.0, 729.0516992, 662.317869], "area": 482863.967804973, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2106, "image_id": 189, "category_id": 122, "bbox": [0.0, 582.1744034, 69.57754368, 83.16777485000003], "area": 5786.609487394283, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2107, "image_id": 189, "category_id": 122, "bbox": [199.6573184, 31.754967644999997, 57.47710976000002, 61.997797105000004], "area": 3563.454189082297, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2108, "image_id": 189, "category_id": 122, "bbox": [394.77694464, 308.47681719999997, 83.19055872000001, 86.19205670000002], "area": 7170.365354098922, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2109, "image_id": 189, "category_id": 122, "bbox": [479.48007424, 4.536423871, 48.40175615999999, 58.973508679], "area": 2854.421386980601, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2110, "image_id": 189, "category_id": 122, "bbox": [571.7458944, 0.0, 55.964620800000034, 42.33995549], "area": 2369.5395536867295, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2111, "image_id": 189, "category_id": 122, "bbox": [611.0724096, 276.7218612, 63.52732159999994, 89.21633169999998], "area": 5667.6745958781685, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2112, "image_id": 189, "category_id": 122, "bbox": [651.9113728, 0.0, 49.91430656, 31.754967644999997], "area": 1585.0271898354113, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2113, "image_id": 189, "category_id": 122, "bbox": [665.5243264, 290.3311261, 63.52737280000008, 68.04635190000005], "area": 4322.8059648312965, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2114, "image_id": 191, "category_id": 122, "bbox": [280.82944, 235.91812167999998, 250.00668159999998, 309.42889311999994], "area": 77359.29076009226, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2115, "image_id": 191, "category_id": 122, "bbox": [467.478272, 186.34112751, 241.44481279999997, 331.65304659], "area": 80075.90774847221, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2116, "image_id": 192, "category_id": 122, "bbox": [232.00000511999997, 99.2, 89.59999488000003, 161.60000000000002], "area": 14479.359172608007, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2117, "image_id": 87, "category_id": 122, "bbox": [335.64443648, 306.760531, 29.86667007999995, 35.504727499999966], "area": 1060.4079825228005, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2118, "image_id": 195, "category_id": 122, "bbox": [232.70353667999998, 293.0029568, 110.30753252000002, 80.04718592], "area": 8829.807564004888, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2119, "image_id": 196, "category_id": 122, "bbox": [256.0, 168.0, 179.2, 272.00002559999996], "area": 48742.40458751999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2120, "image_id": 196, "category_id": 122, "bbox": [595.2, 300.80001024, 180.79999999999995, 244.80001536000003], "area": 44259.84277708799, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2121, "image_id": 197, "category_id": 122, "bbox": [7.5516223488, 225.14823166, 52.8613568512, 69.50884170000002], "area": 3674.331685417272, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2122, "image_id": 197, "category_id": 122, "bbox": [167.64601344, 238.74778616, 60.412979200000024, 71.01991089999999], "area": 4290.524399987554, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2123, "image_id": 197, "category_id": 122, "bbox": [220.50737152, 275.01326938, 33.22714112, 34.754427679999985], "area": 1154.7902730681938, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2124, "image_id": 197, "category_id": 122, "bbox": [276.389376, 226.6592872, 55.88201471999997, 61.953550340000014], "area": 3462.0892120561402, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2125, "image_id": 197, "category_id": 122, "bbox": [478.77285888, 259.90265934, 52.86135808, 66.48671696000001], "area": 3514.578152786169, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2126, "image_id": 197, "category_id": 122, "bbox": [628.2949632, 265.94690882, 46.820085759999984, 61.953536679999985], "area": 2900.6699004929037, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2127, "image_id": 197, "category_id": 122, "bbox": [854.84362752, 456.3407128, 70.98528767999994, 161.68360529], "area": 11477.157234650213, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2128, "image_id": 197, "category_id": 122, "bbox": [933.3805568, 164.70575052, 61.92327679999994, 61.953536680000006], "area": 3836.3660005745896, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2129, "image_id": 197, "category_id": 122, "bbox": [956.0353792, 321.85619601999997, 66.45432320000009, 46.84291298000004], "area": 3112.914078802402, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2130, "image_id": 219, "category_id": 122, "bbox": [131.4444456, 614.4, 34.66666319999999, 38.94081535999999], "area": 1349.948130818506, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2131, "image_id": 219, "category_id": 122, "bbox": [313.4444352, 256.72113152, 108.3333264, 184.60846080000005], "area": 19999.248640048012, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2132, "image_id": 199, "category_id": 122, "bbox": [208.13363638, 34.13333504, 481.09577542, 592.21336576], "area": 284911.3484143953, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2133, "image_id": 200, "category_id": 122, "bbox": [350.3952896, 169.23893762999998, 64.94394367999996, 105.77433175], "area": 6869.402243961633, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2134, "image_id": 200, "category_id": 122, "bbox": [527.1032832, 52.88716929, 89.1090944, 125.41813572999999], "area": 11175.89649623658, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2135, "image_id": 200, "category_id": 122, "bbox": [576.9439744, 223.63716245999998, 74.00586239999996, 96.70796436], "area": 7156.95630341026, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2136, "image_id": 200, "category_id": 122, "bbox": [720.4248064, 172.26105554, 77.02656000000002, 86.1305346], "area": 6634.338791198977, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2137, "image_id": 201, "category_id": 122, "bbox": [209.935104, 74.04203564000001, 101.19173120000002, 149.59512682], "area": 15137.789861999354, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2138, "image_id": 201, "category_id": 122, "bbox": [582.985216, 45.33185744, 80.04725759999997, 107.28540095000001], "area": 8587.902126563931, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2139, "image_id": 201, "category_id": 122, "bbox": [727.97637632, 1.5110619602, 129.88791807999996, 164.70575092980002], "area": 21393.287084074742, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2140, "image_id": 220, "category_id": 122, "bbox": [235.2, 169.59999743999998, 72.0, 80.00000256000001], "area": 5760.000184320001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2141, "image_id": 220, "category_id": 122, "bbox": [516.8, 35.200000512, 46.40000000000009, 68.80000204799998], "area": 3192.3200950272058, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2142, "image_id": 220, "category_id": 122, "bbox": [892.8, 27.199999488, 81.60000000000002, 150.40000051200002], "area": 12272.640041779205, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2143, "image_id": 202, "category_id": 122, "bbox": [320.34512682, 48.33038336, 84.61947906000003, 113.27433728000001], "area": 9585.215411500341, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2144, "image_id": 203, "category_id": 122, "bbox": [468.20059136, 145.06194653999998, 190.30087679999997, 264.43582596], "area": 50322.36953752019, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2145, "image_id": 205, "category_id": 122, "bbox": [3.1053764388, 288.58181632, 45.0279593012, 69.81818368], "area": 3143.770333226746, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2146, "image_id": 205, "category_id": 122, "bbox": [94.71397438, 291.68484352, 34.15914126, 58.957578239999975], "area": 2013.9402434476613, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2147, "image_id": 205, "category_id": 122, "bbox": [192.53334296, 257.5515136, 52.79139093999999, 63.61211903999998], "area": 3358.172244762456, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2148, "image_id": 205, "category_id": 122, "bbox": [243.7720368, 125.6727296, 178.55911959999997, 232.72727039999998], "area": 41555.57650953513, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2149, "image_id": 206, "category_id": 122, "bbox": [193.32153344, 181.59291648, 83.06784256000003, 169.48670471999998], "area": 14078.89490369417, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2150, "image_id": 206, "category_id": 122, "bbox": [265.81710848, 214.8849612, 140.46017536, 186.13274760000002], "area": 26144.238368134622, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2151, "image_id": 206, "category_id": 122, "bbox": [656.9911296, 248.17699224, 119.31566079999993, 146.78762436000002], "area": 17514.062397775568, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2152, "image_id": 206, "category_id": 122, "bbox": [746.10028544, 172.51326792, 140.46017536, 180.07963487999996], "area": 25294.017094009567, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2153, "image_id": 110, "category_id": 97, "bbox": [0.0, 0.0, 859.1314944, 684.485655], "area": 588063.1836755128, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2154, "image_id": 112, "category_id": 97, "bbox": [388.90141696, 137.75041536, 435.43658844, 882.93028864], "area": 384460.152715746, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2155, "image_id": 117, "category_id": 97, "bbox": [78.70654143, 55.39964928, 810.31961472, 968.60035072], "area": 784875.8630130873, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2156, "image_id": 119, "category_id": 97, "bbox": [52.94545893, 14.88852992, 766.05454107, 1009.11147008], "area": 773034.4241006075, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2157, "image_id": 120, "category_id": 97, "bbox": [0.0, 18.12389376, 683.0, 1005.87610624], "area": 687013.38056192, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2158, "image_id": 240, "category_id": 97, "bbox": [8.696390656, 60.859003056, 402.208062464, 917.232104604], "area": 368918.1476225519, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2159, "image_id": 240, "category_id": 97, "bbox": [521.7834496, 34.77657432, 469.60511999999994, 930.27327288], "area": 436861.0919436051, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2160, "image_id": 123, "category_id": 97, "bbox": [534.4, 398.40000000000003, 73.60000000000002, 279.9999743999999], "area": 20607.998115840004, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2161, "image_id": 124, "category_id": 97, "bbox": [222.98229522, 98.026512384, 456.51106038, 505.213526016], "area": 230635.56247988288, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2162, "image_id": 210, "category_id": 97, "bbox": [153.23943936, 5.4111112518, 665.23945984, 966.7851771082], "area": 643143.6490007776, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2163, "image_id": 270, "category_id": 97, "bbox": [0.0, 87.4710711, 110.40758784, 330.4462833], "area": 36483.77704984628, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2164, "image_id": 270, "category_id": 97, "bbox": [184.4170752, 117.84297923999999, 86.14215680000001, 207.74381040000003], "area": 17895.499889706272, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2165, "image_id": 270, "category_id": 97, "bbox": [458.6161152, 137.28098916, 31.545016320000002, 155.50411464], "area": 4905.379834145952, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2166, "image_id": 270, "category_id": 97, "bbox": [467.10900736, 44.950413816, 124.96676864, 376.611558624], "area": 47063.92951371521, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2167, "image_id": 270, "category_id": 97, "bbox": [639.3933824, 160.36363917, 44.8909824000001, 68.03303913000002], "area": 3054.069962203349, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2168, "image_id": 270, "category_id": 97, "bbox": [649.0995712, 74.10743928000001, 196.54973440000003, 285.49586772], "area": 56114.13697266354, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2169, "image_id": 270, "category_id": 97, "bbox": [670.9384192, 137.28098916, 32.758231040000055, 142.14049164], "area": 4656.271065282315, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2170, "image_id": 41, "category_id": 97, "bbox": [459.13864192, 64.975665518, 444.03539968, 618.024334482], "area": 274424.6823736809, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2171, "image_id": 131, "category_id": 97, "bbox": [146.02166272, 3.6967508992, 828.07221248, 1018.4548574208001], "area": 843354.1670954449, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2172, "image_id": 133, "category_id": 97, "bbox": [14.23255878, 0.0, 733.76744122, 1024.0], "area": 751377.85980928, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2173, "image_id": 134, "category_id": 97, "bbox": [0.0, 14.38515134, 486.1123584, 605.61484866], "area": 294396.8623641717, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2174, "image_id": 134, "category_id": 97, "bbox": [453.03371776, 50.34802380000001, 545.07864064, 569.6519762], "area": 310505.1248249856, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2175, "image_id": 135, "category_id": 97, "bbox": [256.75964416, 133.6439606, 309.9346944, 385.74506306999996], "area": 119555.77823890917, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2176, "image_id": 242, "category_id": 97, "bbox": [492.16268599999995, 106.33847039999999, 152.23052488000008, 611.4461568], "area": 93080.76938552283, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2177, "image_id": 141, "category_id": 97, "bbox": [0.0, 0.0, 1024.0, 681.0], "area": 697344.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2178, "image_id": 291, "category_id": 97, "bbox": [13.889026048, 136.57143539999998, 146.466097152, 324.9894276], "area": 47599.933076234476, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2179, "image_id": 291, "category_id": 97, "bbox": [128.78915584, 65.75661014, 135.10232064, 403.39154685999995], "area": 54499.1341073453, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2180, "image_id": 291, "category_id": 97, "bbox": [233.58816256, 55.64021336, 763.89638144, 407.18518430000006], "area": 311047.2888627496, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2181, "image_id": 145, "category_id": 97, "bbox": [148.08407128000002, 70.985252864, 398.9203564, 951.504449536], "area": 379574.49412508693, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2182, "image_id": 148, "category_id": 97, "bbox": [195.76470528, 0.0, 826.72943104, 678.492236], "area": 560929.5002333374, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2183, "image_id": 153, "category_id": 97, "bbox": [0.0, 135.76448886, 476.16, 571.23551114], "area": 271999.5009844224, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2184, "image_id": 153, "category_id": 97, "bbox": [15.36, 148.57245844000002, 460.8, 414.97825964], "area": 191221.982042112, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2185, "image_id": 292, "category_id": 97, "bbox": [588.1590784, 227.8362856, 164.38292479999996, 393.8097493], "area": 64735.59840468874, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2186, "image_id": 247, "category_id": 97, "bbox": [0.0, 0.0, 367.00884992, 610.4690199], "area": 224047.53290528856, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2187, "image_id": 157, "category_id": 97, "bbox": [145.59999743999998, 33.6, 376.00002816, 955.1999999999999], "area": 359155.22689843195, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2188, "image_id": 158, "category_id": 97, "bbox": [0.0, 18.12389376, 367.1880398, 1005.87610624], "area": 369345.67573192215, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2189, "image_id": 158, "category_id": 97, "bbox": [370.2101782, 143.48082176, 309.76771755000004, 880.51917824], "area": 272756.41610240645, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2190, "image_id": 248, "category_id": 97, "bbox": [0.0, 496.89675776, 77.06416038, 225.03836672], "area": 17342.392784563337, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2191, "image_id": 248, "category_id": 97, "bbox": [55.909289932, 312.63717376, 553.048660768, 629.80532224], "area": 348312.9900093907, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2192, "image_id": 161, "category_id": 97, "bbox": [0.0, 75.4050048, 681.0, 948.5949952], "area": 645993.1917312, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2193, "image_id": 58, "category_id": 97, "bbox": [108.58321408, 351.5619294, 176.44769792, 330.4380706], "area": 58305.03686249644, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2194, "image_id": 165, "category_id": 97, "bbox": [88.95957032000001, 139.41784576, 786.21026288, 884.58215424], "area": 695467.5680239871, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2195, "image_id": 166, "category_id": 97, "bbox": [60.442477725, 656.9911296, 415.5420185649999, 367.0088704], "area": 152507.60683727643, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 2196, "image_id": 254, "category_id": 97, "bbox": [256.69231937999996, 0.0, 664.4871710399999, 1024.0], "area": 680434.8631449599, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2197, "image_id": 177, "category_id": 97, "bbox": [0.0, 0.0, 594.2715171, 1022.4874496], "area": 607635.1678895018, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2198, "image_id": 255, "category_id": 97, "bbox": [0.0, 0.0, 681.4889308, 1022.4897024], "area": 696815.4140425862, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2199, "image_id": 186, "category_id": 97, "bbox": [156.486656, 0.0, 867.513344, 692.0], "area": 600319.234048, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2200, "image_id": 258, "category_id": 97, "bbox": [157.1504455, 253.73451264, 367.18803979999996, 666.0531097600001], "area": 244566.73577546867, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2201, "image_id": 188, "category_id": 97, "bbox": [191.90487318, 175.1976448, 247.81414672000002, 706.8318208], "area": 175162.92454609595, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2202, "image_id": 189, "category_id": 97, "bbox": [0.0, 529.2494538999999, 87.72820992, 155.7505461], "area": 13663.716603415438, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2203, "image_id": 191, "category_id": 97, "bbox": [0.0, 39.319689870000005, 1022.28759552, 834.26123793], "area": 852854.9149589982, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2204, "image_id": 191, "category_id": 97, "bbox": [6.849498112, 196.59843181, 530.836108288, 676.98249599], "area": 359366.7535504282, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2205, "image_id": 195, "category_id": 97, "bbox": [0.0, 96.66076672, 681.4889308, 821.61651712], "area": 559922.5617797287, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2206, "image_id": 196, "category_id": 97, "bbox": [0.0, 102.40000512, 798.4, 665.59999488], "area": 531415.0359121921, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2207, "image_id": 196, "category_id": 97, "bbox": [596.8, 233.60000255999998, 427.20000000000005, 534.39999744], "area": 228295.67890636803, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2208, "image_id": 198, "category_id": 97, "bbox": [0.0, 0.0, 160.17256341, 490.85546496], "area": 78621.57808645064, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2209, "image_id": 198, "category_id": 97, "bbox": [187.37167924, 0.0, 110.30751886000003, 312.63717376], "area": 34486.23094086831, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2210, "image_id": 198, "category_id": 97, "bbox": [356.61062369999996, 0.0, 131.46237838, 391.1740416], "area": 51424.669869253055, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2211, "image_id": 199, "category_id": 97, "bbox": [0.0, 0.0, 766.0, 1024.0], "area": 784384.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2212, "image_id": 200, "category_id": 97, "bbox": [286.96164352, 148.08407128000002, 428.93215744, 534.91592872], "area": 229442.64335489087, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2213, "image_id": 200, "category_id": 97, "bbox": [516.530944, 128.4402673, 450.07672320000006, 554.5597327], "area": 249594.42731228395, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2214, "image_id": 99, "category_id": 97, "bbox": [470.00347648, 305.74083151, 130.45728255999995, 87.60995358000002], "area": 11429.35646925454, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2215, "image_id": 202, "category_id": 97, "bbox": [126.92920493, 22.654867456, 474.47343392, 983.221254144], "area": 466512.3647568327, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2216, "image_id": 205, "category_id": 97, "bbox": [141.29462746, 234.27878912, 149.05806242, 152.0484864], "area": 22664.05277667772, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2217, "image_id": 206, "category_id": 97, "bbox": [182.74926592, 157.380534, 249.20352768, 526.619466], "area": 131235.42867215784, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2218, "image_id": 273, "category_id": 97, "bbox": [17.6, 169.59999743999998, 36.8, 89.60000256000002], "area": 3297.2800942080007, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2219, "image_id": 273, "category_id": 97, "bbox": [97.6, 142.40000256000002, 54.400000000000006, 116.79999744000001], "area": 6353.919860736001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2220, "image_id": 273, "category_id": 97, "bbox": [204.8, 399.99997440000004, 329.59999999999997, 291.2000256], "area": 95979.52843775999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2221, "image_id": 273, "category_id": 97, "bbox": [544.0, 190.40000256000002, 222.39999999999998, 382.40000256], "area": 85045.76056934398, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2222, "image_id": 273, "category_id": 97, "bbox": [691.2, 0.0, 296.0, 766.39997952], "area": 226854.39393792002, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2223, "image_id": 110, "category_id": 121, "bbox": [376.6262784, 287.7262703, 95.29102336, 63.60266150000002], "area": 6060.762702754673, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2224, "image_id": 110, "category_id": 121, "bbox": [568.72082432, 364.95803679999995, 101.341184, 66.63136522000005], "area": 6752.501442931225, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2225, "image_id": 112, "category_id": 121, "bbox": [277.5492986, 305.37439232, 33.239429440000016, 24.894648319999988], "area": 827.4839062662545, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2226, "image_id": 112, "category_id": 121, "bbox": [400.5352057, 225.71150336, 43.211273140000024, 21.575362560000002], "area": 932.2988846746903, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2227, "image_id": 119, "category_id": 121, "bbox": [273.00000545999995, 304.38772736, 81.07273629000001, 44.66558975999999], "area": 3621.1615798498037, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2228, "image_id": 119, "category_id": 121, "bbox": [418.60002366000003, 286.1906432, 84.38178293999994, 52.93698047999999], "area": 4466.916796362373, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2229, "image_id": 120, "category_id": 121, "bbox": [228.1703564, 419.870208, 86.1305346, 54.37167615999999], "area": 4683.061534758875, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2230, "image_id": 120, "category_id": 121, "bbox": [391.36503772, 410.80825856, 84.61945857, 51.35104000000001], "area": 4345.297201806414, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2231, "image_id": 210, "category_id": 121, "bbox": [301.0704384, 367.95556746, 153.23940864000002, 84.77404773999997], "area": 12990.724943696727, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2232, "image_id": 210, "category_id": 121, "bbox": [558.87323136, 360.74073064, 117.18310912000004, 63.12965415999999], "area": 7397.729152139143, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2233, "image_id": 212, "category_id": 121, "bbox": [364.6290944, 132.1252808, 82.04152832, 48.59780888], "area": 3987.0385135184674, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2234, "image_id": 212, "category_id": 121, "bbox": [557.57860864, 148.83077242, 83.56085760000008, 48.59780887999999], "area": 4060.874587493698, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2235, "image_id": 131, "category_id": 121, "bbox": [395.55233792, 247.68231424, 70.23827968, 48.05776383999998], "area": 3375.4946573893094, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2236, "image_id": 131, "category_id": 121, "bbox": [510.15160832, 255.07580928, 73.93506303999999, 35.119134720000034], "area": 2596.535439433455, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2237, "image_id": 132, "category_id": 121, "bbox": [241.1838568, 345.3023232, 80.39461672, 28.279070719999993], "area": 2273.485051732174, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2238, "image_id": 132, "category_id": 121, "bbox": [400.48432255999995, 306.6046464, 78.90581584000005, 61.02325248], "area": 4815.089522144705, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2239, "image_id": 133, "category_id": 121, "bbox": [419.0697676, 126.41975296, 44.279079240000065, 28.444446720000016], "area": 1259.4939102528406, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2240, "image_id": 133, "category_id": 121, "bbox": [509.2093028, 137.481472, 11.069801600000009, 20.543221759999994], "area": 227.40938910800293, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2241, "image_id": 134, "category_id": 121, "bbox": [483.23596288, 174.06033140000002, 30.202245120000043, 20.139205799999985], "area": 608.2492300937262, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2242, "image_id": 135, "category_id": 121, "bbox": [288.66469888, 232.35825125, 18.23144960000002, 13.668125110000014], "area": 249.18973406945997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2243, "image_id": 135, "category_id": 121, "bbox": [470.97921536, 214.13407292, 15.192903679999972, 10.63077242000001], "area": 161.51230142106036, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2244, "image_id": 140, "category_id": 121, "bbox": [109.12966144, 258.42654719999996, 121.86146303999999, 58.23696384], "area": 7096.841616549977, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2245, "image_id": 140, "category_id": 121, "bbox": [354.6714112, 294.82464, 107.31082751999998, 56.41705728000001], "area": 6054.16110296004, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2246, "image_id": 140, "category_id": 121, "bbox": [536.5541888, 387.63981312, 132.7744, 60.05687807999999], "area": 7974.015952945152, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2247, "image_id": 140, "category_id": 121, "bbox": [793.00890624, 424.0379136, 147.32502016, 49.137407999999965], "area": 7239.169624210141, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2248, "image_id": 141, "category_id": 121, "bbox": [0.0, 67.79867112, 7.54050048, 6.026550360000004], "area": 45.44320588232421, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2249, "image_id": 141, "category_id": 121, "bbox": [0.0, 340.5, 12.064800768, 6.026550360000023], "area": 72.70912941171895, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2250, "image_id": 141, "category_id": 121, "bbox": [1.508100096, 257.63495298000004, 12.064801792, 9.039825539999997], "area": 109.06370337435933, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2251, "image_id": 141, "category_id": 121, "bbox": [13.572901888, 70.8119463, 12.064801792, 6.026550360000004], "area": 72.7091355829063, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2252, "image_id": 141, "category_id": 121, "bbox": [13.572901888, 194.35620144, 16.589100032, 9.039811919999966], "area": 149.96234421134545, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2253, "image_id": 141, "category_id": 121, "bbox": [24.12960256, 338.99336922, 10.556699648000002, 7.533181140000033], "area": 79.5255306889586, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2254, "image_id": 141, "category_id": 121, "bbox": [25.63770368, 259.14159738, 12.064798719999999, 9.039811920000004], "area": 109.06351128145677, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2255, "image_id": 141, "category_id": 121, "bbox": [31.67010304, 400.76546955, 16.589102079999996, 9.039832349999994], "area": 149.96270164023613, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2256, "image_id": 141, "category_id": 121, "bbox": [37.7025024, 198.8761074, 9.048603647999997, 7.533181139999995], "area": 68.16477034444873, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2257, "image_id": 141, "category_id": 121, "bbox": [60.32400384, 411.3119463, 15.081000959999997, 9.039825540000034], "area": 136.32961764697302, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2258, "image_id": 141, "category_id": 121, "bbox": [171.92341504, 156.6902685, 15.081011199999978, 7.533181139999995], "area": 113.60798914396852, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2259, "image_id": 141, "category_id": 121, "bbox": [177.95580928, 215.44911408, 12.064798719999999, 7.533181139999995], "area": 90.88631417540006, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2260, "image_id": 141, "category_id": 121, "bbox": [183.988224, 298.3141611, 13.572904959999988, 7.533181140000033], "area": 102.24715165968482, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2261, "image_id": 141, "category_id": 121, "bbox": [193.03682048, 159.70353687, 15.080990720000017, 7.53318795000001], "area": 113.6079375659661, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2262, "image_id": 141, "category_id": 121, "bbox": [200.57732096, 216.95575848, 7.540490239999997, 6.026536739999993], "area": 45.443041468971344, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2263, "image_id": 141, "category_id": 121, "bbox": [208.1178112, 28.626105357, 9.048616960000004, 9.039824177999998], "area": 81.79790637246887, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2264, "image_id": 141, "category_id": 121, "bbox": [242.8041216, 456.511074, 15.081011200000006, 9.039798299999973], "area": 136.3292994080406, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2265, "image_id": 141, "category_id": 121, "bbox": [268.44183552, 465.5508723, 13.572904960000017, 7.533222000000011], "area": 102.2477062485814, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2266, "image_id": 141, "category_id": 121, "bbox": [271.45803776, 100.94469129000001, 9.048586239999963, 7.533187949999991], "area": 68.16470082770346, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2267, "image_id": 141, "category_id": 121, "bbox": [298.6038272, 549.9225501, 22.62151167999997, 12.053114339999963], "area": 272.6596668226843, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2268, "image_id": 141, "category_id": 121, "bbox": [330.27392512, 561.97566444, 19.60531967999998, 9.039805110000009], "area": 177.22826902644752, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2269, "image_id": 141, "category_id": 121, "bbox": [334.79821312, 183.80973150000003, 13.572915200000011, 6.026550359999986], "area": 81.79785698480934, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2270, "image_id": 141, "category_id": 121, "bbox": [402.66274816, 24.10619463, 9.04858624000002, 7.533186587999997], "area": 68.16468850352948, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2271, "image_id": 141, "category_id": 121, "bbox": [423.7761536, 209.42256372, 16.589076480000017, 9.039825539999997], "area": 149.96235724891739, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2272, "image_id": 141, "category_id": 121, "bbox": [446.3976448, 212.43583890000002, 16.5891072, 7.533181139999995], "area": 124.96874948847814, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2273, "image_id": 141, "category_id": 121, "bbox": [479.57583872, 46.70575167, 10.556702720000033, 4.519912769999999], "area": 47.715375433221865, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2274, "image_id": 141, "category_id": 121, "bbox": [547.44037376, 465.5508723, 16.589107199999944, 10.546469940000037], "area": 174.9565204162376, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2275, "image_id": 141, "category_id": 121, "bbox": [573.0780672, 296.8075167, 12.064819199999988, 7.533194759999987], "area": 90.88663277778716, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2276, "image_id": 141, "category_id": 121, "bbox": [577.6023552, 462.5375835, 15.080990719999932, 12.053107530000005], "area": 181.77280280709138, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2277, "image_id": 141, "category_id": 121, "bbox": [591.17522944, 299.82079188, 15.081052160000013, 7.5331947600000255], "area": 113.60850310699915, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2278, "image_id": 141, "category_id": 121, "bbox": [618.3210496, 72.31858389, 13.57293568, 6.026550360000004], "area": 81.7979804085609, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2279, "image_id": 141, "category_id": 121, "bbox": [633.4020608, 72.31858389, 10.556682239999986, 9.039821453999998], "area": 95.43052259621264, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2280, "image_id": 141, "category_id": 121, "bbox": [653.00736, 153.67699332, 12.064768000000072, 7.533181139999995], "area": 90.886082756076, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2281, "image_id": 141, "category_id": 121, "bbox": [668.08838144, 156.6902685, 15.081000959999983, 6.0265435500000075], "area": 90.88630906303183, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2282, "image_id": 141, "category_id": 121, "bbox": [731.42858752, 64.785400026, 12.064737280000031, 9.039821453999998], "area": 109.06307090061787, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2283, "image_id": 141, "category_id": 121, "bbox": [748.01770496, 70.8119463, 7.540490240000054, 6.026550360000004], "area": 45.44314417044884, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2284, "image_id": 141, "category_id": 121, "bbox": [853.58466048, 102.45132887999999, 13.572945919999938, 7.533181140000013], "area": 102.24746021878366, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2285, "image_id": 141, "category_id": 121, "bbox": [873.1899904, 106.97124165, 9.048575999999912, 7.533181140000013], "area": 68.1645620670561, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2286, "image_id": 141, "category_id": 121, "bbox": [874.6980352, 352.55308709999997, 13.57295615999999, 10.546469940000037], "area": 143.14677413837822, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2287, "image_id": 141, "category_id": 121, "bbox": [898.8276736, 357.0730203, 18.09719296000003, 6.02653674000003], "area": 109.06339826431008, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2288, "image_id": 141, "category_id": 121, "bbox": [901.8438656, 483.63053699999995, 16.589107200000058, 12.053087100000054], "area": 199.94995399283872, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2289, "image_id": 141, "category_id": 121, "bbox": [906.36816384, 36.159291945, 10.55670272000009, 4.519910726999999], "area": 47.71535386587848, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2290, "image_id": 141, "category_id": 121, "bbox": [921.449216, 36.159291945, 13.572863999999981, 7.5331845449999975], "area": 102.24688931618671, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2291, "image_id": 141, "category_id": 121, "bbox": [954.6273792, 120.53097315000001, 9.048576000000025, 9.039825539999997], "area": 81.79754842543124, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2292, "image_id": 141, "category_id": 121, "bbox": [957.64361216, 519.7897983, 18.09717248000004, 10.546510800000016], "area": 190.86202500978348, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2293, "image_id": 141, "category_id": 121, "bbox": [960.6597632, 238.04867112, 12.064870399999904, 9.039825539999997], "area": 109.06432357870912, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2294, "image_id": 141, "category_id": 121, "bbox": [966.6921984, 170.25, 12.064819199999988, 7.533181139999995], "area": 90.88646845494975, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2295, "image_id": 141, "category_id": 121, "bbox": [968.2002944, 125.05088592000001, 12.064768000000072, 7.533187949999991], "area": 90.88616491714603, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2296, "image_id": 141, "category_id": 121, "bbox": [978.7570176, 236.54204034, 15.080990719999932, 7.533181139999995], "area": 113.60783486441844, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2297, "image_id": 141, "category_id": 121, "bbox": [987.8055936, 174.76990596, 12.06482944000004, 9.039825540000034], "area": 109.06395330745667, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2298, "image_id": 141, "category_id": 121, "bbox": [987.8055936, 518.28320157, 18.09715200000005, 10.546463130000003], "area": 190.86094632600634, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2299, "image_id": 141, "category_id": 121, "bbox": [992.32989184, 283.2477852, 13.572853760000044, 9.039825539999997], "area": 122.69623007033339, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2300, "image_id": 141, "category_id": 121, "bbox": [1010.42712576, 289.27433556, 13.572874240000033, 7.533181140000033], "area": 102.24692024036052, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2301, "image_id": 147, "category_id": 121, "bbox": [438.4, 120.0, 51.200000000000045, 27.19999487999999], "area": 1392.6397378560007, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2302, "image_id": 147, "category_id": 121, "bbox": [520.0, 139.2, 46.39999999999998, 20.799997440000013], "area": 965.1198812160002, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2303, "image_id": 148, "category_id": 121, "bbox": [387.0117888, 192.9933432, 58.72939008000003, 33.170746799999996], "area": 1948.0977280621128, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2304, "image_id": 148, "category_id": 121, "bbox": [487.9058944, 150.7760532, 55.717642239999975, 34.67849720000001], "area": 1932.2041004104412, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2305, "image_id": 156, "category_id": 121, "bbox": [383.26009856, 292.7539399, 16.277463039999986, 11.828461600000018], "area": 192.5373465140594, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2306, "image_id": 156, "category_id": 121, "bbox": [403.97686784, 295.71106840000004, 8.878632960000004, 11.828435399999996], "area": 105.02033640767081, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2307, "image_id": 156, "category_id": 121, "bbox": [473.52600576, 297.189613, 10.358394880000048, 11.828448500000025], "area": 122.52374038074451, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2308, "image_id": 156, "category_id": 121, "bbox": [486.84393472, 292.7539399, 19.236997120000012, 11.828461600000018], "area": 227.5440817332311, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2309, "image_id": 156, "category_id": 121, "bbox": [821.2716544, 109.4130995, 11.838156799999979, 8.87132], "area": 105.02007718297581, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2310, "image_id": 156, "category_id": 121, "bbox": [833.1098112, 109.4130995, 8.878653439999994, 8.87132], "area": 78.76537583534075, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2311, "image_id": 157, "category_id": 121, "bbox": [355.20000000000005, 160.0, 27.200002559999987, 20.80000000000001], "area": 565.7600532480001, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2312, "image_id": 157, "category_id": 121, "bbox": [401.6000256, 163.2, 19.199961599999995, 11.200000000000017], "area": 215.03956992000028, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2313, "image_id": 158, "category_id": 121, "bbox": [142.0398218, 111.764015104, 27.199115829999993, 16.613564416000017], "area": 451.8742628999506, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2314, "image_id": 158, "category_id": 121, "bbox": [196.43805346, 105.72271616, 42.30973270000002, 30.20648448], "area": 1278.028284155499, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2315, "image_id": 158, "category_id": 121, "bbox": [465.4070597, 241.6519168, 15.110657850000003, 15.103242240000014], "area": 228.21992591430785, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2316, "image_id": 158, "category_id": 121, "bbox": [491.09514731, 235.610624, 24.176956939999965, 15.103242239999986], "area": 365.1504372908683, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2317, "image_id": 161, "category_id": 121, "bbox": [152.50775718, 343.84683008, 43.78935554999999, 39.210608639999975], "area": 1717.0072830688605, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2318, "image_id": 161, "category_id": 121, "bbox": [243.10642407, 360.43594752, 61.909090290000016, 45.242972159999965], "area": 2800.951248441395, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2319, "image_id": 162, "category_id": 121, "bbox": [511.19876096, 251.52707308, 49.677578239999946, 36.84792691999999], "area": 1830.5157725500999, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2320, "image_id": 162, "category_id": 121, "bbox": [641.0015744, 235.50625000000002, 44.87014399999998, 36.84791154], "area": 1653.371096899061, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2321, "image_id": 165, "category_id": 121, "bbox": [348.62533736, 411.04226304, 84.15094103999996, 36.05634047999996], "area": 3034.1749818506405, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2322, "image_id": 165, "category_id": 121, "bbox": [504.90562839999996, 415.84975872, 67.32075640000002, 26.4413184], "area": 1780.0495549012383, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2323, "image_id": 175, "category_id": 121, "bbox": [471.34118912, 340.75388200000003, 19.576442880000002, 10.554313999999948], "area": 206.61592515858337, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2324, "image_id": 175, "category_id": 121, "bbox": [501.4588416, 331.707332, 12.04702207999992, 7.538786000000018], "area": 90.81992139839448, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2325, "image_id": 176, "category_id": 121, "bbox": [469.48737024, 221.805056, 35.11914495999997, 18.48374271999998], "area": 649.1332399870234, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2326, "image_id": 176, "category_id": 121, "bbox": [528.635392, 216.25993216, 31.42236159999993, 20.332124160000006], "area": 638.8833574516151, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2327, "image_id": 177, "category_id": 121, "bbox": [142.1412812, 366.03839488, 131.5562776, 92.26589184], "area": 12138.157279914612, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2328, "image_id": 177, "category_id": 121, "bbox": [334.1832095, 263.18462976, 81.65563050000004, 87.72820991999998], "area": 7163.502293653957, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2329, "image_id": 180, "category_id": 121, "bbox": [211.44543232, 314.300891, 22.65486335999998, 43.820801899999985], "area": 992.754279370127, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2330, "image_id": 181, "category_id": 121, "bbox": [143.7008572, 448.68396032, 37.487178549999996, 40.647342080000044], "area": 1523.7541701358898, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2331, "image_id": 181, "category_id": 121, "bbox": [231.17095023, 386.149632, 60.91664960999999, 57.84427520000003], "area": 3523.679444302814, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2332, "image_id": 184, "category_id": 121, "bbox": [261.37062912, 288.09025314, 41.17483007999999, 14.315042189999991], "area": 589.4194297612806, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2333, "image_id": 184, "category_id": 121, "bbox": [359.83216128000004, 282.722106, 48.33564672, 16.104451530000016], "area": 778.4190797734443, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2334, "image_id": 186, "category_id": 121, "bbox": [100.2729984, 196.193418, 133.69732095999998, 66.9186836], "area": 8946.848719489886, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2335, "image_id": 186, "category_id": 121, "bbox": [314.49257984, 76.04395612, 147.37091584, 98.85715472000003], "area": 14568.669428422985, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2336, "image_id": 186, "category_id": 121, "bbox": [565.17505024, 219.00660276000002, 110.90804735999996, 68.43955427999998], "area": 7590.497327383525, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2337, "image_id": 186, "category_id": 121, "bbox": [759.64392448, 231.17363048, 133.69732095999996, 85.16922863999999], "area": 11386.897697397699, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2338, "image_id": 189, "category_id": 121, "bbox": [3.0251107328, 609.3929195000001, 18.150664499199998, 12.09716849999997], "area": 219.57164683378994, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2339, "image_id": 189, "category_id": 121, "bbox": [34.78877184, 612.41722875, 19.663223807999998, 10.584962499999987], "area": 208.1344866367869, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2340, "image_id": 189, "category_id": 121, "bbox": [199.6573184, 54.437087000000005, 10.587873279999997, 7.560701199999997], "area": 80.05174621354388, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2341, "image_id": 189, "category_id": 121, "bbox": [222.34564608, 49.9006608, 13.613004799999999, 7.560708050000002], "area": 102.92395497604866, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2342, "image_id": 189, "category_id": 121, "bbox": [422.00296448, 340.23179375, 21.175777279999977, 13.609244349999985], "area": 288.1863273046977, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2343, "image_id": 189, "category_id": 121, "bbox": [455.27917568, 332.6710857, 18.15066624000002, 13.609244350000022], "area": 247.01685197545643, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2344, "image_id": 189, "category_id": 121, "bbox": [490.06792704, 22.6821173, 13.61301504000005, 9.072850344999996], "area": 123.5088482021546, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2345, "image_id": 189, "category_id": 121, "bbox": [577.7961472, 12.097130139999999, 13.613004799999999, 7.560707365000001], "area": 102.92394565114036, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2346, "image_id": 189, "category_id": 121, "bbox": [600.48449536, 9.072847605, 13.612974080000072, 6.0485650699999995], "area": 82.33895951910381, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2347, "image_id": 189, "category_id": 121, "bbox": [612.58496, 303.94039100000003, 15.125555200000008, 15.121416099999987], "area": 228.71981392271866, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2348, "image_id": 189, "category_id": 121, "bbox": [642.8360704, 300.916116, 16.638054399999987, 13.609278600000005], "area": 226.43191769155573, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2349, "image_id": 189, "category_id": 121, "bbox": [668.5495296, 300.916116, 10.58785279999995, 10.584983050000014], "area": 112.07224242389465, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2350, "image_id": 189, "category_id": 121, "bbox": [694.2629376, 303.94039100000003, 16.638105600000017, 10.585003600000002], "area": 176.11440767318038, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2351, "image_id": 196, "category_id": 121, "bbox": [332.8, 337.59999744, 36.80000000000001, 40.00000511999998], "area": 1472.0001884159997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2352, "image_id": 196, "category_id": 121, "bbox": [385.6, 254.39999999999998, 12.799999999999955, 24.0], "area": 307.1999999999989, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2353, "image_id": 196, "category_id": 121, "bbox": [616.0, 392.00002559999996, 14.399999999999977, 12.79997952000005], "area": 184.31970508800043, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2354, "image_id": 196, "category_id": 121, "bbox": [657.6, 387.19999487999996, 52.799999999999955, 27.19997952], "area": 1436.1589186559988, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2355, "image_id": 199, "category_id": 121, "bbox": [276.3741788, 189.44, 203.01558440000002, 110.93331968000001], "area": 22521.192724267225, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2356, "image_id": 220, "category_id": 121, "bbox": [273.6, 187.2, 16.0, 15.999989760000012], "area": 255.9998361600002, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2357, "image_id": 220, "category_id": 121, "bbox": [292.8, 203.19998976, 8.0, 11.200012799999996], "area": 89.60010239999997, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2358, "image_id": 220, "category_id": 121, "bbox": [899.2, 86.4, 14.399999999999977, 19.200000000000006], "area": 276.4799999999997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2359, "image_id": 202, "category_id": 121, "bbox": [329.41150104, 86.088493056, 22.665915059999985, 12.082595839999996], "area": 273.8630910137491, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2360, "image_id": 202, "category_id": 121, "bbox": [373.23228245, 87.598823424, 22.665935549999972, 12.082595839999996], "area": 273.8633385861377, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2361, "image_id": 203, "category_id": 121, "bbox": [496.89675776, 231.19248114, 49.840701439999975, 34.754427679999985], "area": 1732.1850537169503, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2362, "image_id": 203, "category_id": 121, "bbox": [586.0059136, 225.14823166, 57.39233279999996, 31.73230294000001], "area": 1821.190890842898, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2363, "image_id": 298, "category_id": 121, "bbox": [555.6482048, 151.28674560000002, 11.085209599999985, 12.49156223999999], "area": 138.4715856618452, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2364, "image_id": 298, "category_id": 121, "bbox": [584.74694656, 149.89879872, 16.62787584, 13.879509119999987], "area": 230.78675436750748, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2365, "image_id": 298, "category_id": 121, "bbox": [706.68469248, 158.2265088, 9.699563520000083, 8.327704319999974], "area": 80.77509702761884, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2366, "image_id": 298, "category_id": 121, "bbox": [734.3978496, 156.83855616, 26.327449600000023, 15.267479040000005], "area": 401.95378494465683, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2367, "image_id": 298, "category_id": 121, "bbox": [908.9905664, 133.2433728, 22.17041919999997, 12.491573759999984], "area": 276.9434267269194, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2368, "image_id": 205, "category_id": 121, "bbox": [273.27311564, 192.38788096, 27.948388959999978, 24.82424832000001], "area": 693.7977476869862, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2369, "image_id": 205, "category_id": 121, "bbox": [347.80214323999996, 189.28485376, 34.159126820000004, 20.169687039999985], "area": 688.97889751907, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2370, "image_id": 110, "category_id": 120, "bbox": [196.63219712, 208.98013135999997, 58.98966016, 186.26490148000002], "area": 10987.703238041082, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2371, "image_id": 112, "category_id": 120, "bbox": [129.63380289999998, 278.820096, 44.87323470000001, 82.98218496000004], "area": 3723.679061628893, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2372, "image_id": 112, "category_id": 120, "bbox": [319.0985854, 225.71150336, 24.929588600000013, 74.68394496000002], "area": 1861.8400228778448, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2373, "image_id": 120, "category_id": 120, "bbox": [158.66150104, 404.76696576, 49.865051380000004, 129.88790783999997], "area": 6476.867198082304, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2374, "image_id": 120, "category_id": 120, "bbox": [528.8716929, 386.64306688, 46.84291298000004, 119.31564032], "area": 5589.092156662744, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2375, "image_id": 212, "category_id": 120, "bbox": [261.31750912, 309.81099015, 47.09792768, 100.23297045000001], "area": 4720.765193405678, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2376, "image_id": 212, "category_id": 120, "bbox": [668.486656, 397.8945222, 16.71213055999999, 28.85494383999996], "area": 482.2275887555469, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2377, "image_id": 131, "category_id": 120, "bbox": [652.47655936, 288.34656256, 31.422361600000045, 86.87366143999998], "area": 2729.77560328366, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2378, "image_id": 132, "category_id": 120, "bbox": [136.96861192, 342.32559616, 74.43946632000001, 130.97672704000001], "area": 9749.837661197915, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2379, "image_id": 132, "category_id": 120, "bbox": [522.56503192, 278.32559616, 40.19730503999999, 147.34880768000005], "area": 5923.024969593255, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2380, "image_id": 134, "category_id": 120, "bbox": [598.29211136, 187.00695439999998, 67.59553024000002, 58.979118200000016], "area": 3986.7247678166364, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2381, "image_id": 140, "category_id": 120, "bbox": [9.094137856, 345.78200064, 27.282414592, 127.39332095999998], "area": 3475.597398682443, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2382, "image_id": 148, "category_id": 120, "bbox": [587.2941056, 55.787142200000005, 33.12942080000005, 98.00442539999999], "area": 3246.8298493388124, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2383, "image_id": 157, "category_id": 120, "bbox": [331.20000000000005, 169.6, 24.0, 32.0], "area": 768.0, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2384, "image_id": 157, "category_id": 120, "bbox": [438.3999744, 169.6, 24.0, 32.0], "area": 768.0, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2385, "image_id": 161, "category_id": 120, "bbox": [424.30377146999996, 405.67891968, 37.74945078000004, 95.01032448000001], "area": 3586.587567549593, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2386, "image_id": 162, "category_id": 120, "bbox": [261.20812544, 301.19167691999996, 91.3427456, 72.09375], "area": 6585.2410656, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2387, "image_id": 180, "category_id": 120, "bbox": [167.64601344, 486.5619602, 75.51623168, 52.88714880000007], "area": 3993.8381816754395, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2388, "image_id": 180, "category_id": 120, "bbox": [842.76105216, 326.38937630000004, 78.53686784000001, 119.3739204], "area": 9375.25380999748, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2389, "image_id": 181, "category_id": 120, "bbox": [477.96152834, 276.714496, 93.71795003, 184.47633408000002], "area": 17288.74385902703, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2390, "image_id": 183, "category_id": 120, "bbox": [359.37470496, 294.07952896, 52.84923653999998, 123.66420992000002], "area": 6535.559081594292, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2391, "image_id": 186, "category_id": 120, "bbox": [937.400576, 307.2175866, 80.52229120000004, 94.29451499999998], "area": 7592.810395392769, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2392, "image_id": 191, "category_id": 120, "bbox": [248.29430784, 483.8031013, 99.31771903999999, 83.76802311999998], "area": 8319.64898476838, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2393, "image_id": 191, "category_id": 120, "bbox": [871.59863296, 85.47758553, 30.822768639999936, 46.15788688999999], "area": 1422.7138685217558, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2394, "image_id": 191, "category_id": 120, "bbox": [1012.0133632, 95.734893338, 11.986636800000042, 39.31968636199999], "area": 471.31079951120887, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2395, "image_id": 196, "category_id": 120, "bbox": [171.2, 408.0, 84.80000000000001, 30.39997439999999], "area": 2577.9178291199996, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2396, "image_id": 196, "category_id": 120, "bbox": [772.8, 425.6000256, 72.0, 75.19997952], "area": 5414.3985254399995, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2397, "image_id": 110, "category_id": 128, "bbox": [405.3648384, 484.59161422000005, 121.0044416, 84.80354637999996], "area": 10261.605775411597, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2398, "image_id": 117, "category_id": 128, "bbox": [448.98506729999997, 607.60906752, 105.53824710000005, 48.25136127999997], "area": 5092.364089680012, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2399, "image_id": 118, "category_id": 128, "bbox": [191.485586, 206.60972544, 76.895794, 60.32399360000002], "area": 4638.6613851229195, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2400, "image_id": 120, "category_id": 128, "bbox": [296.16814256000004, 569.3923328, 126.92921858999996, 69.47491840000009], "area": 8818.397104116022, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2401, "image_id": 122, "category_id": 128, "bbox": [407.78760192, 3.0221238520999996, 125.35693312000006, 51.37610780789999], "area": 6440.351310440833, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2402, "image_id": 210, "category_id": 128, "bbox": [414.64788992, 544.7184997600001, 192.90144767999993, 101.00746223999992], "area": 19484.485692578914, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2403, "image_id": 211, "category_id": 128, "bbox": [418.29268460000003, 470.18512384, 22.30892579999996, 9.292206079999971], "area": 207.29913595702786, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2404, "image_id": 211, "category_id": 128, "bbox": [431.30624179999995, 390.27224576, 20.449865800000047, 9.292175360000044], "area": 190.02373910206805, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2405, "image_id": 211, "category_id": 128, "bbox": [589.3279196, 170.9764096, 16.73167720000002, 9.292195839999977], "area": 155.47402127406266, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2406, "image_id": 17, "category_id": 128, "bbox": [410.2032384, 264.2461146, 13.572915200000011, 12.079829970000002], "area": 163.95850781322872, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2407, "image_id": 212, "category_id": 128, "bbox": [393.495552, 211.09671332, 247.64391424000007, 288.54945222000003], "area": 71457.51579956867, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2408, "image_id": 131, "category_id": 128, "bbox": [441.76172032, 378.9169664, 96.11553791999995, 48.05775360000001], "area": 4619.096838490816, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2409, "image_id": 132, "category_id": 128, "bbox": [300.7354272, 470.32559616, 148.87891936, 69.95345407999997], "area": 10414.594648929778, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2410, "image_id": 133, "category_id": 128, "bbox": [455.441866, 218.07408128, 53.76743679999999, 48.98765824], "area": 2633.940818399199, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2411, "image_id": 134, "category_id": 128, "bbox": [441.52807424, 267.5638086, 24.44947456, 30.20881799999999], "area": 738.5897271786699, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2412, "image_id": 135, "category_id": 128, "bbox": [268.91394048, 277.9186798, 24.308623360000013, 22.780224640000004], "area": 553.7559008299519, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2413, "image_id": 135, "category_id": 128, "bbox": [501.364992, 255.13846898, 19.750758400000052, 19.74285122000001], "area": 389.93628457336644, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2414, "image_id": 135, "category_id": 128, "bbox": [536.30859264, 270.32528080000003, 15.192872959999931, 25.817577329999967], "area": 392.24317250966374, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2415, "image_id": 140, "category_id": 128, "bbox": [123.680282624, 509.57345280000004, 269.18651289599995, 129.21327359999995], "area": 34782.47054026076, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2416, "image_id": 140, "category_id": 128, "bbox": [562.01776128, 649.7061888000001, 292.83126272000004, 118.29381119999996], "area": 34640.12610565728, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2417, "image_id": 141, "category_id": 128, "bbox": [0.0, 0.0, 1020.983808, 628.26768435], "area": 641451.1328110049, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2418, "image_id": 214, "category_id": 128, "bbox": [222.4, 202.02087935999998, 14.400000000000006, 12.826721280000001], "area": 184.7047864320001, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2419, "image_id": 142, "category_id": 128, "bbox": [389.11999488000004, 227.328, 59.392005119999936, 20.47999999999999], "area": 1216.348264857598, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2420, "image_id": 147, "category_id": 128, "bbox": [478.4, 216.0, 41.60000000000002, 16.000005119999983], "area": 665.6002129919997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2421, "image_id": 148, "category_id": 128, "bbox": [459.29412608, 238.226168, 106.91766272000001, 73.88026599999999], "area": 7899.105361851883, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2422, "image_id": 153, "category_id": 128, "bbox": [317.44, 286.8985497, 23.04000000000002, 28.177555699999985], "area": 649.2108833280003, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2423, "image_id": 153, "category_id": 128, "bbox": [724.48, 220.29709939999998, 28.159999999999968, 28.17754155999999], "area": 793.4795703295989, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2424, "image_id": 157, "category_id": 128, "bbox": [374.4, 204.8, 41.60002559999997, 24.0], "area": 998.4006143999992, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2425, "image_id": 158, "category_id": 128, "bbox": [151.10619602, 160.09439232, 55.9092872, 28.69616640000001], "area": 1604.3822087965907, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2426, "image_id": 158, "category_id": 128, "bbox": [465.4070597, 283.94100736, 36.26552420000005, 39.26843392000001], "area": 1424.090340621863, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2427, "image_id": 161, "category_id": 128, "bbox": [179.68735248, 497.67303168, 69.45899679000001, 36.194385919999945], "area": 2514.025735433298, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2428, "image_id": 162, "category_id": 128, "bbox": [533.633792, 382.89791923, 75.31770879999999, 102.53333076999998], "area": 7722.575549228936, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2429, "image_id": 162, "category_id": 128, "bbox": [634.5915392, 363.67291154, 65.70264576, 129.76874231000002], "area": 8526.149706714654, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2430, "image_id": 163, "category_id": 128, "bbox": [240.0, 190.40000256000002, 35.19999999999999, 6.399997439999979], "area": 225.27990988799917, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2431, "image_id": 165, "category_id": 128, "bbox": [389.49864164, 533.633792, 149.06740956000002, 55.2863744], "area": 8241.3966157723, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2432, "image_id": 167, "category_id": 128, "bbox": [278.03539412000003, 305.0855424, 66.48671012999998, 48.330383359999985], "area": 3213.3281889280934, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2433, "image_id": 175, "category_id": 128, "bbox": [484.8941056, 354.323724, 25.600000000000023, 13.569875999999939], "area": 347.3888255999987, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2434, "image_id": 176, "category_id": 128, "bbox": [75.78339328, 397.4007296, 12.938629120000002, 14.786979840000015], "area": 191.32324795467716, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2435, "image_id": 176, "category_id": 128, "bbox": [480.57760768, 279.1047168, 77.63182591999998, 27.725619199999983], "area": 2152.390443258608, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2436, "image_id": 177, "category_id": 128, "bbox": [394.6688739, 553.5952896, 195.0662307, 337.2998656], "area": 65795.81339820859, "iscrowd": 0, "IsOccluded": 0, "IsInside": 1, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2437, "image_id": 180, "category_id": 128, "bbox": [253.73451264, 311.27876626, 30.206494720000023, 40.79864983999999], "area": 1232.3842009750892, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2438, "image_id": 181, "category_id": 128, "bbox": [210.86538574000002, 551.8656512, 117.14743570999997, 85.98476800000003], "area": 10072.895081319266, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2439, "image_id": 186, "category_id": 128, "bbox": [271.95251712, 264.6329792, 226.37390848, 156.65055196], "area": 35461.597712734525, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2440, "image_id": 186, "category_id": 128, "bbox": [624.4273152, 415.2, 176.2373632, 65.39780600000002], "area": 11525.536888505141, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2441, "image_id": 189, "category_id": 128, "bbox": [4.5376663552, 13.609271750000001, 694.2629326847999, 639.6357517], "area": 444075.39282528847, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2442, "image_id": 191, "category_id": 128, "bbox": [474.3277568, 391.48732751999995, 23.973242880000043, 30.77194798000003], "area": 737.7033828152674, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2443, "image_id": 191, "category_id": 128, "bbox": [541.1103744, 418.84015068, 104.4548608, 46.15787811999997], "area": 4821.414733847962, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2444, "image_id": 195, "category_id": 128, "bbox": [296.16814256000004, 330.76105216, 16.62167923999999, 27.18584831999999], "area": 451.8744506423325, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2445, "image_id": 196, "category_id": 128, "bbox": [401.6, 350.4, 27.19999999999999, 36.79999488], "area": 1000.9598607359997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2446, "image_id": 196, "category_id": 128, "bbox": [601.6, 462.3999744, 32.0, 30.400012800000013], "area": 972.8004096000004, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2447, "image_id": 198, "category_id": 128, "bbox": [262.92478408, 25.675515904, 10.577429760000006, 9.06194944], "area": 95.85213369027139, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2448, "image_id": 198, "category_id": 128, "bbox": [435.18586011, 31.716813824, 10.577436590000003, 7.5516221439999995], "area": 79.87680437979986, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2449, "image_id": 198, "category_id": 128, "bbox": [485.050891, 7.5516223488, 10.577416100000052, 6.0412977152], "area": 63.901319717650004, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2450, "image_id": 199, "category_id": 128, "bbox": [368.49887698000003, 482.98665984, 203.01559971999998, 78.50669056000004], "area": 15938.082866070868, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2451, "image_id": 200, "category_id": 128, "bbox": [357.94690048, 232.70353667999998, 16.613580799999966, 22.665928720000014], "area": 376.56223819676, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2452, "image_id": 200, "category_id": 128, "bbox": [546.7374592, 145.06194653999998, 34.73745919999999, 10.577436590000003], "area": 367.4332719857121, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2453, "image_id": 200, "category_id": 128, "bbox": [595.06787328, 293.14601782, 34.73742848000006, 12.088498960000008], "area": 419.9233680535554, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2454, "image_id": 200, "category_id": 128, "bbox": [738.5486336, 232.70353667999998, 34.73750015999997, 10.57744342], "area": 367.4339424946406, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2455, "image_id": 202, "category_id": 128, "bbox": [343.0110692, 129.88790784, 36.265455900000006, 12.08259584000001], "area": 438.1808465930439, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2456, "image_id": 205, "category_id": 128, "bbox": [20.184946058, 332.0242176, 20.184945335999995, 7.757619200000022], "area": 156.58711948950446, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2457, "image_id": 205, "category_id": 128, "bbox": [226.692477, 297.89089792, 10.868821940000016, 9.309102080000002], "area": 101.17897292880382, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2458, "image_id": 205, "category_id": 128, "bbox": [302.77418726, 271.515136, 68.31828974, 35.684864000000005], "area": 2437.9288780844954, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2459, "image_id": 306, "category_id": 188, "bbox": [20.332130304, 16.635379712, 1003.667869696, 829.9205754879999], "area": 832964.6160169193, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2460, "image_id": 307, "category_id": 188, "bbox": [161.6, 0.0, 689.6, 343.99999488000003], "area": 237222.396469248, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2461, "image_id": 308, "category_id": 188, "bbox": [0.0, 0.0, 1024.0, 1024.0], "area": 1048576.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2462, "image_id": 309, "category_id": 188, "bbox": [0.0, 0.0, 1024.0, 1024.0], "area": 1048576.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2463, "image_id": 310, "category_id": 188, "bbox": [0.0, 0.0, 1024.0, 723.0], "area": 740352.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2464, "image_id": 221, "category_id": 148, "bbox": [0.0, 94.531696582, 1024.0, 702.468303418], "area": 719327.542700032, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2465, "image_id": 222, "category_id": 148, "bbox": [155.10588416, 220.13302720000002, 441.2235264000001, 459.8669728], "area": 202904.12741370892, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2466, "image_id": 222, "category_id": 148, "bbox": [593.317632, 250.2882528, 237.9294208, 325.6763032], "area": 77487.97418866119, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2467, "image_id": 111, "category_id": 148, "bbox": [45.33185744, 46.820061184, 607.44689516, 977.179938816], "area": 593584.919846418, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2468, "image_id": 112, "category_id": 148, "bbox": [186.14084286, 66.38573568, 347.35215494000005, 629.00488192], "area": 218486.2012026923, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2469, "image_id": 114, "category_id": 148, "bbox": [512.0, 278.4, 320.0, 259.2], "area": 82943.99999999999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2470, "image_id": 116, "category_id": 148, "bbox": [305.6, 385.60002048, 81.59999999999997, 144.0], "area": 11750.399999999994, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2471, "image_id": 116, "category_id": 148, "bbox": [334.4, 326.4, 217.60000000000002, 321.6], "area": 69980.16000000002, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2472, "image_id": 116, "category_id": 148, "bbox": [704.0, 387.19999487999996, 110.39999999999998, 161.60001024000002], "area": 17840.641130496, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2473, "image_id": 118, "category_id": 148, "bbox": [0.0, 15.08100096, 680.0, 977.24889088], "area": 664529.2457984, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2474, "image_id": 27, "category_id": 148, "bbox": [259.77581568, 43.820795069999996, 537.67555072, 636.15710068], "area": 342046.1194525575, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2475, "image_id": 238, "category_id": 148, "bbox": [0.0, 0.0, 233.60000255999998, 204.8], "area": 47841.280524288, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2476, "image_id": 123, "category_id": 148, "bbox": [1.6, 100.80000000000001, 424.0, 667.2], "area": 282892.80000000005, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2477, "image_id": 123, "category_id": 148, "bbox": [596.8, 196.79999999999998, 427.20000000000005, 571.2], "area": 244016.64, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2478, "image_id": 123, "category_id": 148, "bbox": [628.8, 360.0, 62.40000000000009, 123.19999487999999], "area": 7687.67968051201, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2479, "image_id": 123, "category_id": 148, "bbox": [908.8, 283.20000000000005, 115.20000000000005, 217.60000512], "area": 25067.52058982401, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2480, "image_id": 125, "category_id": 148, "bbox": [177.60000000000002, 96.0, 435.19998719999995, 926.4], "area": 403169.26814207993, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2481, "image_id": 126, "category_id": 148, "bbox": [107.96166144, 96.44693616, 719.74439936, 704.55306384], "area": 507098.1217507685, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2482, "image_id": 225, "category_id": 148, "bbox": [0.0, 0.0, 1024.0, 683.0], "area": 699392.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2483, "image_id": 270, "category_id": 148, "bbox": [960.9099776, 2.429752122, 60.66351104, 157.933887048], "area": 9580.82410052646, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2484, "image_id": 311, "category_id": 148, "bbox": [49.182266368, 291.6604796, 59.270935552, 80.80635499999998], "area": 4789.468259397032, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2485, "image_id": 311, "category_id": 148, "bbox": [234.56156672, 292.92308864, 40.35468288000001, 70.70555883999997], "area": 2853.3004048413804, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2486, "image_id": 311, "category_id": 148, "bbox": [494.3448064, 267.67109824, 46.66013695999999, 94.69494496], "area": 4418.4791012532605, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2487, "image_id": 311, "category_id": 148, "bbox": [756.6502912, 210.8541008, 85.75365120000004, 179.28914136], "area": 15374.698492132942, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2488, "image_id": 311, "category_id": 148, "bbox": [860.059136, 314.38727095999997, 30.265999360000023, 42.928364640000034], "area": 1299.2698567200887, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2489, "image_id": 312, "category_id": 148, "bbox": [4.8, 440.00002559999996, 31.999999999999996, 33.60000000000005], "area": 1075.2000000000014, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2490, "image_id": 312, "category_id": 148, "bbox": [116.8, 436.79999999999995, 33.60000000000001, 113.59997952000003], "area": 3816.959311872002, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2491, "image_id": 312, "category_id": 148, "bbox": [160.0, 433.60002048, 68.80000000000001, 99.19997952], "area": 6824.958590976001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2492, "image_id": 312, "category_id": 148, "bbox": [232.0, 440.00002559999996, 97.60000000000002, 110.39995392000006], "area": 10775.035502592007, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2493, "image_id": 312, "category_id": 148, "bbox": [233.6, 427.20000000000005, 25.599999999999994, 27.19997952], "area": 696.3194757119998, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2494, "image_id": 312, "category_id": 148, "bbox": [344.0, 432.0, 38.39999999999998, 108.7999872], "area": 4177.919508479998, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2495, "image_id": 312, "category_id": 148, "bbox": [459.2, 3.200000256, 252.8, 121.599999744], "area": 30740.479935283198, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2496, "image_id": 312, "category_id": 148, "bbox": [673.6, 422.40000000000003, 48.0, 135.99997439999996], "area": 6527.998771199998, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2497, "image_id": 312, "category_id": 148, "bbox": [691.2, 412.79999999999995, 91.19999999999993, 246.4000128], "area": 22471.681167359984, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2498, "image_id": 312, "category_id": 148, "bbox": [755.2, 403.20000000000005, 150.39999999999998, 364.79999999999995], "area": 54865.919999999984, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2499, "image_id": 312, "category_id": 148, "bbox": [926.4, 433.60002048, 60.80000000000007, 102.40000511999997], "area": 6225.920311296006, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2500, "image_id": 312, "category_id": 148, "bbox": [955.2, 423.99997440000004, 38.39999999999998, 68.80001279999996], "area": 2641.920491519997, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2501, "image_id": 129, "category_id": 148, "bbox": [134.41888256, 108.79646332, 611.68140288, 501.67255658000005], "area": 306863.7731952506, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2502, "image_id": 130, "category_id": 148, "bbox": [113.47026944, 0.0, 765.23242496, 573.0], "area": 438478.17950208, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2503, "image_id": 242, "category_id": 148, "bbox": [285.24745408, 50.21538816, 332.5423971199999, 661.66155264], "area": 220030.5187970466, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2504, "image_id": 242, "category_id": 148, "bbox": [462.60337711999995, 82.70769408, 206.91529296000007, 629.16924672], "area": 130184.73900649138, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2505, "image_id": 243, "category_id": 148, "bbox": [598.228, 43.097645056, 65.51200000000006, 322.370371584], "area": 21119.127783211025, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2506, "image_id": 243, "category_id": 148, "bbox": [682.7040000000001, 1.7239056384, 70.68399999999997, 124.1212092416], "area": 8773.383554033251, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2507, "image_id": 243, "category_id": 148, "bbox": [756.836, 3.4478113792, 99.99199999999999, 344.7811345408], "area": 34475.35520500367, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2508, "image_id": 243, "category_id": 148, "bbox": [784.4200000000001, 5.17171712, 34.47999999999993, 341.33331456], "area": 11769.172686028778, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2509, "image_id": 136, "category_id": 148, "bbox": [518.144, 38.932514944000005, 485.376, 465.1411133759999], "area": 225768.33304598933, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2510, "image_id": 138, "category_id": 148, "bbox": [130.09615454000001, 93.72203008, 683.43844558, 838.29153792], "area": 572920.6656189124, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2511, "image_id": 141, "category_id": 148, "bbox": [0.0, 442.9513425, 132.71281664, 235.03540275], "area": 31192.210309069298, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2512, "image_id": 141, "category_id": 148, "bbox": [70.88070656, 0.0, 153.82622208, 316.39379856], "area": 48669.66272202534, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2513, "image_id": 141, "category_id": 148, "bbox": [699.7584896, 376.65930897000004, 324.24151040000004, 304.34069102999996], "area": 98679.88533574693, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2514, "image_id": 141, "category_id": 148, "bbox": [818.8983808, 81.35840534399999, 99.53459199999998, 122.037608016], "area": 12146.963522528486, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2515, "image_id": 142, "category_id": 148, "bbox": [153.60000000000002, 4.096, 477.1840128, 1019.904], "area": 486681.8833907712, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2516, "image_id": 313, "category_id": 148, "bbox": [186.7294208, 112.91574448, 362.91763199999997, 566.08425552], "area": 205441.95752580135, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2517, "image_id": 144, "category_id": 148, "bbox": [0.0, 104.18847135, 511.2459264, 300.48560451000003], "area": 153622.04124757898, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2518, "image_id": 245, "category_id": 148, "bbox": [30.525745152, 0.0, 990.699173888, 921.225228], "area": 912657.0723443845, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2519, "image_id": 146, "category_id": 148, "bbox": [75.55309801, 146.5014784, 605.9358327900001, 875.9882240000001], "area": 530792.6540236732, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2520, "image_id": 314, "category_id": 148, "bbox": [0.0, 297.53393152, 81.716812416, 389.66370304], "area": 31842.075726643605, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2521, "image_id": 314, "category_id": 148, "bbox": [286.0088544, 280.92035072, 92.30974668000002, 188.79055872000004], "area": 17427.20865101887, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2522, "image_id": 271, "category_id": 148, "bbox": [0.0, 229.37599487999998, 1024.0, 538.62400512], "area": 551550.98124288, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2523, "image_id": 315, "category_id": 148, "bbox": [166.4, 128.00000255999998, 127.99999999999997, 579.20001024], "area": 74137.60131071997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2524, "image_id": 315, "category_id": 148, "bbox": [505.6, 256.00000511999997, 81.60000000000002, 206.39996928], "area": 16842.237493248005, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2525, "image_id": 315, "category_id": 148, "bbox": [851.2, 256.00000511999997, 64.0, 214.39999488000007], "area": 13721.599672320004, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2526, "image_id": 56, "category_id": 148, "bbox": [401.6, 185.59999488, 193.60000000000002, 208.00000511999994], "area": 40268.80099123199, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2527, "image_id": 150, "category_id": 148, "bbox": [147.19999488, 334.4, 54.40000512000002, 81.60000000000002], "area": 4439.040417792003, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2528, "image_id": 150, "category_id": 148, "bbox": [168.0, 0.0, 600.0, 1024.0], "area": 614400.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2529, "image_id": 150, "category_id": 148, "bbox": [208.00000511999997, 324.8, 65.59999488000003, 105.59999999999997], "area": 6927.359459328, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2530, "image_id": 150, "category_id": 148, "bbox": [291.19999487999996, 190.4, 84.80001023999999, 252.79999999999998], "area": 21437.442588672, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2531, "image_id": 152, "category_id": 148, "bbox": [123.2, 291.19999487999996, 516.8, 476.80000512000004], "area": 246410.24264601598, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2532, "image_id": 152, "category_id": 148, "bbox": [326.4, 414.3999744, 696.0, 353.6000256], "area": 246105.61781760002, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2533, "image_id": 226, "category_id": 148, "bbox": [0.0, 308.8, 139.2, 302.40000000000003], "area": 42094.08, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2534, "image_id": 153, "category_id": 148, "bbox": [645.12, 40.985508312, 378.88, 666.014491688], "area": 252339.57061074942, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2535, "image_id": 246, "category_id": 148, "bbox": [0.0, 374.74335848, 493.87610112, 137.50664152000002], "area": 67911.24399200312, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 2536, "image_id": 246, "category_id": 148, "bbox": [0.0, 389.8540095, 1024.0, 291.6349213], "area": 298634.1594112, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 2537, "image_id": 246, "category_id": 148, "bbox": [489.3451264, 228.1703564, 95.15048960000001, 226.6592872], "area": 21566.742149467016, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2538, "image_id": 246, "category_id": 148, "bbox": [589.02654976, 149.59513364999998, 222.01769983999998, 344.52210425000004], "area": 76490.0051296217, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2539, "image_id": 316, "category_id": 148, "bbox": [0.0, 0.0, 1022.4, 766.39997952], "area": 783567.339061248, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2540, "image_id": 154, "category_id": 148, "bbox": [0.0, 12.088495545, 403.2566272, 670.911504455], "area": 270549.51043620106, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2541, "image_id": 154, "category_id": 148, "bbox": [598.0884992, 0.0, 425.9115008, 679.97789575], "area": 289610.40608970844, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2542, "image_id": 227, "category_id": 148, "bbox": [47.14725404, 381.9078656, 622.0395612, 642.0921344000001], "area": 399406.70953214745, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2543, "image_id": 156, "category_id": 148, "bbox": [4.43930624, 164.11964269999999, 543.0751641600001, 449.48082030000006], "area": 244101.87027119406, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2544, "image_id": 156, "category_id": 148, "bbox": [292.99423232, 255.790076, 168.69363712, 264.66137634999995], "area": 44646.69018166665, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2545, "image_id": 156, "category_id": 148, "bbox": [386.21966336, 249.87584520000001, 244.16186368, 322.3250546], "area": 78699.48604189376, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2546, "image_id": 159, "category_id": 148, "bbox": [128.0, 67.19999999999999, 363.2, 316.79999999999995], "area": 115061.76, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2547, "image_id": 159, "category_id": 148, "bbox": [161.6, 190.40000256000002, 441.6, 575.9999769599999], "area": 254361.58982553598, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2548, "image_id": 250, "category_id": 148, "bbox": [58.902657024, 196.43805346, 185.769906176, 220.61506504], "area": 40983.63993349294, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2549, "image_id": 250, "category_id": 148, "bbox": [234.10029568, 213.0597327, 98.17109504000001, 163.19469497999998], "area": 16021.00191090539, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2550, "image_id": 250, "category_id": 148, "bbox": [244.6725632, 163.19468815000002, 394.19468800000004, 519.80531185], "area": 204904.49272545346, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2551, "image_id": 162, "category_id": 148, "bbox": [588.1189376, 0.0, 435.8810624, 769.0], "area": 335192.5369856, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2552, "image_id": 163, "category_id": 148, "bbox": [81.6, 102.40000512, 400.0, 255.99999744], "area": 102399.99897599999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2553, "image_id": 164, "category_id": 148, "bbox": [144.0, 12.8, 491.20001279999997, 1009.6], "area": 495915.53292287997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2554, "image_id": 317, "category_id": 148, "bbox": [223.52802816, 137.50663469, 67.96459008000002, 321.85618236], "area": 21874.823498811133, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2555, "image_id": 317, "category_id": 148, "bbox": [237.12094208, 134.48450995000002, 116.29498368, 323.36727205], "area": 37605.99162570087, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2556, "image_id": 317, "category_id": 148, "bbox": [442.5250816, 137.50663469, 119.31561983999995, 349.05532551], "area": 41647.752521678594, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2557, "image_id": 317, "category_id": 148, "bbox": [561.84070144, 211.54867716, 39.26843392000001, 58.931411939999975], "area": 2314.144255578188, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2558, "image_id": 317, "category_id": 148, "bbox": [589.02654976, 197.949109, 74.00592384000004, 71.01991090000001], "area": 5255.89411718899, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2559, "image_id": 317, "category_id": 148, "bbox": [643.3982464, 213.0597327, 54.371635200000014, 72.53098009999998], "area": 3943.6279906956597, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2560, "image_id": 317, "category_id": 148, "bbox": [670.58404352, 170.75, 111.76403968, 276.52431809], "area": 30905.474859495702, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2561, "image_id": 317, "category_id": 148, "bbox": [747.610624, 194.92699792000002, 52.861337599999956, 128.44025363999998], "area": 6789.523609093662, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2562, "image_id": 317, "category_id": 148, "bbox": [853.3332992, 208.52655242, 81.55756543999996, 226.65930769000002], "area": 18485.781319512265, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2563, "image_id": 317, "category_id": 148, "bbox": [916.76696576, 243.2809801, 31.71682304000001, 101.24112415], "area": 3211.046819036221, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2564, "image_id": 317, "category_id": 148, "bbox": [995.3038336, 288.61283754, 27.185868800000094, 67.99778615999998], "area": 1848.5788932362213, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2565, "image_id": 251, "category_id": 148, "bbox": [23.630770176, 270.96390132, 445.833857024, 283.56686036], "area": 126423.70707848485, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2566, "image_id": 251, "category_id": 148, "bbox": [302.47385088, 252.05944792, 600.22152192, 428.50107482], "area": 257195.56727281617, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2567, "image_id": 252, "category_id": 148, "bbox": [604.129792, 281.05751885999996, 327.7404160000001, 346.03319394], "area": 113409.06293170432, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2568, "image_id": 166, "category_id": 148, "bbox": [160.17256341, 684.1769984, 87.64159697000001, 178.21829119999995], "area": 15619.335650032495, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2569, "image_id": 166, "category_id": 148, "bbox": [222.12610692, 640.3775488, 89.15265933999997, 116.29499392000002], "area": 10368.00797589713, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2570, "image_id": 166, "category_id": 148, "bbox": [430.65263885, 672.0944128, 137.50664834999998, 351.9055872], "area": 48389.35783151066, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2571, "image_id": 166, "category_id": 148, "bbox": [504.69467449, 675.11504896, 178.30532551, 348.88495104000003], "area": 62208.044760727615, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2572, "image_id": 167, "category_id": 148, "bbox": [0.0, 141.97050368, 681.4889308, 880.5191987200001], "area": 600064.0872845657, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2573, "image_id": 168, "category_id": 148, "bbox": [0.0, 197.0891712, 119.16644352, 377.52287616], "area": 44988.0584994286, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2574, "image_id": 168, "category_id": 148, "bbox": [357.49933056, 56.90602368, 230.01892864, 505.2144672], "area": 116208.89047877243, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2575, "image_id": 253, "category_id": 148, "bbox": [0.0, 286.40000256, 91.2, 260.79999744], "area": 23784.959766528, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2576, "image_id": 253, "category_id": 148, "bbox": [860.8, 254.39999999999998, 25.600000000000023, 87.99999744000003], "area": 2252.7999344640025, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2577, "image_id": 268, "category_id": 148, "bbox": [483.2, 153.60000000000002, 238.40000000000003, 335.99999999999994], "area": 80102.4, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2578, "image_id": 318, "category_id": 148, "bbox": [232.58996736, 69.40707862000001, 359.45723904000005, 339.49113637999994], "area": 122032.5465617069, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2579, "image_id": 269, "category_id": 148, "bbox": [146.8247857, 9.38015232, 337.38460695, 631.59694848], "area": 213091.0882137442, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2580, "image_id": 171, "category_id": 148, "bbox": [683.18542848, 135.354078, 163.40421631999993, 420.06439824999995], "area": 68640.29379997359, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2581, "image_id": 172, "category_id": 148, "bbox": [0.0, 33.505434455, 588.33453056, 649.633146545], "area": 382201.61230876826, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2582, "image_id": 172, "category_id": 148, "bbox": [586.47271424, 26.059781745, 435.66544896000005, 657.078799255], "area": 286266.5300795273, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2583, "image_id": 319, "category_id": 148, "bbox": [163.84, 128.99779763, 697.837056, 488.67402857], "area": 341014.84544094873, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2584, "image_id": 286, "category_id": 148, "bbox": [0.0, 0.0, 1022.49413632, 680.0], "area": 695296.0126976001, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2585, "image_id": 216, "category_id": 148, "bbox": [0.0, 519.9999744, 142.4, 164.80001279999996], "area": 23467.521822719995, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2586, "image_id": 216, "category_id": 148, "bbox": [40.0, 425.6000256, 67.2, 75.19997952], "area": 5053.438623744, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2587, "image_id": 216, "category_id": 148, "bbox": [108.8, 364.79999999999995, 56.000000000000014, 92.80002048], "area": 5196.801146880001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2588, "image_id": 216, "category_id": 148, "bbox": [260.8, 435.19999487999996, 60.80000000000001, 108.79997952000005], "area": 6615.038754816005, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2589, "image_id": 216, "category_id": 148, "bbox": [264.0, 489.59999999999997, 115.19999999999999, 120.0], "area": 13824.0, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2590, "image_id": 216, "category_id": 148, "bbox": [305.6, 367.99999488000003, 57.599999999999966, 99.20001791999998], "area": 5713.921032191995, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2591, "image_id": 216, "category_id": 148, "bbox": [368.0, 447.99997440000004, 83.19999999999999, 124.80003071999997], "area": 10383.362555903996, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2592, "image_id": 216, "category_id": 148, "bbox": [428.8, 404.80000512000004, 35.19999999999999, 76.80001535999997], "area": 2703.3605406719985, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2593, "image_id": 216, "category_id": 148, "bbox": [528.0, 513.5999999999999, 219.20000000000005, 252.79997952000005], "area": 55413.75551078402, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2594, "image_id": 216, "category_id": 148, "bbox": [649.6, 459.19999487999996, 73.60000000000002, 104.00001792], "area": 7654.401318912003, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2595, "image_id": 216, "category_id": 148, "bbox": [657.6, 363.19999487999996, 59.19999999999993, 76.80003071999997], "area": 4546.561818623993, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2596, "image_id": 216, "category_id": 148, "bbox": [705.6, 492.79998720000003, 169.60000000000002, 185.5999872], "area": 31477.757829120004, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2597, "image_id": 179, "category_id": 148, "bbox": [101.19174144, 52.88716929, 743.07961856, 628.60176151], "area": 467101.1571689949, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2598, "image_id": 180, "category_id": 148, "bbox": [0.0, 182.83849896, 981.7109504, 494.11725155999994], "area": 485080.3166380034, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2599, "image_id": 180, "category_id": 148, "bbox": [551.2684544, 1.5110619602, 471.22124800000006, 678.4668337898], "area": 319707.9881450382, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2600, "image_id": 181, "category_id": 148, "bbox": [89.03204997, 100.054962176, 641.96795003, 923.945037824], "area": 593143.1018722641, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2601, "image_id": 74, "category_id": 148, "bbox": [392.68435968, 15.088495708000002, 267.32741632000005, 499.42918379199995], "area": 133511.1133379218, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2602, "image_id": 74, "category_id": 148, "bbox": [634.3363072, 167.48230004, 60.412979199999995, 267.06639190000004], "area": 16134.276378873748, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2603, "image_id": 182, "category_id": 148, "bbox": [44.66367448, 84.83721216, 464.50224248, 939.16278784], "area": 436243.2210054485, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2604, "image_id": 184, "category_id": 148, "bbox": [35.80419456, 96.62654742000001, 639.1049126400001, 914.37345258], "area": 584380.5655314762, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2605, "image_id": 185, "category_id": 148, "bbox": [388.5714432, 21.337719725, 207.23804159999997, 573.0702042749999], "area": 118761.94683326293, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2606, "image_id": 256, "category_id": 148, "bbox": [0.0, 28.696165376, 145.06194653999998, 394.194699264], "area": 57182.65039098574, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2607, "image_id": 256, "category_id": 148, "bbox": [90.66371488, 37.758113792, 157.1504455, 323.20944332799996], "area": 50792.50800880219, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2608, "image_id": 256, "category_id": 148, "bbox": [148.08407128000002, 37.758113792, 423.09735432, 984.731588608], "area": 416637.3298553755, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2609, "image_id": 256, "category_id": 148, "bbox": [203.99335847999998, 19.634217984, 39.28762162, 214.46607769599999], "area": 8425.86211084597, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2610, "image_id": 256, "category_id": 148, "bbox": [291.63496227999997, 7.5516223488, 81.59732017000003, 110.2536896512], "area": 8996.405614392786, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2611, "image_id": 256, "category_id": 148, "bbox": [562.1150377199999, 7.5516223488, 119.37389308000002, 289.98230917120003], "area": 34616.31717009434, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2612, "image_id": 320, "category_id": 148, "bbox": [432.8247296, 564.3097493, 146.28577279999996, 54.318565179999965], "area": 7946.033284743463, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2613, "image_id": 320, "category_id": 148, "bbox": [450.9219328, 511.5, 104.05893120000002, 60.35396509999998], "area": 6280.3691019881, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2614, "image_id": 257, "category_id": 148, "bbox": [352.43359232, 97.09134571, 267.79409408000004, 479.90865429], "area": 128516.70331674248, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2615, "image_id": 257, "category_id": 148, "bbox": [563.338752, 219.14903135999998, 170.66670079999994, 357.85096864], "area": 61073.24419587305, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2616, "image_id": 217, "category_id": 148, "bbox": [337.93457152, 14.58715608, 243.25465087999993, 621.41284392], "area": 151161.56440010748, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2617, "image_id": 187, "category_id": 148, "bbox": [512.6928384, 0.0, 105.3098496, 301.1855616], "area": 31717.80619378754, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2618, "image_id": 189, "category_id": 148, "bbox": [93.778432, 10.584989215, 234.44609024, 610.9050987850001], "area": 143224.31191782423, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2619, "image_id": 189, "category_id": 148, "bbox": [167.89364736, 282.77041805, 331.24962304, 385.59600095], "area": 127728.52996041901, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2620, "image_id": 189, "category_id": 148, "bbox": [261.6720896, 300.916116, 425.02804480000003, 382.5717465], "area": 162603.72141061627, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2621, "image_id": 189, "category_id": 148, "bbox": [355.45053184, 0.0, 229.90841856000003, 297.891841], "area": 68487.84206623698, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2622, "image_id": 189, "category_id": 148, "bbox": [444.69128192, 0.0, 281.33532671999996, 430.96026295], "area": 121244.34638037534, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2623, "image_id": 189, "category_id": 148, "bbox": [627.7105152, 247.9911665, 152.76805119999995, 435.49669599999993], "area": 66529.9815519588, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2624, "image_id": 296, "category_id": 148, "bbox": [268.8, 276.80001024, 72.0, 107.19998976000001], "area": 7718.3992627200005, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2625, "image_id": 296, "category_id": 148, "bbox": [392.0, 227.19998976, 67.19999999999999, 115.20000768000001], "area": 7741.440516096, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2626, "image_id": 296, "category_id": 148, "bbox": [728.0, 140.80000512, 54.39999999999998, 81.59999232000001], "area": 4439.039582207999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2627, "image_id": 296, "category_id": 148, "bbox": [760.0, 185.59999488, 62.39999999999998, 81.6], "area": 5091.839999999997, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2628, "image_id": 259, "category_id": 148, "bbox": [0.0, 275.982336, 635.2256438, 746.5095168], "area": 474201.9884121069, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2629, "image_id": 259, "category_id": 148, "bbox": [67.89822864, 200.57732096, 612.59291456, 821.9145318399999], "area": 503499.0185790835, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2630, "image_id": 191, "category_id": 148, "bbox": [797.9665408, 0.0, 226.03345920000004, 776.1364931], "area": 175432.81634674998, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2631, "image_id": 321, "category_id": 148, "bbox": [444.88955904, 49.7920357, 31.670067200000005, 89.02212154000001], "area": 2819.3365714583683, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2632, "image_id": 321, "category_id": 148, "bbox": [464.49483776, 49.7920357, 27.145820160000028, 92.03982149999999], "area": 2498.4964419975036, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2633, "image_id": 89, "category_id": 148, "bbox": [42.21729544, 9.03529472, 411.61864856, 697.22354688], "area": 286990.21411095536, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2634, "image_id": 198, "category_id": 148, "bbox": [172.26105554, 119.3156352, 33.24337213999998, 152.54276608], "area": 5071.035940062406, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2635, "image_id": 198, "category_id": 148, "bbox": [429.1416038, 0.0, 120.88492130000004, 276.389376], "area": 33411.30796591612, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2636, "image_id": 198, "category_id": 148, "bbox": [530.3827621, 48.33038336, 61.95352302000003, 194.83186175999998], "area": 12070.520232577623, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2637, "image_id": 201, "category_id": 148, "bbox": [4.5309733888, 24.17699109, 433.4631334912, 655.80090466], "area": 284265.5150802873, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2638, "image_id": 201, "category_id": 148, "bbox": [492.36578304, 12.088495545, 252.22418431999995, 667.889400205], "area": 168457.85918268014, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2639, "image_id": 201, "category_id": 148, "bbox": [589.02654976, 0.0, 433.4631526400001, 679.97789575], "area": 294745.3624173083, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2640, "image_id": 97, "category_id": 148, "bbox": [562.68578816, 67.64090614999999, 148.38452224000002, 523.48184465], "area": 77676.60341970416, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2641, "image_id": 220, "category_id": 148, "bbox": [262.4, 0.0, 411.20000000000005, 764.80000512], "area": 314485.76210534404, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2642, "image_id": 220, "category_id": 148, "bbox": [704.0, 0.0, 318.4, 766.39997952], "area": 244021.753479168, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2643, "image_id": 322, "category_id": 148, "bbox": [0.0, 52.80973566, 1007.3864192, 629.19026434], "area": 633837.727388974, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 2644, "image_id": 203, "category_id": 148, "bbox": [232.58996736, 78.57522275, 608.66074624, 604.42477725], "area": 367889.63596693083, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2645, "image_id": 204, "category_id": 148, "bbox": [48.11747328, 225.4989015, 177.4331904, 447.9911103], "area": 79488.4919713673, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2646, "image_id": 204, "category_id": 148, "bbox": [212.01762304, 309.68515128, 117.28633855999999, 362.30153111999994], "area": 42493.02003974668, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2647, "image_id": 204, "category_id": 148, "bbox": [977.3861888, 333.73836744, 46.61381119999999, 102.22614155999997], "area": 4765.15006238231, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2648, "image_id": 205, "category_id": 148, "bbox": [0.0, 282.37576192, 128.87311564, 654.73941504], "area": 84378.30834851589, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2649, "image_id": 205, "category_id": 148, "bbox": [45.02795598, 0.0, 676.97204402, 1024.0], "area": 693219.37307648, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2650, "image_id": 205, "category_id": 148, "bbox": [85.39784954, 242.03635712, 135.08387516000002, 633.0182348799999], "area": 85510.55621453348, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2651, "image_id": 323, "category_id": 148, "bbox": [157.07374592, 48.35398218, 25.675520000000006, 69.50884853], "area": 1784.6758306089857, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2652, "image_id": 323, "category_id": 148, "bbox": [220.50737152, 36.265486634999995, 30.206494719999995, 54.39822824500001], "area": 1643.1797942599476, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2653, "image_id": 323, "category_id": 148, "bbox": [258.26547712, 122.39601782, 166.1357056, 252.34734066], "area": 41923.90349683267, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2654, "image_id": 323, "category_id": 148, "bbox": [534.6548736, 104.26327621, 140.46017536, 259.90265251], "area": 36505.97214808375, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2655, "image_id": 206, "category_id": 148, "bbox": [28.696165376, 155.86725923999998, 448.566375424, 528.13274076], "area": 236902.58926545625, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2656, "image_id": 206, "category_id": 148, "bbox": [746.10028544, 84.74336262, 277.89971456, 599.25663738], "area": 166533.2484760874, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2657, "image_id": 324, "category_id": 193, "bbox": [0.0, 0.0, 1024.0, 681.0], "area": 697344.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2658, "image_id": 325, "category_id": 193, "bbox": [253.73451264, 255.3694654, 620.7433625599999, 343.01106919999995], "area": 212921.84449050878, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2659, "image_id": 324, "category_id": 109, "bbox": [0.0, 0.0, 1024.0, 681.0], "area": 697344.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2660, "image_id": 325, "category_id": 109, "bbox": [258.26547712, 255.3694654, 614.70204928, 343.01106919999995], "area": 210849.60716296383, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2661, "image_id": 326, "category_id": 54, "bbox": [345.6, 27.199999488, 323.19999999999993, 311.999995392], "area": 100838.39851069437, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2662, "image_id": 327, "category_id": 54, "bbox": [214.6847744, 9.278617508, 623.97587456, 476.302386652], "area": 297201.19826619694, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2663, "image_id": 328, "category_id": 54, "bbox": [0.0, 0.0, 358.4, 241.59999743999998], "area": 86589.43908249598, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2664, "image_id": 328, "category_id": 54, "bbox": [366.4, 72.0, 502.4, 476.80000512000004], "area": 239544.322572288, "iscrowd": 0, "IsOccluded": 0, "IsInside": 1, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2665, "image_id": 237, "category_id": 23, "bbox": [144.99115008, 231.19248114, 244.67257344, 418.56416038], "area": 102411.17026992749, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2666, "image_id": 237, "category_id": 23, "bbox": [441.01474304, 111.81858122999999, 203.89380096000002, 534.91591506], "area": 109066.03911557992, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2667, "image_id": 212, "category_id": 23, "bbox": [80.52225536, 60.74725419, 943.47774464, 630.25274581], "area": 594629.4391699859, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2668, "image_id": 132, "category_id": 23, "bbox": [68.48430264, 35.720932352, 595.51569736, 988.279067648], "area": 588535.6981566893, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2669, "image_id": 136, "category_id": 23, "bbox": [225.28, 149.58282184, 227.328, 391.37422608], "area": 88970.32006631425, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2670, "image_id": 138, "category_id": 23, "bbox": [123.15769092000001, 93.72203008, 686.9077179799999, 838.29153792], "area": 575828.9273145718, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2671, "image_id": 142, "category_id": 23, "bbox": [155.64800256, 6.144, 477.1839974399999, 1017.856], "area": 485704.59489828855, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2672, "image_id": 168, "category_id": 23, "bbox": [76.2110976, 134.63132544, 157.96482048000001, 441.36867456000004], "area": 69720.72344236595, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2673, "image_id": 168, "category_id": 23, "bbox": [142.72259072, 205.416864, 212.00540672000002, 370.583136], "area": 78565.62847125309, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2674, "image_id": 168, "category_id": 23, "bbox": [368.58456064, 194.31324864, 166.27879935999994, 381.68675136], "area": 63466.41474775963, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2675, "image_id": 230, "category_id": 23, "bbox": [125.41814256, 151.03245312, 462.38497593999995, 798.96163328], "area": 369427.85558115586, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2676, "image_id": 191, "category_id": 23, "bbox": [707.21069056, 170.95517106, 200.34781183999996, 340.20077094], "area": 68158.48004411005, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2677, "image_id": 191, "category_id": 23, "bbox": [797.9665408, 0.0, 226.03345920000004, 777.8460292000001], "area": 175819.22870506023, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2678, "image_id": 321, "category_id": 23, "bbox": [81.43740928, 123.72566426, 102.55081472, 196.15043602], "area": 20115.387021534232, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2679, "image_id": 321, "category_id": 23, "bbox": [337.8144256, 168.99115002, 120.64800768000003, 242.92477857999998], "area": 29308.390551782148, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2680, "image_id": 321, "category_id": 23, "bbox": [383.05743872, 84.49557501, 60.32401407999998, 39.230089250000006], "area": 2366.5164562766563, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2681, "image_id": 321, "category_id": 23, "bbox": [401.15463168, 190.11504292, 180.97201151999997, 239.90706498000003], "area": 43416.464127289946, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2682, "image_id": 321, "category_id": 23, "bbox": [541.4079488, 187.09734296, 137.23713536000002, 262.53982831999997], "area": 36030.213956543004, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2683, "image_id": 321, "category_id": 23, "bbox": [636.4182528, 82.98672503, 155.33430783999995, 58.84513217], "area": 9140.667875380264, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2684, "image_id": 321, "category_id": 23, "bbox": [751.033856, 347.03539992000003, 230.73935359999996, 333.45574328], "area": 76941.36265863472, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2685, "image_id": 321, "category_id": 23, "bbox": [794.7687936, 92.0398215, 63.34023680000007, 60.35398555999999], "area": 3822.8357371941843, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2686, "image_id": 321, "category_id": 23, "bbox": [855.09277696, 55.827431528, 33.1782144, 95.057525552], "area": 3153.8389630977344, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2687, "image_id": 321, "category_id": 23, "bbox": [889.7790976, 51.30088567999999, 25.63768319999997, 43.75663578], "area": 1121.8187660254237, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2688, "image_id": 321, "category_id": 23, "bbox": [898.8276736, 104.11062134, 73.89695999999992, 178.04424989999998], "area": 13156.92881309029, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2689, "image_id": 321, "category_id": 23, "bbox": [953.11926272, 181.06194304000002, 69.3725900799999, 215.76548576], "area": 14968.210597040534, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2690, "image_id": 321, "category_id": 23, "bbox": [1001.3785088, 58.84513217, 21.113343999999984, 104.11061793000002], "area": 2198.1232904086564, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2691, "image_id": 205, "category_id": 23, "bbox": [49.686022732000005, 0.0, 670.761287388, 1020.8969728], "area": 684778.1677658401, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2692, "image_id": 222, "category_id": 59, "bbox": [0.0, 0.0, 876.4235264, 678.492236], "area": 594646.5581101411, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2693, "image_id": 113, "category_id": 59, "bbox": [387.21417216, 117.9470264, 293.43576064, 287.30685109999996], "area": 84306.1043896117, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2694, "image_id": 329, "category_id": 59, "bbox": [259.2, 220.79999999999998, 464.00000000000006, 324.8000256], "area": 150707.21187840003, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2695, "image_id": 222, "category_id": 58, "bbox": [621.9293696, 580.4878208, 400.5647667200001, 98.00441520000004], "area": 39257.115712118044, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2696, "image_id": 222, "category_id": 139, "bbox": [0.0, 0.0, 1024.0, 680.0], "area": 696320.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2697, "image_id": 330, "category_id": 258, "bbox": [0.0, 1.6, 766.39997952, 1022.4], "area": 783567.339061248, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2698, "image_id": 331, "category_id": 258, "bbox": [94.07228928, 362.16449600000004, 37.01204991999998, 49.316039199999956], "area": 1825.2877047270742, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2699, "image_id": 331, "category_id": 258, "bbox": [94.07228928, 450.00867791999997, 23.13252863999999, 155.65366640000005], "area": 3600.6628959190048, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2700, "image_id": 331, "category_id": 258, "bbox": [181.9759104, 450.00867791999997, 38.554214400000006, 177.22940240000003], "area": 6832.940378113477, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2701, "image_id": 331, "category_id": 258, "bbox": [189.68675328, 368.32902048, 37.01203967999999, 44.69263872000002], "area": 1654.1657177085447, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2702, "image_id": 331, "category_id": 258, "bbox": [803.4699264, 374.49351648000004, 27.759001600000033, 38.528142719999984], "area": 1069.5027754095092, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2703, "image_id": 331, "category_id": 258, "bbox": [805.0120192, 453.0908832, 37.01209087999996, 175.68834959999998], "area": 6502.593161952403, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2704, "image_id": 331, "category_id": 258, "bbox": [903.7108224, 369.870116, 35.46992639999996, 38.52817119999997], "area": 1366.5913967905972, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2705, "image_id": 331, "category_id": 258, "bbox": [909.8795008, 460.79654591999997, 24.67471360000002, 169.52381088000004], "area": 4182.951481844568, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2706, "image_id": 38, "category_id": 258, "bbox": [857.6, 134.39999999999998, 110.39999999999998, 108.79999488], "area": 12011.519434751997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2707, "image_id": 314, "category_id": 258, "bbox": [63.557522819999996, 0.0, 133.16814125999997, 530.1238784], "area": 70595.61152407025, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2708, "image_id": 314, "category_id": 258, "bbox": [491.81417388, 0.0, 75.66369011999997, 27.185840128], "area": 2056.980983096852, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2709, "image_id": 314, "category_id": 258, "bbox": [491.81417388, 72.49557504, 89.28315611999996, 253.73452288], "area": 22654.21901932874, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2710, "image_id": 8, "category_id": 258, "bbox": [19.780088832, 34.953948414, 47.167904768, 150.45393963600003], "area": 7096.59709672127, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2711, "image_id": 8, "category_id": 258, "bbox": [234.3179776, 381.4539498, 66.94798335999997, 74.46709809], "area": 4985.422043796804, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2712, "image_id": 8, "category_id": 258, "bbox": [302.78750208, 375.37502309999996, 60.86182911999998, 79.02629658000005], "area": 4809.684958438403, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2713, "image_id": 8, "category_id": 258, "bbox": [400.1664, 123.09867800999999, 63.904921599999966, 97.26317370000002], "area": 6215.595489865679, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2714, "image_id": 8, "category_id": 258, "bbox": [669.479936, 390.57237449999997, 41.08171264000009, 66.86840160000007], "area": 2747.0684592273255, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2715, "image_id": 8, "category_id": 258, "bbox": [713.6047104, 386.01316908, 48.68945919999999, 69.90787880999997], "area": 3403.7768130780373, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2716, "image_id": 8, "category_id": 258, "bbox": [779.0311936, 389.05262550000003, 44.124825599999895, 62.309223899999964], "area": 2749.3836378588435, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2717, "image_id": 8, "category_id": 258, "bbox": [949.4443008, 220.36185171000002, 63.90487040000005, 77.50656837], "area": 4953.047206833593, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2718, "image_id": 59, "category_id": 258, "bbox": [0.0, 187.2, 38.4, 52.800000000000004], "area": 2027.52, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2719, "image_id": 59, "category_id": 258, "bbox": [52.8, 126.40000512, 28.799999999999997, 94.39999487999998], "area": 2718.7198525439994, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2720, "image_id": 59, "category_id": 258, "bbox": [134.4, 110.39999999999999, 38.400000000000006, 97.60000511999999], "area": 3747.8401966080005, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2721, "image_id": 59, "category_id": 258, "bbox": [193.6, 97.59999744, 110.4, 156.80000256], "area": 17310.720282624003, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2722, "image_id": 59, "category_id": 258, "bbox": [252.8, 227.19998976, 131.2, 102.40001279999997], "area": 13434.881679359996, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2723, "image_id": 59, "category_id": 258, "bbox": [368.0, 225.60000000000002, 163.20000000000005, 102.40000511999997], "area": 16711.680835584, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2724, "image_id": 59, "category_id": 258, "bbox": [537.6, 225.60000000000002, 112.0, 100.79999999999998], "area": 11289.599999999999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2725, "image_id": 59, "category_id": 258, "bbox": [636.8, 222.39999744000002, 56.0, 91.19999999999997], "area": 5107.199999999999, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2726, "image_id": 59, "category_id": 258, "bbox": [681.6, 219.19999488, 49.60000000000002, 81.60001536], "area": 4047.360761856002, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2727, "image_id": 59, "category_id": 258, "bbox": [723.2, 212.80000512, 44.799999999999955, 84.79999488], "area": 3799.0397706239964, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2728, "image_id": 332, "category_id": 258, "bbox": [0.0, 39.287612058, 1022.4897024, 287.101764242], "area": 293558.59747831756, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2729, "image_id": 10, "category_id": 258, "bbox": [89.460224, 482.317353, 41.53508864000001, 140.54273999999998], "area": 5837.455163608475, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2730, "image_id": 10, "category_id": 258, "bbox": [194.89547264, 241.1586765, 210.87051776, 137.34862019999997], "area": 28962.774655195586, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2731, "image_id": 10, "category_id": 258, "bbox": [480.84866048, 472.73488649999996, 57.510164480000014, 167.69310255000005], "area": 9644.057909812012, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2732, "image_id": 10, "category_id": 258, "bbox": [634.2090752, 464.74945694999997, 172.5303808, 177.27556905000003], "area": 30585.421434733194, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2733, "image_id": 10, "category_id": 258, "bbox": [698.10919424, 229.9791195, 83.07019776000004, 129.3632595], "area": 10746.231549543203, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2734, "image_id": 10, "category_id": 258, "bbox": [939.3323008, 214.0083522, 81.47271680000006, 138.94571069999998], "area": 11320.284538435835, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2735, "image_id": 333, "category_id": 258, "bbox": [57.6, 206.39999999999998, 313.59999999999997, 385.5999744], "area": 120924.15197183998, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2736, "image_id": 334, "category_id": 186, "bbox": [156.38178816, 401.68664409999997, 34.58444287999998, 55.66442940000002], "area": 1925.1232790320921, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2737, "image_id": 334, "category_id": 186, "bbox": [207.50660608, 400.1822147, 28.569753599999984, 54.159999999999975], "area": 1547.3378549759984, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2738, "image_id": 334, "category_id": 186, "bbox": [490.1967872, 440.80221470000004, 55.63576319999993, 21.062248549999985], "area": 1171.814272787341, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2739, "image_id": 334, "category_id": 186, "bbox": [502.2261248, 413.7222147, 43.606425599999966, 31.593355899999967], "area": 1377.6733235076683, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2740, "image_id": 334, "category_id": 186, "bbox": [670.6372608, 416.73114119999997, 42.10285567999995, 31.593288200000003], "area": 1330.1676535412455, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2741, "image_id": 334, "category_id": 186, "bbox": [675.148288, 425.75778529999997, 54.132172800000035, 36.10667795000004], "area": 1954.5329300233532, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2742, "image_id": 323, "category_id": 186, "bbox": [157.07374592, 329.41150104, 52.86135808, 61.953536679999985], "area": 3274.948086763894, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2743, "image_id": 323, "category_id": 186, "bbox": [252.22418432, 336.96681972, 51.35104000000001, 49.865051380000004], "area": 2560.622248016436, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2744, "image_id": 323, "category_id": 186, "bbox": [303.57522432, 336.96681972, 30.206484479999972, 57.42036323], "area": 1734.467310742956, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2745, "image_id": 323, "category_id": 186, "bbox": [557.3097472, 341.5, 42.2890496, 31.732282450000024], "area": 1341.9280664492603, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2746, "image_id": 323, "category_id": 186, "bbox": [610.1710848, 329.41150104, 49.84069120000004, 34.75442768000002], "area": 1732.184697831615, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2747, "image_id": 323, "category_id": 186, "bbox": [664.54278144, 475.98449629, 60.41296896000006, 60.44250163000004], "area": 3651.510974837945, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2748, "image_id": 323, "category_id": 186, "bbox": [817.0855424, 475.98449629, 57.39233279999996, 66.48675110999999], "area": 3815.8297464958864, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2749, "image_id": 273, "category_id": 186, "bbox": [24.0, 251.19998976, 19.200000000000003, 14.400007679999987], "area": 276.48014745599977, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2750, "image_id": 273, "category_id": 186, "bbox": [46.4, 249.60000000000002, 11.200000000000003, 12.800002559999996], "area": 143.360028672, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2751, "image_id": 273, "category_id": 186, "bbox": [641.6, 494.40000000000003, 89.60000000000002, 84.79999487999996], "area": 7598.079541247998, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2752, "image_id": 273, "category_id": 186, "bbox": [696.0, 652.8, 128.0, 115.20000000000002], "area": 14745.600000000002, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2753, "image_id": 273, "category_id": 186, "bbox": [710.4, 476.80000512000004, 64.0, 83.20002047999995], "area": 5324.801310719997, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2754, "image_id": 273, "category_id": 186, "bbox": [819.2, 595.2, 92.79999999999995, 97.60000511999999], "area": 9057.280475135994, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2755, "image_id": 335, "category_id": 72, "bbox": [240.49631232, 154.23840859999999, 317.63662848, 347.7925155], "area": 110471.64203399813, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2756, "image_id": 335, "category_id": 72, "bbox": [667.036928, 155.75054609999998, 170.9187584, 349.30463245], "area": 59702.71408172235, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2757, "image_id": 336, "category_id": 72, "bbox": [483.11794688, 35.03816892, 458.61194752000006, 732.2976881999999], "area": 335840.46894979576, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2758, "image_id": 265, "category_id": 72, "bbox": [220.8, 128.00000255999998, 497.59999999999997, 639.99999744], "area": 318463.99872614397, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2759, "image_id": 337, "category_id": 72, "bbox": [54.41935686, 236.18817024, 595.50320124, 787.81182976], "area": 469144.4665968219, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2760, "image_id": 338, "category_id": 72, "bbox": [18.197092352, 16.545454380000002, 969.4087188479999, 802.45454562], "area": 777906.433003238, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2761, "image_id": 339, "category_id": 72, "bbox": [201.76922664, 92.23816704, 530.23077336, 931.76183296], "area": 494048.79727771186, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2762, "image_id": 340, "category_id": 72, "bbox": [366.06763008, 136.7651868, 491.38808832, 527.2874336399999], "area": 259102.76401151842, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2763, "image_id": 341, "category_id": 72, "bbox": [0.0, 147.27640442, 374.5253888, 419.51462318000006], "area": 157118.877353775, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2764, "image_id": 341, "category_id": 72, "bbox": [328.4528128, 0.0, 243.7387776, 525.1370608], "area": 127996.26527184888, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2765, "image_id": 341, "category_id": 72, "bbox": [587.05371136, 145.78876464, 347.77356288, 361.4966386599999], "area": 125718.97399593212, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2766, "image_id": 341, "category_id": 72, "bbox": [731.21625088, 248.4359558, 292.78374912000004, 346.6202210000001], "area": 101484.767825183, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2767, "image_id": 342, "category_id": 72, "bbox": [0.0, 0.0, 197.85250816, 199.4601782], "area": 39463.69653491056, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2768, "image_id": 342, "category_id": 72, "bbox": [74.005897216, 1.5110619602, 605.640105984, 670.9115219398], "area": 406330.9252535072, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2769, "image_id": 343, "category_id": 72, "bbox": [23.956158600000002, 254.00310784, 691.5344184, 378.60846592000007], "area": 261820.78528130348, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2770, "image_id": 148, "category_id": 72, "bbox": [189.74117888, 236.71840400000002, 439.71762176000004, 443.281596], "area": 194918.72916309713, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2771, "image_id": 148, "category_id": 72, "bbox": [643.0117888, 0.0, 380.9882112, 680.0], "area": 259071.983616, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2772, "image_id": 247, "category_id": 72, "bbox": [418.35988992, 190.39380398, 400.23600128, 228.17033590999998], "area": 91321.98285533277, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2773, "image_id": 344, "category_id": 72, "bbox": [0.0, 2.260485632, 1024.0, 1021.739514368], "area": 1046261.262712832, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2774, "image_id": 345, "category_id": 72, "bbox": [0.0, 0.0, 714.3834624, 682.0], "area": 487209.5213568, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2775, "image_id": 346, "category_id": 72, "bbox": [0.0, 51.20000256, 768.0, 659.1999974400001], "area": 506265.59803392005, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2776, "image_id": 347, "category_id": 72, "bbox": [439.50442496, 246.30309118, 197.85252864, 324.87833442], "area": 64277.99996534854, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2777, "image_id": 348, "category_id": 72, "bbox": [156.8, 67.19999999999999, 547.2, 675.1999795199999], "area": 369469.428793344, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2778, "image_id": 187, "category_id": 72, "bbox": [479.43707648, 284.5301184, 322.8579123200001, 285.9180768], "area": 92310.91337019744, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2779, "image_id": 349, "category_id": 72, "bbox": [139.2, 0.0, 648.0, 768.0], "area": 497664.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2780, "image_id": 350, "category_id": 72, "bbox": [11.217527808, 12.816667692, 1011.180014592, 748.172890008], "area": 756537.4738356282, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2781, "image_id": 198, "category_id": 72, "bbox": [9.066371488, 102.70206464, 673.9336285119999, 803.4926336], "area": 541500.7060447108, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2782, "image_id": 351, "category_id": 72, "bbox": [221.8666752, 179.2, 389.11997184, 797.0132992000001], "area": 310133.79254080955, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2783, "image_id": 297, "category_id": 72, "bbox": [159.99999744000002, 0.0, 534.39998208, 1024.0], "area": 547225.58164992, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2784, "image_id": 352, "category_id": 72, "bbox": [0.0, 92.23529112, 757.2989952, 592.9411571999999], "area": 449033.74256028526, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2785, "image_id": 353, "category_id": 72, "bbox": [144.99115008, 72.53097326999999, 363.98819327999996, 397.40929402999996], "area": 144652.29092665995, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2786, "image_id": 353, "category_id": 72, "bbox": [392.68435968, 303.72344758, 561.8407219200001, 311.27877992000003], "area": 174889.0944286296, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2787, "image_id": 111, "category_id": 233, "bbox": [175.28318027999998, 395.70501632, 149.59514048000003, 579.9646003199999], "area": 86759.88585829746, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2788, "image_id": 129, "category_id": 233, "bbox": [367.00884992, 397.4092872, 89.10913536000004, 217.59294030000004], "area": 19389.51877057311, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2789, "image_id": 181, "category_id": 233, "bbox": [320.20298558, 762.9190656, 106.21365672000005, 261.08093440000005], "area": 27730.360742498455, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2790, "image_id": 111, "category_id": 218, "bbox": [43.820795069999996, 324.71975936, 610.46902673, 699.28024064], "area": 426888.92791502096, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2791, "image_id": 225, "category_id": 218, "bbox": [0.0, 0.0, 1024.0, 448.78539412], "area": 459556.24357888, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 2792, "image_id": 225, "category_id": 218, "bbox": [0.0, 252.34734066, 107.23303936, 430.65265934000007], "area": 46180.1935694949, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2793, "image_id": 225, "category_id": 218, "bbox": [128.37757952, 213.0597327, 519.5516211199999, 469.94026729999996], "area": 244158.2277052811, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2794, "image_id": 225, "category_id": 218, "bbox": [801.98230016, 320.34512682, 222.01769983999998, 333.94469498000007], "area": 74141.63305322999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2795, "image_id": 129, "category_id": 218, "bbox": [154.05309952, 339.98894445999997, 587.5162316799999, 278.03537363000004], "area": 163350.29498883843, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2796, "image_id": 136, "category_id": 218, "bbox": [233.472, 229.49693104, 223.232, 282.77299716], "area": 63123.98170202111, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2797, "image_id": 271, "category_id": 218, "bbox": [208.896, 325.632, 145.408, 141.312], "area": 20547.895296, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2798, "image_id": 271, "category_id": 218, "bbox": [358.4, 329.72799744, 126.976, 372.73598976], "area": 47328.52503576576, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2799, "image_id": 170, "category_id": 218, "bbox": [377.58111744, 213.0597327, 317.16816895999995, 305.23451678], "area": 96810.67279050298, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2800, "image_id": 181, "category_id": 218, "bbox": [267.0961426, 623.7801472, 462.34187853000003, 398.656512], "area": 184315.6006462975, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2801, "image_id": 184, "category_id": 218, "bbox": [34.01398656, 379.34868375, 630.15387264, 631.6513162499999], "area": 398037.52309309086, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2802, "image_id": 206, "category_id": 218, "bbox": [737.038336, 316.27433592, 286.96166400000004, 367.72566407999994], "area": 105523.16845990183, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2803, "image_id": 111, "category_id": 197, "bbox": [142.0398218, 333.7817088, 264.43586010999996, 660.0118272], "area": 174530.79520840466, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2804, "image_id": 164, "category_id": 197, "bbox": [246.39999744000002, 192.0, 393.59997696000005, 444.79999999999995], "area": 175073.269751808, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2805, "image_id": 354, "category_id": 22, "bbox": [62.3545344, 33.3108432, 917.30446336, 542.6891568], "area": 497811.1857497149, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2806, "image_id": 355, "category_id": 52, "bbox": [43.525863216, 97.28, 506.94827594400005, 878.08], "area": 445141.1421409076, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2807, "image_id": 356, "category_id": 52, "bbox": [241.008145, 0.0, 334.46027300000003, 833.9456], "area": 278921.6730431488, "iscrowd": 0, "IsOccluded": 0, "IsInside": 1, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2808, "image_id": 357, "category_id": 52, "bbox": [32.000001024, 323.2, 487.99997337600007, 620.8], "area": 302950.3834718208, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2809, "image_id": 358, "category_id": 52, "bbox": [110.39999999999999, 86.4, 612.79999488, 894.4], "area": 548088.315420672, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2810, "image_id": 359, "category_id": 52, "bbox": [67.8492236, 295.1529472, 509.62309639999995, 671.62354688], "area": 342274.87157613615, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2811, "image_id": 360, "category_id": 133, "bbox": [92.58295770000001, 65.58369792, 483.8205951, 830.22993408], "area": 401682.3407764194, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2812, "image_id": 361, "category_id": 49, "bbox": [215.9763968, 0.0, 808.0236032, 683.0], "area": 551880.1209856, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2813, "image_id": 362, "category_id": 49, "bbox": [1.6120333529999997, 41.86163712, 694.786314537, 978.91819008], "area": 680138.9615189136, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2814, "image_id": 288, "category_id": 37, "bbox": [504.6065152, 205.16967424, 312.3753984, 770.77257216], "area": 240770.38930427274, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2815, "image_id": 363, "category_id": 37, "bbox": [0.0, 0.0, 1024.0, 768.0], "area": 786432.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2816, "image_id": 364, "category_id": 37, "bbox": [0.0, 0.0, 198.39999744000002, 235.2], "area": 46663.679397888, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2817, "image_id": 364, "category_id": 37, "bbox": [0.0, 80.0, 108.80000256, 208.0], "area": 22630.40053248, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2818, "image_id": 364, "category_id": 37, "bbox": [0.0, 216.0, 36.799999488, 185.60000000000002], "area": 6830.0799049728, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2819, "image_id": 364, "category_id": 37, "bbox": [0.0, 332.8, 720.0, 689.5999999999999], "area": 496511.99999999994, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2820, "image_id": 364, "category_id": 37, "bbox": [57.599999999999994, 0.0, 708.7999795200001, 606.4], "area": 429816.307580928, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 2821, "image_id": 364, "category_id": 37, "bbox": [731.2000128, 651.2, 35.19996672000002, 198.39999999999998], "area": 6983.673397248003, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2822, "image_id": 365, "category_id": 37, "bbox": [547.2, 0.0, 43.19999999999993, 28.799999999999997], "area": 1244.159999999998, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2823, "image_id": 365, "category_id": 37, "bbox": [558.4, 300.80001024, 59.200000000000045, 46.39997952000002], "area": 2746.878787584003, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2824, "image_id": 365, "category_id": 37, "bbox": [577.6, 337.59999744, 59.19999999999993, 48.00002303999999], "area": 2841.601363967996, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2825, "image_id": 365, "category_id": 37, "bbox": [595.2, 382.40000256, 59.19999999999993, 54.39999743999998], "area": 3220.479848447995, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2826, "image_id": 365, "category_id": 37, "bbox": [596.8, 260.80000512000004, 59.200000000000045, 31.999994879999974], "area": 1894.399696896, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2827, "image_id": 365, "category_id": 37, "bbox": [609.6, 30.399999744, 52.799999999999955, 40.000002816000006], "area": 2112.000148684798, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2828, "image_id": 365, "category_id": 37, "bbox": [636.8, 84.799999488, 51.200000000000045, 49.600000511999994], "area": 2539.5200262144017, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2829, "image_id": 365, "category_id": 37, "bbox": [638.4, 428.80000512000004, 65.60000000000002, 59.20002047999995], "area": 3883.521343487998, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2830, "image_id": 365, "category_id": 37, "bbox": [665.6, 123.19999487999999, 49.60000000000002, 54.40000512000002], "area": 2698.240253952002, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2831, "image_id": 365, "category_id": 37, "bbox": [665.6, 497.6000256, 62.39999999999998, 43.199961599999995], "area": 2695.6776038399985, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2832, "image_id": 365, "category_id": 37, "bbox": [670.4, 307.20000000000005, 65.60000000000002, 46.40000255999996], "area": 3043.8401679359986, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2833, "image_id": 365, "category_id": 37, "bbox": [675.2, 3.200000256, 52.799999999999955, 36.799998720000005], "area": 1943.0399324159985, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2834, "image_id": 365, "category_id": 37, "bbox": [684.8, 358.40000256, 54.40000000000009, 46.400002560000004], "area": 2524.160139264004, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2835, "image_id": 365, "category_id": 37, "bbox": [721.6, 385.60002048, 60.799999999999955, 44.79995904000003], "area": 2723.837509632, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2836, "image_id": 365, "category_id": 37, "bbox": [745.6, 276.80001024, 60.799999999999955, 49.59998976], "area": 3015.679377407998, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2837, "image_id": 365, "category_id": 37, "bbox": [745.6, 331.20000000000005, 60.799999999999955, 39.99998975999999], "area": 2431.9993774079976, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2838, "image_id": 365, "category_id": 37, "bbox": [771.2, 54.39999744, 40.0, 20.800005119999998], "area": 832.0002048, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2839, "image_id": 365, "category_id": 37, "bbox": [790.4, 425.6000256, 62.39999999999998, 43.199961599999995], "area": 2695.6776038399985, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2840, "image_id": 365, "category_id": 37, "bbox": [806.4, 337.59999744, 59.200000000000045, 38.40000767999999], "area": 2273.280454656001, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2841, "image_id": 365, "category_id": 37, "bbox": [844.8, 9.600000000000001, 24.0, 46.39999795200001], "area": 1113.5999508480002, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2842, "image_id": 366, "category_id": 33, "bbox": [0.0, 0.0, 1024.0, 768.0], "area": 786432.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 2843, "image_id": 241, "category_id": 33, "bbox": [161.6, 83.200000512, 697.6, 615.999994368], "area": 429721.5960711168, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2844, "image_id": 367, "category_id": 33, "bbox": [37.45, 54.809398272, 422.65000000000003, 783.3733396480001], "area": 331092.7420022272, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2845, "image_id": 368, "category_id": 33, "bbox": [0.0, 0.0, 1022.4874496, 683.4878625], "area": 698857.7613601804, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2846, "image_id": 368, "category_id": 33, "bbox": [889.38256384, 452.13022904999997, 133.10488576, 199.60264320000007], "area": 26568.08702053005, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2847, "image_id": 365, "category_id": 33, "bbox": [0.0, 0.0, 1024.0, 768.0], "area": 786432.0, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2848, "image_id": 366, "category_id": 156, "bbox": [0.0, 0.0, 326.4, 187.2], "area": 61102.07999999999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2849, "image_id": 366, "category_id": 156, "bbox": [0.0, 174.40000512, 192.0, 382.39999488], "area": 73420.79901696, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2850, "image_id": 366, "category_id": 156, "bbox": [60.8, 326.4, 499.2, 439.99997952000007], "area": 219647.98977638403, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2851, "image_id": 366, "category_id": 156, "bbox": [273.6, 0.0, 452.79999999999995, 382.40000256], "area": 173150.721159168, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2852, "image_id": 366, "category_id": 156, "bbox": [579.2, 176.00000255999998, 443.19999999999993, 580.79998464], "area": 257410.553192448, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2853, "image_id": 366, "category_id": 156, "bbox": [912.0, 0.0, 110.39999999999998, 206.39999999999998], "area": 22786.559999999994, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2854, "image_id": 365, "category_id": 156, "bbox": [0.0, 0.0, 1024.0, 768.0], "area": 786432.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 2855, "image_id": 117, "category_id": 78, "bbox": [284.41683039, 900.6910976, 463.29530841, 123.30890239999997], "area": 57128.435967106576, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2856, "image_id": 369, "category_id": 78, "bbox": [0.0, 101.24115147, 486.32449024, 581.75884853], "area": 282923.5754539616, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2857, "image_id": 369, "category_id": 78, "bbox": [492.36578304, 125.41814256, 205.40409855999997, 501.67257024], "area": 103045.60206242547, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2858, "image_id": 369, "category_id": 78, "bbox": [699.28020992, 92.17477725, 246.18292224000004, 516.7831734499999], "area": 127223.1918043818, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2859, "image_id": 131, "category_id": 78, "bbox": [138.62815744, 502.75811328, 842.8592128, 521.24188672], "area": 439333.526319206, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2860, "image_id": 133, "category_id": 78, "bbox": [17.395348872, 346.07407104, 637.302347528, 677.92592896], "area": 432043.78597630817, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2861, "image_id": 145, "category_id": 78, "bbox": [210.03760796, 288.47198208, 327.90043184, 734.0177203200001], "area": 240684.7274711404, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2862, "image_id": 152, "category_id": 78, "bbox": [118.4, 294.39999744, 528.0, 471.99998208], "area": 249215.99053824, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2863, "image_id": 152, "category_id": 78, "bbox": [419.2, 438.3999744, 494.40000000000003, 326.40003072], "area": 161372.175187968, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2864, "image_id": 160, "category_id": 78, "bbox": [0.0, 0.0, 119.3156352, 181.32742976], "area": 21635.197460997784, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2865, "image_id": 160, "category_id": 78, "bbox": [0.0, 217.59292664, 86.088493056, 448.78538046], "area": 38635.25710936503, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2866, "image_id": 160, "category_id": 78, "bbox": [397.2153344, 247.81416038, 30.206484479999972, 86.1305346], "area": 2601.7006566490004, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2867, "image_id": 160, "category_id": 78, "bbox": [424.40118272, 281.05751885999996, 75.51621119999999, 217.59292664000003], "area": 16431.793403772346, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2868, "image_id": 160, "category_id": 78, "bbox": [542.206464, 442.7411583, 151.03248384000005, 160.17255657999996], "area": 24191.259063280337, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2869, "image_id": 160, "category_id": 78, "bbox": [703.81121536, 330.92257023999997, 51.35099904000003, 57.42037006000003], "area": 2948.5933678275082, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2870, "image_id": 160, "category_id": 78, "bbox": [720.4248064, 648.2455723200001, 40.77874176, 31.73232343], "area": 1294.0042225967675, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2871, "image_id": 160, "category_id": 78, "bbox": [853.3332992, 516.78318028, 137.43959039999993, 126.92922541999997], "area": 17445.100751514055, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2872, "image_id": 160, "category_id": 78, "bbox": [882.0294656, 643.7124057, 57.39233279999996, 36.26549005000003], "area": 2081.361074104689, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2873, "image_id": 160, "category_id": 78, "bbox": [999.8347776, 627.0907128, 22.654924800000003, 43.82080190000002], "area": 992.7569717201977, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2874, "image_id": 161, "category_id": 78, "bbox": [72.47893896, 663.5640832, 608.5210610400001, 360.4359168], "area": 219332.84652806117, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2875, "image_id": 164, "category_id": 78, "bbox": [206.39999999999998, 188.8, 432.0, 702.4000000000001], "area": 303436.80000000005, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2876, "image_id": 370, "category_id": 78, "bbox": [1.5125553152, 341.74392439999997, 334.27473940479996, 335.6953881], "area": 112214.48837652068, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2877, "image_id": 370, "category_id": 78, "bbox": [62.0147712, 96.77703975, 248.0590848, 238.9183278], "area": 59265.86173601439, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2878, "image_id": 370, "category_id": 78, "bbox": [344.86263808, 0.0, 334.27474431999997, 335.69536755], "area": 112214.48315718466, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2879, "image_id": 370, "category_id": 78, "bbox": [344.86263808, 356.8653405, 329.73709311999994, 320.57397199999997], "area": 105705.12965721224, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2880, "image_id": 370, "category_id": 78, "bbox": [683.6750336, 7.56070668, 331.24966399999994, 331.15894271999997], "area": 109696.28850659521, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2881, "image_id": 370, "category_id": 78, "bbox": [683.6750336, 359.88963605000004, 329.73707263999995, 296.37968294999996], "area": 97727.3690459043, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2882, "image_id": 183, "category_id": 78, "bbox": [0.0, 732.93664256, 629.660772, 291.06335744], "area": 183271.17834658234, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2883, "image_id": 371, "category_id": 78, "bbox": [0.0, 1.6000000511999999, 1022.4, 764.7999794688001], "area": 781931.4990089011, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2884, "image_id": 188, "category_id": 78, "bbox": [259.90265934, 286.96164352, 158.66148054999996, 323.20944128], "area": 51280.88848122308, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2885, "image_id": 200, "category_id": 78, "bbox": [291.49261824, 281.05751885999996, 261.28613376000004, 398.92037689], "area": 104232.36295567018, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2886, "image_id": 200, "category_id": 78, "bbox": [471.221248, 152.61725839, 240.14161919999998, 373.23229611], "area": 89628.60792558927, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2887, "image_id": 200, "category_id": 78, "bbox": [536.1652224, 302.21239204, 172.1769472000001, 377.76550371], "area": 65042.51118625811, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2888, "image_id": 200, "category_id": 78, "bbox": [641.88787712, 256.8805346, 314.14750208, 423.09736115], "area": 132914.9791419121, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2889, "image_id": 202, "category_id": 78, "bbox": [126.92920493, 190.30088704, 474.47343392, 797.4513152], "area": 378369.4639069643, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2890, "image_id": 206, "category_id": 78, "bbox": [188.79055872, 556.8849612, 246.18289151999997, 127.11503879999998], "area": 31293.54780746098, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2891, "image_id": 117, "category_id": 73, "bbox": [137.73644510999998, 64.33507328, 745.92334311, 959.66492672], "area": 715836.4704043956, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2892, "image_id": 5, "category_id": 73, "bbox": [188.63461139, 159.5663872, 242.72836139, 702.0921344], "area": 170417.67332771965, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2893, "image_id": 26, "category_id": 249, "bbox": [432.6322176, 284.31759464000004, 49.799393280000004, 26.412026799999982], "area": 1315.3029099350993, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2894, "image_id": 26, "category_id": 249, "bbox": [796.790272, 310.72962144, 18.67475968000008, 10.875522559999999], "area": 203.0977702024192, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2895, "image_id": 372, "category_id": 249, "bbox": [356.4365824, 374.74335848, 302.0648857599999, 128.44029462000003], "area": 38797.30292137105, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2896, "image_id": 373, "category_id": 249, "bbox": [426.26977792, 364.40062165, 171.46042367999996, 85.74134850000002], "area": 14701.247940704532, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2897, "image_id": 38, "category_id": 249, "bbox": [406.4, 403.20000000000005, 172.80000000000007, 36.80002559999994], "area": 6359.044423679992, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2898, "image_id": 38, "category_id": 249, "bbox": [769.6, 307.20000000000005, 56.0, 22.40000255999996], "area": 1254.4001433599979, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2899, "image_id": 40, "category_id": 249, "bbox": [24.16519168, 125.41814256, 22.654869503999997, 6.044249479999985], "area": 136.9316832190195, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2900, "image_id": 40, "category_id": 249, "bbox": [735.5280384, 420.07521592, 131.39824639999995, 96.70796436], "area": 12707.256929817695, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2901, "image_id": 56, "category_id": 249, "bbox": [169.6, 406.39997952, 22.400000000000006, 17.599994880000025], "area": 394.23988531200064, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2902, "image_id": 56, "category_id": 249, "bbox": [284.8, 553.60002048, 145.59999999999997, 65.59997952000003], "area": 9551.357018112001, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2903, "image_id": 59, "category_id": 249, "bbox": [296.0, 566.4000000000001, 108.80000000000001, 33.599999999999966], "area": 3655.6799999999967, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2904, "image_id": 263, "category_id": 249, "bbox": [413.21945088, 417.95130806, 221.69070591999997, 141.83190494000004], "area": 31442.815128126942, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2905, "image_id": 65, "category_id": 249, "bbox": [658.6079232, 269.29555029, 130.81937920000007, 34.60223501], "area": 4526.642902940708, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2906, "image_id": 67, "category_id": 249, "bbox": [448.0, 545.6000256, 129.60000000000002, 62.39999999999995], "area": 8087.039999999995, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2907, "image_id": 84, "category_id": 249, "bbox": [747.9415808, 228.6781256, 137.34922240000003, 58.53070940000003], "area": 8039.147422610376, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2908, "image_id": 86, "category_id": 249, "bbox": [409.6, 582.3999744, 128.0, 48.0], "area": 6144.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2909, "image_id": 209, "category_id": 249, "bbox": [0.0, 444.79998720000003, 27.2, 16.00001279999998], "area": 435.2003481599994, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2910, "image_id": 209, "category_id": 249, "bbox": [216.0, 488.00002559999996, 48.0, 30.399974400000076], "area": 1459.1987712000036, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2911, "image_id": 209, "category_id": 249, "bbox": [947.2, 409.60002048, 20.799999999999955, 6.400005119999975], "area": 133.12010649599918, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2912, "image_id": 209, "category_id": 249, "bbox": [1011.2, 446.40000000000003, 11.199999999999932, 4.799999999999983], "area": 53.75999999999948, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2913, "image_id": 27, "category_id": 13, "bbox": [403.2566272, 43.820795069999996, 140.46016511999994, 187.37168607000004], "area": 26318.257964204993, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2914, "image_id": 30, "category_id": 13, "bbox": [715.1746048, 229.0164107, 107.27618559999996, 94.20535522999998], "area": 10105.991172167405, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2915, "image_id": 55, "category_id": 13, "bbox": [402.2308864, 53.7581676, 128.95953920000005, 121.33986945], "area": 15647.933650860163, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2916, "image_id": 374, "category_id": 215, "bbox": [338.25271808, 11.0902528, 268.01442815999997, 347.49457920000003], "area": 93133.56093298782, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2917, "image_id": 374, "category_id": 215, "bbox": [545.27075328, 49.90613504, 162.65704447999997, 293.8916864], "area": 47803.553107067004, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2918, "image_id": 374, "category_id": 215, "bbox": [696.8375296, 107.20577536, 123.84117759999992, 195.92779775999998], "area": 24263.929199173024, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2919, "image_id": 239, "category_id": 35, "bbox": [3.1064515632, 24.874494719999998, 958.3403257368, 708.92308608], "area": 679389.5812362446, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 2920, "image_id": 375, "category_id": 35, "bbox": [0.0, 1.5132743496, 749.1209728, 682.4867256504], "area": 511265.11984231434, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2921, "image_id": 376, "category_id": 35, "bbox": [276.8, 49.599997439999996, 436.8, 665.6000025600001], "area": 290734.08111820807, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2922, "image_id": 377, "category_id": 89, "bbox": [27.145803776, 0.0, 938.038298624, 682.0], "area": 639742.1196615681, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2923, "image_id": 138, "category_id": 89, "bbox": [294.88460914, 805.3152768, 128.36154540000004, 123.22708480000006], "area": 15817.619040064863, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2924, "image_id": 378, "category_id": 89, "bbox": [0.0, 190.11504292, 555.7994496, 491.88495708], "area": 273389.3884115836, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2925, "image_id": 379, "category_id": 89, "bbox": [374.4, 392.00002559999996, 14.400000000000034, 17.599994880000025], "area": 253.43992627200095, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2926, "image_id": 321, "category_id": 89, "bbox": [352.89544704, 411.9159286, 45.24298239999996, 46.774322100000006], "area": 2116.2098315422295, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2927, "image_id": 380, "category_id": 132, "bbox": [33.270759424, 33.270759424, 955.6100956160001, 951.913394176], "area": 909658.0496266786, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2928, "image_id": 242, "category_id": 132, "bbox": [530.5898076, 378.0923136, 115.28136480000008, 95.99996928000002], "area": 11067.007479356484, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2929, "image_id": 142, "category_id": 132, "bbox": [208.89600000000002, 854.016, 331.77599999999995, 169.98400000000004], "area": 56396.611584000006, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2930, "image_id": 151, "category_id": 132, "bbox": [284.64980992, 513.84839168, 430.67148288000004, 441.76172032], "area": 190254.17516983426, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2931, "image_id": 198, "category_id": 132, "bbox": [1.5110619602, 135.92920064, 125.4181429698, 327.740416], "area": 41104.594350869724, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2932, "image_id": 198, "category_id": 132, "bbox": [191.90487318, 184.259584, 49.86503772000001, 126.86725120000003], "area": 6326.240266520718, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2933, "image_id": 121, "category_id": 17, "bbox": [0.0, 0.0, 1024.0, 766.39997952], "area": 784793.57902848, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2934, "image_id": 168, "category_id": 17, "bbox": [203.69147904, 0.0, 198.14885376, 414.99759168], "area": 82231.29710455253, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2935, "image_id": 168, "category_id": 17, "bbox": [515.4640896, 0.0, 313.1583488, 342.824112], "area": 107358.23284274628, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2936, "image_id": 168, "category_id": 17, "bbox": [879.89172224, 0.0, 142.7226009599999, 574.61204736], "area": 82010.12594216986, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2937, "image_id": 381, "category_id": 17, "bbox": [61.923305472, 104.26327621, 670.584076288, 374.74336531], "area": 251296.93347146292, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2938, "image_id": 381, "category_id": 17, "bbox": [761.20354816, 102.75221384, 105.72273664, 300.70132284000005], "area": 31790.96676191294, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2939, "image_id": 121, "category_id": 196, "bbox": [0.0, 0.0, 1024.0, 768.0], "area": 786432.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2940, "image_id": 152, "category_id": 196, "bbox": [0.0, 267.19999487999996, 140.8, 235.19998464000003], "area": 33116.15783731201, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2941, "image_id": 168, "category_id": 196, "bbox": [212.00541696, 0.0, 192.60621824000003, 413.6096448], "area": 79663.78951251769, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2942, "image_id": 168, "category_id": 196, "bbox": [532.09203712, 0.0, 297.91607808000003, 327.5566272], "area": 97584.38572453665, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2943, "image_id": 168, "category_id": 196, "bbox": [885.434368, 1.3879518336, 138.56563200000005, 574.6120481664], "area": 79621.48160899169, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2944, "image_id": 382, "category_id": 196, "bbox": [0.0, 0.0, 819.0, 1024.0], "area": 838656.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2945, "image_id": 381, "category_id": 196, "bbox": [173.68731648, 114.84070597, 697.7699020800001, 491.09515414], "area": 342671.4176162303, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2946, "image_id": 121, "category_id": 16, "bbox": [0.0, 0.0, 52.8, 35.200000512], "area": 1858.5600270336001, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 2947, "image_id": 121, "category_id": 16, "bbox": [0.0, 0.0, 1016.0, 152.00000255999998], "area": 154432.00260095997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 2948, "image_id": 121, "category_id": 16, "bbox": [0.0, 292.79999999999995, 97.6, 115.20000000000002], "area": 11243.52, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 2949, "image_id": 121, "category_id": 16, "bbox": [0.0, 416.00002559999996, 75.2, 99.19998720000004], "area": 7459.839037440003, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2950, "image_id": 121, "category_id": 16, "bbox": [1.6, 164.80000512, 398.4, 144.0], "area": 57369.59999999999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 2951, "image_id": 121, "category_id": 16, "bbox": [1.6, 518.4000000000001, 86.4, 129.59999999999997], "area": 11197.439999999997, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2952, "image_id": 121, "category_id": 16, "bbox": [232.0, 331.20000000000005, 161.60000000000002, 103.99999487999997], "area": 16806.399172608, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2953, "image_id": 121, "category_id": 16, "bbox": [312.0, 504.0, 110.39999999999998, 139.20000000000002], "area": 15367.679999999998, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2954, "image_id": 121, "category_id": 16, "bbox": [436.8, 166.40000256000002, 279.99999999999994, 175.99999488000003], "area": 49279.9985664, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2955, "image_id": 121, "category_id": 16, "bbox": [438.4, 532.8, 291.20000000000005, 233.59997952000003], "area": 68024.31403622402, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2956, "image_id": 121, "category_id": 16, "bbox": [443.2, 356.80000512000004, 369.59999999999997, 228.79999487999996], "area": 84564.47810764797, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2957, "image_id": 121, "category_id": 16, "bbox": [716.8, 152.00000255999998, 305.6, 190.39999488000004], "area": 58186.238435328014, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 2958, "image_id": 121, "category_id": 16, "bbox": [734.4, 600.0, 251.20000000000005, 166.39997952000002], "area": 41799.67485542401, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2959, "image_id": 121, "category_id": 16, "bbox": [814.4, 388.79999999999995, 182.39999999999998, 158.40000000000003], "area": 28892.160000000003, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 2960, "image_id": 383, "category_id": 16, "bbox": [22.99401216, 16.8954237, 948.88623104, 672.7450938], "area": 638358.5565065332, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2961, "image_id": 168, "category_id": 16, "bbox": [217.548032, 0.0, 175.97836288, 41.638552704], "area": 7327.484337542517, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 2962, "image_id": 168, "category_id": 16, "bbox": [220.31935488, 98.54457984, 175.97834240000003, 59.68192896000001], "area": 10502.72692961536, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2963, "image_id": 168, "category_id": 16, "bbox": [234.17591808, 185.98553856, 157.9648, 61.06987583999998], "area": 9646.89072309043, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2964, "image_id": 168, "category_id": 16, "bbox": [288.2165248, 292.85784576, 108.08117248000002, 33.31082304000005], "area": 3600.2728104370044, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2965, "image_id": 168, "category_id": 16, "bbox": [540.4059648, 267.87469248, 38.79837696000004, 31.922904960000007], "area": 1238.5569002963355, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2966, "image_id": 168, "category_id": 16, "bbox": [545.94861056, 92.99276928, 231.40460543999995, 56.906029440000005], "area": 13168.317289720222, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2967, "image_id": 168, "category_id": 16, "bbox": [566.7334144, 155.45060352, 178.74967551999998, 44.41446144], "area": 7939.070570795551, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2968, "image_id": 168, "category_id": 16, "bbox": [586.1326336, 248.44337280000002, 56.81187840000007, 48.57832511999998], "area": 2759.825899593108, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2969, "image_id": 168, "category_id": 16, "bbox": [648.4871168, 234.56385792, 121.93781760000002, 63.84578688000003], "area": 7785.215915101917, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2970, "image_id": 168, "category_id": 16, "bbox": [879.89172224, 414.99759168, 116.39515136, 142.95903552], "area": 16639.73857763001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2971, "image_id": 168, "category_id": 16, "bbox": [927.00408832, 323.39278079999997, 87.29632767999999, 116.58792959999998], "area": 10177.69810589437, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2972, "image_id": 168, "category_id": 16, "bbox": [932.5466624, 0.0, 90.0676608, 56.90602368], "area": 5125.392438287008, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 2973, "image_id": 168, "category_id": 16, "bbox": [935.318016, 215.13252672000002, 87.2963072, 105.48433728], "area": 9208.393111983294, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 2974, "image_id": 168, "category_id": 16, "bbox": [947.7889024, 84.66505344000001, 74.82542079999996, 102.70843776], "area": 7685.202075102606, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 2975, "image_id": 384, "category_id": 183, "bbox": [60.8, 310.40000256, 316.8, 457.59999744000004], "area": 144967.679188992, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2976, "image_id": 384, "category_id": 183, "bbox": [176.0, 124.80000000000001, 192.0, 187.2], "area": 35942.399999999994, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2977, "image_id": 384, "category_id": 183, "bbox": [441.6, 190.40000256000002, 406.4, 380.79999744], "area": 154757.118959616, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 2978, "image_id": 384, "category_id": 183, "bbox": [654.4, 124.80000000000001, 68.80000000000007, 71.99999999999997], "area": 4953.600000000004, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2979, "image_id": 384, "category_id": 183, "bbox": [686.4, 104.00000255999998, 166.39999999999998, 100.80000768], "area": 16773.121277951996, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2980, "image_id": 384, "category_id": 183, "bbox": [865.6, 123.19999487999999, 158.39999999999998, 265.60000512], "area": 42071.04081100799, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2981, "image_id": 385, "category_id": 0, "bbox": [86.31417856, 86.4245504, 857.9105894400001, 290.70075392], "area": 249395.25514615962, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2982, "image_id": 386, "category_id": 0, "bbox": [22.654867456, 270.4800891, 986.241849344, 287.101782], "area": 283151.792429638, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2983, "image_id": 386, "category_id": 0, "bbox": [886.5604608, 376.25442768, 137.4395392, 129.95132284], "area": 17860.449929560036, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2984, "image_id": 387, "category_id": 0, "bbox": [21.207100416, 137.90308464, 974.011843584, 301.56826736], "area": 293731.0640577462, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2985, "image_id": 388, "category_id": 0, "bbox": [211.2, 284.80000512000004, 812.8, 324.79999488], "area": 263997.43583846395, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2986, "image_id": 389, "category_id": 0, "bbox": [0.0, 162.5714367, 981.2758528, 301.7215247], "area": 296072.04645810876, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2987, "image_id": 389, "category_id": 0, "bbox": [0.0, 293.4552065, 208.10766336, 52.35351929999998], "area": 10895.16857019566, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2988, "image_id": 390, "category_id": 0, "bbox": [0.0, 65.60000256000001, 1024.0, 702.39999744], "area": 719257.59737856, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2989, "image_id": 390, "category_id": 0, "bbox": [0.0, 662.4000000000001, 166.4, 105.59999999999997], "area": 17571.839999999993, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2990, "image_id": 391, "category_id": 0, "bbox": [10.572271616, 182.83849896, 996.814147584, 341.49998633999996], "area": 340412.0177834547, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2991, "image_id": 392, "category_id": 0, "bbox": [256.3464192, 461.38554875, 18.01353216000001, 8.313263749999997], "area": 149.75124391518722, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2992, "image_id": 392, "category_id": 0, "bbox": [340.8714752, 235.54216625, 405.9972608, 101.14456425000003], "area": 41064.41603030962, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2993, "image_id": 393, "category_id": 0, "bbox": [0.0, 21.10864772, 1024.0, 585.01107268], "area": 599051.33842432, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2994, "image_id": 394, "category_id": 0, "bbox": [11.26650368, 141.6266698, 856.25424384, 269.4666792], "area": 230731.98763847185, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2995, "image_id": 394, "category_id": 0, "bbox": [418.1124608, 91.49333490000001, 286.66997760000004, 96.5066651], "area": 27665.563522467706, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 2996, "image_id": 394, "category_id": 0, "bbox": [708.5379072, 41.36, 150.22003200000006, 140.3733302], "area": 21086.88615459057, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2997, "image_id": 394, "category_id": 0, "bbox": [758.6112512, 10.02666651, 265.38874880000003, 246.90668249], "area": 65526.25553637998, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2998, "image_id": 395, "category_id": 116, "bbox": [0.0, 0.0, 993.6, 768.0], "area": 763084.8, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 2999, "image_id": 395, "category_id": 116, "bbox": [0.0, 351.13152, 169.6, 416.86848000000003], "area": 70700.89420800001, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3000, "image_id": 395, "category_id": 116, "bbox": [830.4, 125.060544, 193.60000000000002, 397.62839039999994], "area": 76980.85638144001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3001, "image_id": 396, "category_id": 116, "bbox": [289.1294208, 143.02660379, 646.0235264, 499.84034331000004], "area": 322908.6212221129, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3002, "image_id": 397, "category_id": 116, "bbox": [0.0, 0.0, 768.0, 1024.0], "area": 786432.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3003, "image_id": 395, "category_id": 88, "bbox": [0.0, 396.02503680000007, 171.2, 371.97496319999993], "area": 63682.11369983999, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3004, "image_id": 395, "category_id": 88, "bbox": [208.0, 291.80792832, 787.2, 476.19207168], "area": 374858.39882649604, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3005, "image_id": 396, "category_id": 88, "bbox": [368.9411584, 514.8957831499999, 278.5882624, 127.97116395000003], "area": 35651.26420213604, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3006, "image_id": 397, "category_id": 88, "bbox": [0.0, 420.8, 739.2, 603.2], "area": 445885.44000000006, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3007, "image_id": 398, "category_id": 88, "bbox": [552.778752, 309.31415724, 471.22124799999995, 372.68584275999996], "area": 175617.48793729892, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3008, "image_id": 236, "category_id": 88, "bbox": [61.13228625, 980.7743488, 49.2040416, 43.225651200000016], "area": 2126.8767398318905, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3009, "image_id": 236, "category_id": 88, "bbox": [609.83183275, 964.37848064, 46.221988750000044, 59.62151935999998], "area": 2755.825197115829, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3010, "image_id": 356, "category_id": 260, "bbox": [241.008145, 77.0048, 337.7392795, 758.5791999999999], "area": 256201.99245168638, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3011, "image_id": 356, "category_id": 259, "bbox": [285.2749501, 178.5856, 236.08957889999996, 178.5856], "area": 42162.19910160383, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3012, "image_id": 382, "category_id": 259, "bbox": [24.818182389, 0.0, 794.181817611, 1024.0], "area": 813242.181233664, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3013, "image_id": 399, "category_id": 259, "bbox": [0.0, 0.0, 576.5449045500001, 1024.0], "area": 590381.9822592001, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3014, "image_id": 241, "category_id": 187, "bbox": [475.2, 270.39999744, 161.59999999999997, 110.40000767999999], "area": 17840.641241087993, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3015, "image_id": 241, "category_id": 187, "bbox": [585.6, 233.60000255999998, 147.19999999999993, 83.19999744], "area": 12247.039623167995, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3016, "image_id": 400, "category_id": 112, "bbox": [111.57820928, 61.25046055400001, 802.64325632, 846.697557346], "area": 679596.0845463834, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3017, "image_id": 401, "category_id": 112, "bbox": [61.44, 120.26470665, 906.24, 724.1470664999999], "area": 656251.0375449599, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3018, "image_id": 402, "category_id": 112, "bbox": [97.86902528, 59.861877799999995, 853.63535872, 865.2762247], "area": 738630.3804636718, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3019, "image_id": 403, "category_id": 112, "bbox": [10.666667008, 368.560188, 324.571436032, 237.58426320000004], "area": 77113.06548542867, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3020, "image_id": 403, "category_id": 112, "bbox": [15.238094848, 13.706783184, 324.571410432, 293.934334416], "area": 95402.68149579228, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3021, "image_id": 403, "category_id": 112, "bbox": [352.0, 9.137855688, 288.0, 269.566727832], "area": 77635.21761561601, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3022, "image_id": 403, "category_id": 112, "bbox": [355.04760832, 370.0831752, 323.04760832, 248.24506223999998], "area": 80194.97363388153, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3023, "image_id": 403, "category_id": 112, "bbox": [652.1905152, 12.183807119999999, 321.52378367999995, 292.41137784], "area": 94017.21259419889, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3024, "image_id": 403, "category_id": 112, "bbox": [696.3809792, 376.1750544, 323.04760832, 243.6761424], "area": 78718.99500696374, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3025, "image_id": 404, "category_id": 112, "bbox": [0.0, 0.0, 714.9354363, 810.51592704], "area": 579466.5579264413, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3026, "image_id": 404, "category_id": 112, "bbox": [217.19556801, 81.4134272, 763.80443199, 864.791552], "area": 660531.6201651106, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3027, "image_id": 400, "category_id": 189, "bbox": [111.57820928, 61.25046055400001, 802.64325632, 846.697557346], "area": 679596.0845463834, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3028, "image_id": 401, "category_id": 189, "bbox": [58.88, 125.38235985, 906.24, 721.5882399000001], "area": 653932.1265269761, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3029, "image_id": 405, "category_id": 189, "bbox": [33.270759424, 36.967510016, 822.527102976, 643.234627584], "area": 529077.9147605138, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3030, "image_id": 405, "category_id": 189, "bbox": [96.11552768, 419.5812352, 890.91694592, 578.54150656], "area": 515432.4321123909, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3031, "image_id": 403, "category_id": 189, "bbox": [12.190476288, 370.0831752, 320.000018432, 234.53826791999998], "area": 75052.25005740934, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3032, "image_id": 403, "category_id": 189, "bbox": [18.285715456, 15.229758552000002, 319.999985664, 290.888399688], "area": 93084.2837299839, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3033, "image_id": 403, "category_id": 189, "bbox": [352.0, 10.660831056, 289.5238144, 263.474846544], "area": 76282.24256987353, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3034, "image_id": 403, "category_id": 189, "bbox": [355.04760832, 373.12910784, 324.57141248000005, 240.63020975999996], "area": 78101.68706716187, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3035, "image_id": 403, "category_id": 189, "bbox": [653.71429888, 12.183807119999999, 320.0, 292.41137784], "area": 93571.6409088, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3036, "image_id": 403, "category_id": 189, "bbox": [696.3809792, 379.22098704, 326.09520640000005, 239.10725040000003], "area": 77971.7281709245, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3037, "image_id": 188, "category_id": 189, "bbox": [188.88274844, 803.49261824, 52.88716246000003, 78.53684736000002], "area": 4153.591005424546, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3038, "image_id": 188, "category_id": 189, "bbox": [333.94469498, 803.49261824, 60.44248797000001, 75.51625216000002], "area": 4564.390162720289, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3039, "image_id": 406, "category_id": 44, "bbox": [0.0, 95.50961469, 879.945728, 807.49038531], "area": 710547.7149546085, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3040, "image_id": 15, "category_id": 44, "bbox": [309.6899584, 423.759666, 252.1094144, 140.21460156000006], "area": 35349.42108962094, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3041, "image_id": 15, "category_id": 44, "bbox": [692.52276224, 414.41200943999996, 289.45898495999995, 214.99572336], "area": 62232.44385452655, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3042, "image_id": 407, "category_id": 81, "bbox": [349.8510609, 317.1986432, 348.12764415, 441.31983360000004], "area": 153635.63398783802, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3043, "image_id": 407, "category_id": 85, "bbox": [349.8510609, 315.47475968, 348.12764415, 444.76767232000003], "area": 154835.92195884077, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3044, "image_id": 408, "category_id": 202, "bbox": [350.3952896, 672.4225839000001, 21.144535039999994, 10.577416099999976], "area": 223.65454535910956, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3045, "image_id": 408, "category_id": 202, "bbox": [389.66372352, 654.2898218, 70.98523647999997, 28.710178199999962], "area": 2037.9987889099373, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3046, "image_id": 409, "category_id": 202, "bbox": [355.38824192, 499.068728, 239.43533568000004, 123.63637599999996], "area": 29602.91718981869, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3047, "image_id": 409, "category_id": 202, "bbox": [399.0588416, 416.141912, 397.55291647999996, 218.62527680000002], "area": 86915.11640808728, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3048, "image_id": 17, "category_id": 225, "bbox": [559.5051008, 457.52329197, 156.84249599999998, 69.45895593000004], "area": 10894.116017615206, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3049, "image_id": 254, "category_id": 225, "bbox": [518.846132, 218.64768512, 391.41026259999995, 337.08186623999995], "area": 131937.30178269645, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3050, "image_id": 205, "category_id": 225, "bbox": [0.0, 505.7939456, 76.08171748, 96.19390463999997], "area": 7318.597476118538, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3051, "image_id": 410, "category_id": 248, "bbox": [130.104, 85.05537536, 485.388, 900.58635264], "area": 437133.8085352243, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3052, "image_id": 411, "category_id": 248, "bbox": [0.0, 27.306978899999997, 145.05469952, 372.2371899], "area": 53994.75373111368, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3053, "image_id": 412, "category_id": 130, "bbox": [0.0, 0.0, 1024.0, 553.348096], "area": 566628.450304, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3054, "image_id": 413, "category_id": 130, "bbox": [173.39245200000002, 359.9058944, 318.1374968, 393.0352639999999], "area": 125039.25504308713, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3055, "image_id": 414, "category_id": 130, "bbox": [123.2, 102.40000512, 801.5999999999999, 598.39999488], "area": 479677.4358958079, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3056, "image_id": 415, "category_id": 130, "bbox": [156.80000256, 361.6, 519.99999744, 321.6], "area": 167231.999176704, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3057, "image_id": 416, "category_id": 130, "bbox": [0.0, 8.0, 729.5999999999999, 748.8], "area": 546324.4799999999, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3058, "image_id": 417, "category_id": 130, "bbox": [0.0, 30.61098404, 555.76068096, 597.64300596], "area": 332146.4839633109, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3059, "image_id": 417, "category_id": 130, "bbox": [678.2905856, 0.0, 345.7094144, 265.29519926], "area": 91715.04797930593, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3060, "image_id": 418, "category_id": 47, "bbox": [16.0, 428.80000512000004, 483.2, 339.19999487999996], "area": 163901.43752601597, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3061, "image_id": 418, "category_id": 47, "bbox": [80.0, 305.60000256, 534.4, 327.99999744], "area": 175283.198631936, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3062, "image_id": 418, "category_id": 47, "bbox": [640.0, 150.40000512, 384.0, 617.59999488], "area": 237158.39803392004, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3063, "image_id": 419, "category_id": 47, "bbox": [12.8, 252.80001024, 827.2, 297.59996928000004], "area": 246174.69458841605, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3064, "image_id": 266, "category_id": 198, "bbox": [185.08283133999998, 156.90322944, 596.56161674, 203.14838016000002], "area": 121190.52610636175, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3065, "image_id": 242, "category_id": 198, "bbox": [524.67798768, 375.13844736, 118.23723551999998, 100.43076864000005], "area": 11874.656445142315, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3066, "image_id": 151, "category_id": 198, "bbox": [286.4982016, 515.69677312, 425.1264, 432.51985407999996], "area": 183875.6084935557, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3067, "image_id": 420, "category_id": 6, "bbox": [0.0, 33.599999999999994, 131.2, 294.40000511999995], "area": 38625.280671743996, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3068, "image_id": 420, "category_id": 6, "bbox": [195.2, 33.599999999999994, 147.2, 214.39999488], "area": 31559.679246335996, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3069, "image_id": 420, "category_id": 6, "bbox": [300.8, 51.20000256, 401.59999999999997, 612.79997184], "area": 246100.46869094396, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3070, "image_id": 420, "category_id": 6, "bbox": [665.6, 33.599999999999994, 108.79999999999995, 155.20000512000001], "area": 16885.760557055994, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3071, "image_id": 421, "category_id": 140, "bbox": [0.0, 0.0, 1024.0, 576.0], "area": 589824.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3072, "image_id": 422, "category_id": 140, "bbox": [0.0, 0.0, 236.87356416, 328.4181936], "area": 77793.5880530209, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3073, "image_id": 422, "category_id": 140, "bbox": [0.0, 279.8181936, 175.08045824, 366.70909680000005], "area": 64203.59670852053, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3074, "image_id": 422, "category_id": 140, "bbox": [123.5862016, 0.0, 160.36781056, 307.8], "area": 49361.212090368004, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3075, "image_id": 422, "category_id": 140, "bbox": [278.06897152, 543.43634832, 105.93102848000001, 103.09094208], "area": 10920.529521506513, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3076, "image_id": 422, "category_id": 140, "bbox": [398.71264768, 321.0545484, 151.54020352000003, 309.272742], "area": 46867.254265868454, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3077, "image_id": 422, "category_id": 140, "bbox": [460.50573312, 142.85454192, 178.02301440000002, 415.30910328000004], "area": 73934.57847366654, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3078, "image_id": 422, "category_id": 140, "bbox": [809.19537664, 35.34545484, 133.8850713600001, 340.19999028], "area": 45547.69997530914, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3079, "image_id": 422, "category_id": 140, "bbox": [932.7816192, 154.63636128, 89.74712832, 349.03634832], "area": 31325.00994101926, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3080, "image_id": 413, "category_id": 210, "bbox": [342.2616392, 16.564706304, 318.1374968, 554.164724736], "area": 176300.5783423721, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3081, "image_id": 328, "category_id": 210, "bbox": [185.6, 265.59999744, 652.8, 478.40000255999996], "area": 312299.5216711679, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3082, "image_id": 423, "category_id": 200, "bbox": [16.564706304, 0.0, 1007.435293696, 680.0], "area": 685055.99971328, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3083, "image_id": 423, "category_id": 227, "bbox": [421.6470528, 0.0, 304.18821120000007, 161.330374], "area": 49074.797879287005, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3084, "image_id": 424, "category_id": 75, "bbox": [0.0, 0.0, 1024.0, 683.0], "area": 699392.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3085, "image_id": 425, "category_id": 75, "bbox": [233.72009505, 684.5293568, 93.76793594999998, 136.9058304], "area": 12837.377136128762, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3086, "image_id": 8, "category_id": 75, "bbox": [54.775630848, 284.1907761, 136.93908275200002, 282.67105482], "area": 38708.71496759111, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3087, "image_id": 8, "category_id": 75, "bbox": [392.5586944, 328.26316446, 240.40413184000005, 227.96050662000002], "area": 54802.64768778769, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3088, "image_id": 14, "category_id": 75, "bbox": [284.80000512000004, 346.14083584, 164.80002048, 491.96872704], "area": 81076.45629171153, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3089, "image_id": 424, "category_id": 67, "bbox": [0.0, 0.0, 1022.4897024, 681.4889308], "area": 696815.4140425862, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3090, "image_id": 357, "category_id": 134, "bbox": [96.0, 547.2, 347.20001279999997, 412.79999999999995], "area": 143324.16528383998, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3091, "image_id": 357, "category_id": 134, "bbox": [240.0, 212.8, 164.80000512, 131.2], "area": 21621.760671744, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3092, "image_id": 426, "category_id": 134, "bbox": [0.0, 1.6000000511999999, 80.0, 283.2000050688], "area": 22656.000405504, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3093, "image_id": 426, "category_id": 134, "bbox": [19.2, 129.60000000000002, 980.8, 636.79997952], "area": 624573.4199132159, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3094, "image_id": 426, "category_id": 134, "bbox": [73.6, 0.0, 126.4, 86.4], "area": 10920.960000000001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3095, "image_id": 426, "category_id": 134, "bbox": [192.0, 0.0, 320.0, 135.99999744000002], "area": 43519.999180800005, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3096, "image_id": 285, "category_id": 134, "bbox": [293.8916864, 290.194944, 521.241856, 733.8050559999999], "area": 382489.9093316239, "iscrowd": 0, "IsOccluded": 0, "IsInside": 1, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3097, "image_id": 358, "category_id": 134, "bbox": [107.19999744, 187.2, 566.40002304, 795.2], "area": 450401.298321408, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3098, "image_id": 359, "category_id": 134, "bbox": [75.3880232, 340.32941056, 483.9911288, 626.44708352], "area": 303194.83108631265, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3099, "image_id": 427, "category_id": 134, "bbox": [158.58407424, 255.3694654, 865.4159257599999, 427.6305346], "area": 370078.27498410264, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3100, "image_id": 428, "category_id": 32, "bbox": [0.0, 0.0, 1024.0, 768.0], "area": 786432.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 3101, "image_id": 242, "category_id": 46, "bbox": [57.640673680000006, 456.36925439999993, 258.64408568, 311.63074560000007], "area": 80601.44926548869, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3102, "image_id": 242, "category_id": 46, "bbox": [104.935594048, 435.6923136, 248.298316672, 313.10768640000003], "area": 77744.11147018446, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3103, "image_id": 429, "category_id": 46, "bbox": [0.0, 564.8613376, 170.75, 299.04424960000006], "area": 51061.80561920001, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3104, "image_id": 429, "category_id": 46, "bbox": [524.3384853, 554.2890496, 158.66151470000003, 289.98231039999996], "area": 46009.03260426957, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3105, "image_id": 398, "category_id": 46, "bbox": [666.05312, 1.5088495708, 206.91440639999996, 215.7654929892], "area": 44644.988903463665, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3106, "image_id": 398, "category_id": 46, "bbox": [922.80828928, 0.0, 75.51617023999995, 135.79645728], "area": 10254.82838594536, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3107, "image_id": 430, "category_id": 46, "bbox": [0.0, 526.39997952, 52.8, 60.80003327999998], "area": 3210.2417571839987, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3108, "image_id": 430, "category_id": 46, "bbox": [4.8, 452.80000512000004, 67.2, 38.40000767999999], "area": 2580.4805160959995, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3109, "image_id": 430, "category_id": 46, "bbox": [12.8, 672.0, 84.8, 46.39997952000002], "area": 3934.718263296001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3110, "image_id": 430, "category_id": 46, "bbox": [36.8, 343.99999488000003, 137.60000000000002, 108.80001023999999], "area": 14970.881409024001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3111, "image_id": 430, "category_id": 46, "bbox": [51.2, 576.0, 84.8, 39.99997440000004], "area": 3391.997829120003, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3112, "image_id": 430, "category_id": 46, "bbox": [108.8, 691.2, 81.60000000000001, 52.79999999999998], "area": 4308.479999999999, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3113, "image_id": 430, "category_id": 46, "bbox": [118.4, 483.19999487999996, 56.0, 43.199984640000025], "area": 2419.1991398400014, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3114, "image_id": 430, "category_id": 46, "bbox": [124.8, 323.19998976, 140.8, 89.60001023999997], "area": 12615.681441792, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3115, "image_id": 430, "category_id": 46, "bbox": [150.4, 585.5999999999999, 81.6, 43.20000000000002], "area": 3525.1200000000013, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3116, "image_id": 430, "category_id": 46, "bbox": [177.6, 505.60002048, 70.4, 33.59999232000001], "area": 2365.4394593280012, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3117, "image_id": 430, "category_id": 46, "bbox": [217.6, 435.19999487999996, 62.400000000000006, 30.400005119999975], "area": 1896.9603194879987, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3118, "image_id": 430, "category_id": 46, "bbox": [262.4, 339.19999487999996, 52.80000000000001, 67.19998464000003], "area": 3548.159188992002, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3119, "image_id": 430, "category_id": 46, "bbox": [280.0, 705.5999999999999, 76.80000000000001, 56.00002560000004], "area": 4300.801966080004, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3120, "image_id": 430, "category_id": 46, "bbox": [312.0, 608.0000256, 51.19999999999999, 36.79997952000005], "area": 1884.1589514240022, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3121, "image_id": 430, "category_id": 46, "bbox": [326.4, 516.7999872, 59.200000000000045, 35.200012799999996], "area": 2083.8407577600015, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3122, "image_id": 430, "category_id": 46, "bbox": [347.2, 393.59999999999997, 43.19999999999999, 28.800000000000068], "area": 1244.1600000000026, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3123, "image_id": 430, "category_id": 46, "bbox": [347.2, 452.80000512000004, 44.80000000000001, 25.599974400000008], "area": 1146.8788531200007, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3124, "image_id": 430, "category_id": 46, "bbox": [401.6, 284.80000512000004, 16.0, 20.79999743999997], "area": 332.7999590399995, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3125, "image_id": 430, "category_id": 46, "bbox": [403.2, 721.60002048, 75.19999999999999, 44.79995904000003], "area": 3368.9569198080017, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3126, "image_id": 430, "category_id": 46, "bbox": [416.0, 611.2000128, 59.19999999999999, 33.59999232000001], "area": 1989.1195453440005, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3127, "image_id": 430, "category_id": 46, "bbox": [428.8, 524.80000512, 51.19999999999999, 30.399989759999983], "area": 1556.4794757119987, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3128, "image_id": 430, "category_id": 46, "bbox": [430.4, 291.19999487999996, 17.600000000000023, 14.400007679999987], "area": 253.4401351680001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3129, "image_id": 430, "category_id": 46, "bbox": [435.2, 454.39997952, 43.19999999999999, 30.400020479999966], "area": 1313.2808847359981, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3130, "image_id": 430, "category_id": 46, "bbox": [444.8, 404.80000512000004, 36.80000000000001, 22.39999488000001], "area": 824.3198115840005, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3131, "image_id": 430, "category_id": 46, "bbox": [452.8, 363.19999487999996, 28.80000000000001, 20.80000512000001], "area": 599.0401474560005, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3132, "image_id": 430, "category_id": 46, "bbox": [587.2, 399.99997440000004, 41.59999999999991, 27.200025599999975], "area": 1131.5210649599965, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3133, "image_id": 430, "category_id": 46, "bbox": [608.0, 462.3999744, 40.0, 19.200046079999993], "area": 768.0018431999997, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3134, "image_id": 430, "category_id": 46, "bbox": [608.0, 526.39997952, 41.60000000000002, 24.0], "area": 998.4000000000005, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3135, "image_id": 430, "category_id": 46, "bbox": [620.8, 596.80000512, 56.0, 49.59997440000001], "area": 2777.5985664000004, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3136, "image_id": 430, "category_id": 46, "bbox": [630.4, 284.80000512000004, 20.800000000000068, 19.199999999999974], "area": 399.3600000000008, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3137, "image_id": 430, "category_id": 46, "bbox": [636.8, 710.4000000000001, 78.40000000000009, 55.99997951999998], "area": 4390.398394368003, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3138, "image_id": 430, "category_id": 46, "bbox": [657.6, 280.00000511999997, 22.399999999999977, 17.599994880000025], "area": 394.2398853120002, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3139, "image_id": 430, "category_id": 46, "bbox": [680.0, 390.3999744, 40.0, 30.400012800000013], "area": 1216.0005120000005, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3140, "image_id": 430, "category_id": 46, "bbox": [688.0, 451.20000000000005, 40.0, 24.0], "area": 960.0, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3141, "image_id": 430, "category_id": 46, "bbox": [702.4, 518.4000000000001, 57.60000000000002, 28.799999999999983], "area": 1658.8799999999997, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3142, "image_id": 430, "category_id": 46, "bbox": [726.4, 596.80000512, 59.200000000000045, 44.80002048], "area": 2652.161212416002, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3143, "image_id": 430, "category_id": 46, "bbox": [756.8, 707.2000128, 70.40000000000009, 54.40001280000001], "area": 3829.760901120006, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3144, "image_id": 430, "category_id": 46, "bbox": [763.2, 339.19999487999996, 25.59999999999991, 14.400007679999987], "area": 368.64019660799835, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3145, "image_id": 430, "category_id": 46, "bbox": [780.8, 427.20000000000005, 65.60000000000002, 44.799974400000025], "area": 2938.8783206400026, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3146, "image_id": 430, "category_id": 46, "bbox": [796.8, 323.19998976, 132.80000000000007, 81.60001536], "area": 10836.482039808006, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3147, "image_id": 430, "category_id": 46, "bbox": [812.8, 497.6000256, 64.0, 46.39994880000003], "area": 2969.596723200002, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3148, "image_id": 430, "category_id": 46, "bbox": [860.8, 576.0, 68.80000000000007, 52.79999999999998], "area": 3632.640000000002, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3149, "image_id": 430, "category_id": 46, "bbox": [884.8, 345.6, 124.80000000000007, 100.80000000000003], "area": 12579.840000000011, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3150, "image_id": 430, "category_id": 46, "bbox": [894.4, 478.39997952, 57.60000000000002, 49.60002047999998], "area": 2856.9611796480003, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3151, "image_id": 430, "category_id": 46, "bbox": [908.8, 673.60002048, 78.40000000000009, 81.59999232000001], "area": 6397.439397888009, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3152, "image_id": 430, "category_id": 46, "bbox": [942.4, 556.8, 57.60000000000002, 49.59997440000001], "area": 2856.9585254400017, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3153, "image_id": 430, "category_id": 46, "bbox": [972.8, 444.79998720000003, 49.60000000000002, 48.0], "area": 2380.800000000001, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3154, "image_id": 193, "category_id": 46, "bbox": [35.200000512, 237.1705856, 537.6000046080001, 693.8841600000001], "area": 373032.12761341827, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3155, "image_id": 402, "category_id": 18, "bbox": [99.681419264, 65.3038649, 850.0105871359999, 858.0202615999999], "area": 729326.3063372002, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3156, "image_id": 431, "category_id": 18, "bbox": [0.0, 80.40433152, 323.00361216, 537.87721728], "area": 173736.28408000915, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3157, "image_id": 431, "category_id": 18, "bbox": [48.51985152, 77.63176704, 565.60290048, 657.09747456], "area": 371656.23750921903, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3158, "image_id": 50, "category_id": 41, "bbox": [105.72271616, 0.0, 918.27728384, 682.0], "area": 626265.10757888, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3159, "image_id": 78, "category_id": 41, "bbox": [108.692736, 97.3925205, 770.8603904, 469.77571307999995], "area": 362131.48958528717, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3160, "image_id": 50, "category_id": 114, "bbox": [0.0, 120.70796430000001, 493.87610112, 436.05753510000005], "area": 215358.39529918556, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3161, "image_id": 137, "category_id": 114, "bbox": [508.97934336, 178.30530502, 515.02065664, 353.58852628000005], "area": 182105.3949850955, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3162, "image_id": 244, "category_id": 114, "bbox": [271.31625472, 438.77098908, 554.88544768, 375.83971892], "area": 208547.99068884953, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3163, "image_id": 317, "category_id": 114, "bbox": [0.0, 197.949109, 1024.0, 435.18585328000006], "area": 445630.31375872006, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3164, "image_id": 174, "category_id": 114, "bbox": [40.77876224, 188.88274844, 403.25663744, 359.63275527], "area": 145024.29560346267, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3165, "image_id": 185, "category_id": 114, "bbox": [13.714285568, 161.55702425, 900.571415552, 533.4429757500001], "area": 480403.4957874487, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3166, "image_id": 194, "category_id": 114, "bbox": [0.0, 138.91795953, 995.3460736, 508.86251997], "area": 506494.31125434104, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3167, "image_id": 432, "category_id": 208, "bbox": [155.5634176, 51.37610692, 814.06487552, 539.449109], "area": 439146.5717674599, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3168, "image_id": 433, "category_id": 208, "bbox": [24.028880896, 123.84115712, 828.0721981439999, 841.0108620799999], "area": 696417.7132255659, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3169, "image_id": 434, "category_id": 208, "bbox": [0.0, 431.31665408, 327.42035699999997, 380.04119552000003], "area": 124433.22391186519, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3170, "image_id": 434, "category_id": 208, "bbox": [63.371682109999995, 137.23710464, 568.8362890100001, 701.2665548800001], "area": 398905.8646847668, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3171, "image_id": 435, "category_id": 208, "bbox": [322.15732224, 195.9146271, 527.6147712000001, 614.0853729], "area": 324000.5135199002, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3172, "image_id": 436, "category_id": 104, "bbox": [0.0, 577.60002048, 224.0, 188.79995904000003], "area": 42291.19082496001, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 3173, "image_id": 436, "category_id": 104, "bbox": [265.6, 55.999997952, 420.79999999999995, 542.399981568], "area": 228241.9122438144, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3174, "image_id": 436, "category_id": 104, "bbox": [548.8, 0.0, 473.6, 236.80000512], "area": 112148.48242483201, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3175, "image_id": 436, "category_id": 104, "bbox": [691.2, 427.20000000000005, 158.39999999999998, 171.19997952], "area": 27118.076755967995, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3176, "image_id": 436, "category_id": 104, "bbox": [1003.2, 444.79998720000003, 19.199999999999932, 73.60001280000003], "area": 1413.1202457599954, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 3177, "image_id": 437, "category_id": 104, "bbox": [132.51765248, 15.07760464, 692.7058534399999, 571.44123136], "area": 395840.6858600332, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3178, "image_id": 437, "category_id": 104, "bbox": [668.61175808, 1.507760532, 328.28234752000003, 376.940119468], "area": 123742.78729342429, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3179, "image_id": 51, "category_id": 247, "bbox": [468.20059136, 231.19248114, 502.93807104000007, 238.74778615999998], "area": 120075.35103638082, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3180, "image_id": 59, "category_id": 247, "bbox": [214.4, 174.40000512, 612.8000000000001, 436.80000768], "area": 267671.0447063041, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3181, "image_id": 14, "category_id": 247, "bbox": [0.0, 506.3912448, 126.40000512, 429.47105792], "area": 54285.14391997982, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3182, "image_id": 209, "category_id": 247, "bbox": [193.6, 182.39999999999998, 592.0, 475.19999999999993], "area": 281318.39999999997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3183, "image_id": 438, "category_id": 247, "bbox": [693.1859456, 40.29141015, 252.46334976000003, 217.79141015], "area": 54984.34895542307, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3184, "image_id": 439, "category_id": 31, "bbox": [252.21675008, 151.42857264, 494.34483711999997, 484.57142736000003], "area": 239545.3833312851, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3185, "image_id": 440, "category_id": 31, "bbox": [204.13072384, 26.762475264000003, 762.98034176, 762.730565136], "area": 581948.4272582632, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3186, "image_id": 441, "category_id": 31, "bbox": [315.2, 113.59999488, 504.00000000000006, 433.60000512], "area": 218534.40258048, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3187, "image_id": 136, "category_id": 201, "bbox": [788.48, 450.7975622, 88.06399999999996, 88.11040239999997], "area": 7759.354476953595, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3188, "image_id": 269, "category_id": 201, "bbox": [293.6495714, 512.78168064, 209.30342880000003, 136.01222656000004], "area": 28467.82537773044, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3189, "image_id": 442, "category_id": 106, "bbox": [0.0, 0.0, 1024.0, 766.39997952], "area": 784793.57902848, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3190, "image_id": 443, "category_id": 106, "bbox": [208.52655242, 36.24778752, 332.43362577999994, 904.6843392000001], "area": 300747.4950666393, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3191, "image_id": 444, "category_id": 106, "bbox": [0.0, 0.0, 1024.0, 768.0], "area": 786432.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3192, "image_id": 445, "category_id": 9, "bbox": [302.21239204, 413.8289152, 285.59072646, 261.28613376], "area": 74620.89675444312, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3193, "image_id": 445, "category_id": 9, "bbox": [332.43362578, 714.3834624, 191.90485951999997, 167.6460032], "area": 32172.082693185464, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3194, "image_id": 422, "category_id": 9, "bbox": [339.86205696, 187.03636128, 207.44833024000002, 154.63634832000002], "area": 32079.052253395042, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3195, "image_id": 446, "category_id": 9, "bbox": [404.45242368, 303.59999999999997, 200.3877888, 171.11999079999998], "area": 34290.35657588834, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3196, "image_id": 447, "category_id": 9, "bbox": [398.13842944, 267.2660772, 176.44773376, 152.50777079999997], "area": 26909.650538449496, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3197, "image_id": 448, "category_id": 9, "bbox": [131.24050944, 184.75051044, 328.91138047999993, 335.46806976000005], "area": 110339.26593172253, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3198, "image_id": 139, "category_id": 98, "bbox": [493.87610112, 321.85619601999997, 129.88793856, 69.50884169999998], "area": 9028.360160106364, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3199, "image_id": 161, "category_id": 98, "bbox": [114.75832002, 346.86303232, 317.09533071, 88.97790975999999], "area": 28214.47972123173, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3200, "image_id": 167, "category_id": 98, "bbox": [229.68141194, 217.48672512, 234.21457855999995, 69.4749184], "area": 16272.038733546387, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3201, "image_id": 180, "category_id": 98, "bbox": [712.8731648, 309.76769706, 203.8938009599999, 69.50882804000003], "area": 14172.419149350626, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3202, "image_id": 200, "category_id": 98, "bbox": [363.98819328, 199.4601782, 78.53688832, 21.154859520000013], "area": 1661.4368395475299, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3203, "image_id": 200, "category_id": 98, "bbox": [720.4248064, 188.88274844, 87.59881728000005, 22.665928720000014], "area": 1985.5085484247866, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3204, "image_id": 203, "category_id": 98, "bbox": [460.64896, 225.14823166, 205.40416000000005, 55.9092872], "area": 11484.000173514754, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3205, "image_id": 139, "category_id": 220, "bbox": [498.40707584, 327.9004455, 126.86729215999998, 58.93142560000004], "area": 7476.470389000507, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3206, "image_id": 256, "category_id": 220, "bbox": [223.63716245999998, 96.66076672, 116.351782, 49.84071168], "area": 5799.0556201162135, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3207, "image_id": 235, "category_id": 220, "bbox": [479.48007424, 306.96468655, 99.82864383999993, 72.58278494999998], "area": 7245.8409876888545, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3208, "image_id": 327, "category_id": 190, "bbox": [91.125190656, 171.65442712, 881.9064893440001, 480.94169648], "area": 424145.60312182445, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3209, "image_id": 449, "category_id": 190, "bbox": [1.8483753984, 0.0, 1012.9097174016, 1012.90973184], "area": 1025986.1102313848, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3210, "image_id": 328, "category_id": 190, "bbox": [275.2, 244.79999999999998, 681.5999999999999, 516.8000256], "area": 352250.89744896, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3211, "image_id": 327, "category_id": 229, "bbox": [256.3861504, 57.218144759999994, 508.13875199999995, 231.96544844], "area": 117870.63347742193, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3212, "image_id": 328, "category_id": 229, "bbox": [452.8, 140.80000512, 350.40000000000003, 244.80001535999997], "area": 85777.92538214399, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3213, "image_id": 450, "category_id": 172, "bbox": [72.602660864, 327.09932948, 152.768096256, 354.35763552000003], "area": 54134.541372167936, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3214, "image_id": 450, "category_id": 172, "bbox": [170.9187584, 257.43929484, 175.45640959999997, 281.66889716000003], "area": 49420.61339168523, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3215, "image_id": 450, "category_id": 172, "bbox": [496.1181696, 187.77926019999998, 152.76810239999998, 371.01543738], "area": 56679.32432964862, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3216, "image_id": 450, "category_id": 172, "bbox": [574.77105664, 75.71744208, 449.22894336, 258.95362611999997], "area": 116329.46384112809, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3217, "image_id": 52, "category_id": 155, "bbox": [226.24963584, 227.56817712, 268.85510144, 281.89093728], "area": 75787.81653743109, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3218, "image_id": 451, "category_id": 19, "bbox": [6.105263280000001, 25.90476288, 169.42104384, 565.33334016], "area": 95779.364607461, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3219, "image_id": 451, "category_id": 19, "bbox": [181.6315704, 25.90476288, 167.8947576, 566.8571340799999], "area": 95172.34112019229, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3220, "image_id": 451, "category_id": 19, "bbox": [348.0, 24.380952576, 174.0, 566.857150464], "area": 98633.14418073601, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3221, "image_id": 451, "category_id": 19, "bbox": [523.526328, 25.90476288, 169.42105080000002, 565.33334016], "area": 95779.36854218105, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3222, "image_id": 382, "category_id": 19, "bbox": [23.163636951, 0.0, 795.8363630489999, 1024.0], "area": 814936.4357621759, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3223, "image_id": 399, "category_id": 19, "bbox": [0.0, 0.0, 570.1565961, 1024.0], "area": 583840.3544064, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3224, "image_id": 452, "category_id": 159, "bbox": [0.0, 46.39999872, 995.2, 710.39998848], "area": 706990.068535296, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3225, "image_id": 453, "category_id": 159, "bbox": [288.89806848, 142.1412812, 546.03251712, 376.52318280000003], "area": 205593.9012583179, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3226, "image_id": 454, "category_id": 149, "bbox": [266.94018048, 197.04845272, 157.53845760000002, 210.18502749999996], "area": 33112.22504296358, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3227, "image_id": 454, "category_id": 87, "bbox": [140.03419136, 113.8502253, 411.3504563199999, 341.5506759], "area": 140497.02638786938, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3228, "image_id": 454, "category_id": 87, "bbox": [597.3332992, 214.56387085, 400.4103167999999, 201.42731594999998], "area": 80653.57539171317, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3229, "image_id": 455, "category_id": 2, "bbox": [0.0, 16.585365239999998, 1022.4918528, 661.90687076], "area": 676794.3826644425, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 3230, "image_id": 456, "category_id": 2, "bbox": [73.6, 203.19998976, 294.4, 302.40003071999996], "area": 89026.56904396799, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3231, "image_id": 456, "category_id": 2, "bbox": [214.4, 0.0, 281.6, 251.19998976], "area": 70737.917116416, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3232, "image_id": 456, "category_id": 2, "bbox": [382.4, 174.40000512, 270.4, 311.99996928], "area": 84364.791693312, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3233, "image_id": 456, "category_id": 2, "bbox": [672.0, 129.60000000000002, 352.0, 352.00002048], "area": 123904.00720895999, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3234, "image_id": 245, "category_id": 51, "bbox": [33.300811776, 0.0, 990.699188224, 924.0], "area": 915406.0499189759, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3235, "image_id": 247, "category_id": 51, "bbox": [0.0, 1.5110619602, 238.6312704, 311.2787598398], "area": 74280.84590910797, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3236, "image_id": 255, "category_id": 51, "bbox": [27.19911583, 0.0, 654.28981497, 1022.4897024], "area": 669004.5981920264, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3237, "image_id": 245, "category_id": 131, "bbox": [30.525745152, 0.0, 990.699173888, 921.225228], "area": 912657.0723443845, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3238, "image_id": 247, "category_id": 131, "bbox": [0.0, 0.0, 243.16224512, 315.81194654], "area": 76793.54195638382, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3239, "image_id": 170, "category_id": 131, "bbox": [380.60177408, 226.6592872, 314.14751232, 293.14603831], "area": 92091.0986815499, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3240, "image_id": 255, "category_id": 131, "bbox": [42.309734066, 0.0, 640.690265934, 1022.4897024], "area": 655099.1993454326, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3241, "image_id": 235, "category_id": 131, "bbox": [412.92761088, 303.94039100000003, 482.50519552000003, 381.05960899999997], "area": 183863.24114531974, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3242, "image_id": 449, "category_id": 179, "bbox": [3.6967508992, 1.8483753984, 1018.4548574208001, 1012.9097174016], "area": 1031602.8218163894, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3243, "image_id": 449, "category_id": 83, "bbox": [565.6029184, 410.33935872, 194.07939583999996, 177.44401408000004], "area": 34438.227048070854, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3244, "image_id": 457, "category_id": 216, "bbox": [796.8, 587.2000128, 120.0, 51.19998720000004], "area": 6143.998464000005, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3245, "image_id": 458, "category_id": 216, "bbox": [489.59999999999997, 331.2, 155.20000512000004, 691.2], "area": 107274.24353894404, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3246, "image_id": 457, "category_id": 241, "bbox": [451.2, 291.19999487999996, 164.8, 273.59999232], "area": 45089.278734336, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3247, "image_id": 457, "category_id": 241, "bbox": [667.2, 20.800000512, 171.19999999999993, 548.800025088], "area": 93954.56429506556, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3248, "image_id": 459, "category_id": 79, "bbox": [70.01258121000001, 340.80248832, 216.40252029, 240.47275008000003], "area": 52038.909178379305, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3249, "image_id": 459, "category_id": 79, "bbox": [152.75470815, 452.27994112, 445.53463185, 426.79938047999997], "area": 190153.90485596485, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3250, "image_id": 459, "category_id": 79, "bbox": [413.7107106, 293.02642688, 182.9873859, 171.99378432000003], "area": 31472.692983765213, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3251, "image_id": 425, "category_id": 42, "bbox": [0.0, 134.11186688, 583.6004752499999, 702.69031424], "area": 410090.4013440358, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3252, "image_id": 460, "category_id": 57, "bbox": [0.0, 0.0, 1024.0, 683.0], "area": 699392.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3253, "image_id": 461, "category_id": 242, "bbox": [0.0, 186.72288880000002, 935.43786496, 235.1325277], "area": 219951.86969433603, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3254, "image_id": 332, "category_id": 242, "bbox": [247.69321984, 0.0, 700.79056896, 581.7588417], "area": 407691.10967245355, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3255, "image_id": 462, "category_id": 242, "bbox": [0.0, 395.55233792, 1024.0, 401.09750271999997], "area": 410723.84278527997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3256, "image_id": 463, "category_id": 141, "bbox": [629.9562685, 739.4579456, 245.6654031, 249.41339647999996], "area": 61272.24258479931, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3257, "image_id": 464, "category_id": 141, "bbox": [96.0, 46.39999872, 905.6, 710.39998848], "area": 643338.229567488, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3258, "image_id": 465, "category_id": 61, "bbox": [68.26667008, 0.0, 953.4577561599999, 648.85], "area": 618651.065084416, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 3259, "image_id": 466, "category_id": 61, "bbox": [80.0, 8.000000256, 900.8, 759.999999744], "area": 684607.9997693951, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3260, "image_id": 152, "category_id": 177, "bbox": [0.0, 419.20001279999997, 233.6, 214.39998719999997], "area": 50083.83700992, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3261, "image_id": 152, "category_id": 177, "bbox": [913.6, 430.39997952, 110.39999999999998, 219.20004095999997], "area": 24199.68452198399, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3262, "image_id": 467, "category_id": 108, "bbox": [45.20000226, 112.77533184, 619.2399977399999, 733.79147776], "area": 454393.03302973363, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3263, "image_id": 226, "category_id": 219, "bbox": [0.0, 300.8, 96.0, 59.19999999999999], "area": 5683.199999999999, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3264, "image_id": 226, "category_id": 219, "bbox": [219.19999488, 72.0, 185.60001024000002, 91.19999999999999], "area": 16926.720933888, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3265, "image_id": 161, "category_id": 219, "bbox": [3.0199556538000003, 72.3888128, 643.2505425462, 464.49485824], "area": 298786.56957280025, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3266, "image_id": 153, "category_id": 10, "bbox": [424.96, 414.9782455, 48.64000000000004, 143.44928192000003], "area": 6977.373072588809, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3267, "image_id": 153, "category_id": 10, "bbox": [458.24, 371.4311461, 199.67999999999995, 212.61232048000008], "area": 42454.4281534464, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3268, "image_id": 153, "category_id": 10, "bbox": [604.16, 412.41664310000004, 40.960000000000036, 146.01088432], "area": 5980.6058217472055, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3269, "image_id": 155, "category_id": 167, "bbox": [160.04631552, 352.711688, 263.78001408, 103.7387666], "area": 27364.213314389835, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3270, "image_id": 468, "category_id": 167, "bbox": [249.99061504, 374.4, 67.30516480000003, 183.99997439999999], "area": 12384.148600187786, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3271, "image_id": 468, "category_id": 167, "bbox": [447.09860352, 425.6000256, 11.217530880000027, 144.0], "area": 1615.3244467200038, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3272, "image_id": 468, "category_id": 167, "bbox": [560.8763392, 345.6, 124.9953792, 54.39997440000003], "area": 6799.745428598297, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3273, "image_id": 468, "category_id": 167, "bbox": [562.4788992, 468.79998720000003, 48.07512064000002, 73.60001280000003], "area": 3538.329494465547, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3274, "image_id": 155, "category_id": 39, "bbox": [257.85238528, 302.32431809999997, 576.4630835199999, 161.5360719], "area": 93119.58210718242, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3275, "image_id": 104, "category_id": 39, "bbox": [105.72271616, 39.287612058, 806.51324416, 134.484512682], "area": 108463.54061243648, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3276, "image_id": 469, "category_id": 144, "bbox": [0.0, 16.250001299999997, 1022.19720704, 917.2222137], "area": 937581.9850791859, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 1}, {"id": 3277, "image_id": 470, "category_id": 144, "bbox": [579.89712384, 0.0, 2993.01774336, 2529.54220896], "area": 7570964.713995329, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3278, "image_id": 471, "category_id": 136, "bbox": [100.8, 121.59999744, 923.2, 315.20000256], "area": 290992.642363392, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3279, "image_id": 228, "category_id": 182, "bbox": [0.0, 0.0, 1013.45880064, 678.492236], "area": 687623.9277401118, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3280, "image_id": 472, "category_id": 182, "bbox": [0.0, 28.62470763, 896.53704704, 412.19581259], "area": 369548.8166216918, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3281, "image_id": 192, "category_id": 182, "bbox": [1.6000000511999999, 0.0, 761.5999999488, 990.4], "area": 754288.6399492915, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3282, "image_id": 272, "category_id": 182, "bbox": [0.0, 118.10367588, 29.94152064, 240.69231732], "area": 7206.693986926209, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3283, "image_id": 272, "category_id": 182, "bbox": [34.432750080000005, 698.157231, 28.444443647999996, 65.77926839999995], "area": 1871.0546932104653, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3284, "image_id": 272, "category_id": 182, "bbox": [52.39766016, 397.66554870000004, 678.1754419200001, 115.11371970000003], "area": 78067.29772860254, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3285, "image_id": 272, "category_id": 182, "bbox": [65.87134463999999, 177.9030051, 94.31578368, 155.4782667], "area": 14664.054569018546, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3286, "image_id": 272, "category_id": 182, "bbox": [77.84795136, 710.1170736, 50.90059008, 53.8194258], "area": 2739.4405309867757, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3287, "image_id": 272, "category_id": 182, "bbox": [151.20467712, 583.0435023599999, 79.34502143999998, 218.26752528000006], "area": 17318.44147299734, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3288, "image_id": 272, "category_id": 182, "bbox": [217.07602176, 717.5919864, 46.40935679999998, 58.30435559999998], "area": 2705.8676420344764, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3289, "image_id": 272, "category_id": 182, "bbox": [393.7310208, 725.06687238, 348.818688, 64.28430372000004], "area": 22423.566482603936, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3290, "image_id": 272, "category_id": 182, "bbox": [648.2339328, 127.07357123999999, 118.26900479999998, 177.90299616000001], "area": 21040.41030678142, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3291, "image_id": 161, "category_id": 86, "bbox": [0.0, 75.4050048, 646.2704982, 461.47866623999994], "area": 298240.0475395963, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3292, "image_id": 182, "category_id": 86, "bbox": [44.66367448, 83.3488384, 198.00897655999998, 206.88370688], "area": 40964.831066247825, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3293, "image_id": 58, "category_id": 60, "bbox": [0.0, 283.6637144, 405.67891968, 398.3362856], "area": 161596.63401155194, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3294, "image_id": 473, "category_id": 40, "bbox": [0.0, 0.0, 1022.4918528, 681.0], "area": 696316.9517568, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3295, "image_id": 309, "category_id": 40, "bbox": [5.5451264, 125.68952832, 133.08303104, 134.93141504000002], "area": 17957.081696039448, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3296, "image_id": 309, "category_id": 40, "bbox": [234.74368512, 310.5270784, 142.32492032, 177.44404480000003], "area": 25254.709537418512, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3297, "image_id": 309, "category_id": 40, "bbox": [280.95306752, 40.664260608, 166.35378688000003, 70.23826739200001], "area": 11684.401764549226, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3298, "image_id": 309, "category_id": 40, "bbox": [338.25271808, 332.707584, 552.66424832, 691.292416], "area": 382052.6034579567, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3299, "image_id": 309, "category_id": 40, "bbox": [436.2166272, 44.3610112, 25.87724800000001, 83.17688831999999], "area": 2152.388966924944, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3300, "image_id": 309, "category_id": 40, "bbox": [456.54874112, 0.0, 129.38626047999998, 40.664260608], "area": 5261.39661525329, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3301, "image_id": 162, "category_id": 118, "bbox": [610.55401984, 253.12917692, 392.61341696, 426.15413077999995], "area": 167313.8294371545, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3302, "image_id": 203, "category_id": 118, "bbox": [457.62832384, 259.90265934, 206.9144576, 164.70573686000003], "area": 34079.99820599523, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3303, "image_id": 167, "category_id": 150, "bbox": [182.83849896, 558.8200448, 57.4203564, 237.12092159999997], "area": 13615.567828168458, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3304, "image_id": 170, "category_id": 150, "bbox": [570.9026304, 194.92699792000002, 45.30974719999995, 111.8185744], "area": 5066.471338328385, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3305, "image_id": 474, "category_id": 150, "bbox": [420.7599616, 80.02882503, 153.8262016, 507.35253867], "area": 78044.1138957232, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3306, "image_id": 204, "category_id": 150, "bbox": [58.643173376, 136.80266352, 55.635825664, 61.636356240000005], "area": 3429.1895703328387, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3307, "image_id": 204, "category_id": 150, "bbox": [66.16153088, 392.36805810000004, 108.26431487999999, 69.15301001999994], "area": 7486.803251705068, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3308, "image_id": 204, "category_id": 150, "bbox": [408.99853312, 102.22616867999999, 55.635834880000004, 39.08646948000001], "area": 2174.6083620314407, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3309, "image_id": 204, "category_id": 150, "bbox": [709.73273088, 261.5787054, 27.066091519999986, 97.7161737], "area": 2644.794900348416, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3310, "image_id": 204, "category_id": 150, "bbox": [831.5300864, 111.24612474000001, 66.16156160000003, 60.13303361999998], "area": 3978.4954080445013, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3311, "image_id": 475, "category_id": 240, "bbox": [228.6332928, 227.62410047999998, 18.01353216000001, 165.16627776], "area": 2975.228056177255, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3312, "image_id": 475, "category_id": 240, "bbox": [331.17184, 313.67710079999995, 31.870126080000034, 73.56143808000003], "area": 2344.4123062357166, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3313, "image_id": 475, "category_id": 240, "bbox": [336.71447552, 159.61445568000002, 15.242209279999997, 227.6240832], "area": 3469.4939133025314, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3314, "image_id": 475, "category_id": 240, "bbox": [353.34234112, 302.57349120000003, 29.09879295999997, 80.50118399999998], "area": 2342.4872862508614, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3315, "image_id": 475, "category_id": 240, "bbox": [375.51285248, 281.75421888, 33.25576192, 105.48432000000003], "area": 3507.9614322130947, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3316, "image_id": 475, "category_id": 240, "bbox": [419.85385472, 248.44337280000002, 49.88363776, 144.34700543999998], "area": 7200.55373110971, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3317, "image_id": 475, "category_id": 240, "bbox": [525.16375552, 161.00240832, 85.91065088000005, 238.72771007999998], "area": 20509.252956064745, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3318, "image_id": 475, "category_id": 240, "bbox": [577.81866496, 238.72771008, 11.085271040000066, 154.06266816], "area": 1707.826433699188, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3319, "image_id": 475, "category_id": 240, "bbox": [616.6170624, 149.89879872, 12.47088640000004, 238.7276928], "area": 2977.145937442908, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3320, "image_id": 458, "category_id": 240, "bbox": [199.99999488000003, 51.2, 240.00003071999993, 972.8], "area": 233472.0298844159, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3321, "image_id": 300, "category_id": 254, "bbox": [53.132076032, 255.98341127999998, 821.132090368, 357.41075512], "area": 293481.44047169096, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3322, "image_id": 300, "category_id": 254, "bbox": [152.95597568, 474.93776320000006, 376.75471871999997, 143.28630479999998], "area": 53983.79146135217, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3323, "image_id": 300, "category_id": 254, "bbox": [326.8427776, 180.31535639999998, 376.754688, 119.13692872000001], "area": 44885.39640918184, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3324, "image_id": 300, "category_id": 254, "bbox": [687.4968064, 489.4273904, 334.89315840000006, 141.67633759999998], "area": 47446.43616940868, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3325, "image_id": 301, "category_id": 254, "bbox": [64.537819136, 148.43697408, 957.3109616639999, 548.57143296], "area": 525153.4460283361, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3326, "image_id": 230, "category_id": 211, "bbox": [125.41814256, 148.01179648, 463.89599733, 800.47199232], "area": 371335.7532120185, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3327, "image_id": 59, "category_id": 29, "bbox": [214.4, 176.00000255999998, 612.8000000000001, 436.79998464], "area": 267671.03058739204, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3328, "image_id": 476, "category_id": 239, "bbox": [0.0, 27.199999488, 379.2, 158.399995392], "area": 60065.27825264639, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3329, "image_id": 172, "category_id": 161, "bbox": [750.3127552, 232.67662149999998, 232.7272448, 452.32337850000005], "area": 105267.97363693257, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3330, "image_id": 477, "category_id": 256, "bbox": [44.340999168, 245.667456, 178.74966835200001, 204.0289344], "area": 36470.10435821197, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3331, "image_id": 477, "category_id": 256, "bbox": [433.71041792, 199.86506495999998, 77.59674367999997, 92.99278079999999], "area": 7215.936975828022, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3332, "image_id": 477, "category_id": 256, "bbox": [594.4465408, 199.86506495999998, 52.65496064000001, 22.207213439999993], "area": 1169.3199496072789, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3333, "image_id": 477, "category_id": 256, "bbox": [702.5276928, 162.3903552, 49.883688960000086, 56.90602367999999], "area": 2838.682385203519, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3334, "image_id": 477, "category_id": 256, "bbox": [712.227328, 363.6433728, 253.57509631999994, 210.96867456], "area": 53496.40197205473, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3335, "image_id": 477, "category_id": 256, "bbox": [889.5913984, 238.72771008, 127.48032, 117.97589952], "area": 15039.605423097448, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3336, "image_id": 477, "category_id": 256, "bbox": [924.232704, 173.49398208, 66.51156479999997, 80.50120128], "area": 5354.260865412561, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3337, "image_id": 193, "category_id": 256, "bbox": [36.799999488, 233.96557824, 531.199974912, 695.48668928], "area": 369442.5118971659, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3338, "image_id": 232, "category_id": 56, "bbox": [29.444646582, 40.44524544, 951.430102818, 948.62478336], "area": 902550.1751679078, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3339, "image_id": 234, "category_id": 56, "bbox": [456.49865728, 405.9855665, 91.57721088000005, 94.54456579999999], "area": 8658.12763982464, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3340, "image_id": 234, "category_id": 56, "bbox": [480.0867328, 173.79518690999998, 73.53927679999998, 73.68914314], "area": 5419.046294527279, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3341, "image_id": 478, "category_id": 76, "bbox": [15.1032448, 61.953540095, 851.82304, 605.935836205], "area": 516150.10604108515, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3342, "image_id": 479, "category_id": 76, "bbox": [292.8, 299.19998976, 463.99999999999994, 275.19998976], "area": 127692.79524863999, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3343, "image_id": 480, "category_id": 111, "bbox": [0.0, 37.76133604, 1024.0, 511.87589896], "area": 524160.92053504, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3344, "image_id": 481, "category_id": 111, "bbox": [107.78947584, 101.98587952, 850.9695385599999, 396.61175302], "area": 337504.520454902, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3345, "image_id": 482, "category_id": 70, "bbox": [0.0, 364.79999999999995, 203.2, 401.59997952000003], "area": 81605.115838464, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3346, "image_id": 482, "category_id": 70, "bbox": [777.6, 348.80001024, 244.79999999999995, 417.59996928], "area": 102228.47247974397, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3347, "image_id": 468, "category_id": 173, "bbox": [230.76056064, 324.80001024, 427.86852864, 156.80001024], "area": 67089.78967212574, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3348, "image_id": 175, "category_id": 243, "bbox": [256.0, 63.3259452, 164.14117887999998, 407.0953348], "area": 66821.10817062028, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3349, "image_id": 175, "category_id": 243, "bbox": [683.67058944, 72.37250879999999, 198.7764633600001, 417.6497032], "area": 83018.9309254497, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3350, "image_id": 472, "category_id": 15, "bbox": [0.0, 24.331001332000003, 897.9692544, 429.37060646799995], "area": 385561.60335134575, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3351, "image_id": 310, "category_id": 238, "bbox": [0.0, 125.94193665, 116.5402112, 161.70323015999998], "area": 18844.928594568606, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3352, "image_id": 310, "category_id": 238, "bbox": [0.0, 450.90321570000003, 9.323217408, 121.27744430999994], "area": 1130.6959799887418, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3353, "image_id": 310, "category_id": 238, "bbox": [76.13960192, 104.17419246, 197.34140928, 163.25807058], "area": 32217.577724590905, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3354, "image_id": 310, "category_id": 238, "bbox": [136.7405056, 301.6387089, 174.03338752000002, 203.6838492], "area": 35447.79025938884, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3355, "image_id": 310, "category_id": 238, "bbox": [321.6509952, 0.0, 113.43247359999998, 32.651614116], "area": 3703.7533562105564, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3356, "image_id": 310, "category_id": 238, "bbox": [613.778432, 181.91612669999998, 189.5720960000001, 125.94194388000003], "area": 23875.07827564599, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3357, "image_id": 310, "category_id": 238, "bbox": [629.31712, 315.63225822, 197.34145023999997, 200.57417559], "area": 39581.598691623, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3358, "image_id": 310, "category_id": 238, "bbox": [767.6114944, 234.78063591, 183.3566208000001, 209.90326148999998], "area": 38487.152721705184, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3359, "image_id": 310, "category_id": 238, "bbox": [803.350528, 87.070965192, 80.80117759999996, 82.406452608], "area": 6658.538412564988, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3360, "image_id": 310, "category_id": 238, "bbox": [879.49010944, 46.645161990000005, 142.95597056000008, 178.80645309000002], "area": 25561.450043872075, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3361, "image_id": 310, "category_id": 238, "bbox": [935.4294272, 223.89677465999998, 87.01665280000009, 177.25160544000002], "area": 15423.84140881509, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3362, "image_id": 255, "category_id": 192, "bbox": [259.90265934, 0.0, 367.18805345999994, 451.58701056], "area": 165817.35537534684, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3363, "image_id": 182, "category_id": 191, "bbox": [242.67265104, 183.06976768, 416.86099279999996, 699.5348787199999], "area": 291608.80404144677, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3364, "image_id": 483, "category_id": 235, "bbox": [0.0, 0.0, 1024.0, 683.0], "area": 699392.0, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3365, "image_id": 484, "category_id": 154, "bbox": [151.10832128, 8.04573774, 872.89167872, 765.9542622600001], "area": 668595.1018068705, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3366, "image_id": 217, "category_id": 158, "bbox": [43.69843712, 188.17431216, 390.37270528, 447.82568784000006], "area": 174818.9252559776, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3367, "image_id": 217, "category_id": 158, "bbox": [509.81506048, 121.07339292, 262.19062272, 514.9266070799999], "area": 135008.92776540195, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3368, "image_id": 217, "category_id": 158, "bbox": [721.02417408, 170.66972868, 302.97582592000003, 465.33027132], "area": 140983.82327875472, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3369, "image_id": 485, "category_id": 176, "bbox": [57.392329728, 0.0, 966.607670272, 581.7588417], "area": 562332.5586357742, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3370, "image_id": 486, "category_id": 153, "bbox": [36.8, 1.6000000511999999, 947.2, 745.5999948287999], "area": 706232.3151018394, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3371, "image_id": 235, "category_id": 100, "bbox": [477.96750336, 303.94039100000003, 111.92909824000003, 86.19207724999997], "area": 9647.40148202492, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3372, "image_id": 235, "category_id": 113, "bbox": [356.963072, 240.43045845000003, 541.4948352, 444.56954154999994], "area": 240732.11063655678, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3373, "image_id": 487, "category_id": 252, "bbox": [235.20000000000002, 281.6, 364.79999999999995, 585.6], "area": 213626.87999999998, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3374, "image_id": 488, "category_id": 66, "bbox": [118.64319235999999, 54.48513536, 387.99530696000005, 897.4021939200001], "area": 348187.8396965679, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3375, "image_id": 489, "category_id": 212, "bbox": [412.02368512, 228.82820144000002, 272.66271231999997, 306.11453695999995], "area": 83466.01992809447, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3376, "image_id": 490, "category_id": 234, "bbox": [304.0, 83.5555584, 336.0, 343.11109120000003], "area": 115285.32664320001, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 1, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3377, "image_id": 491, "category_id": 110, "bbox": [0.0, 204.80001024, 684.8, 364.80001536000003], "area": 249815.05051852798, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3378, "image_id": 419, "category_id": 107, "bbox": [0.0, 86.4, 910.4, 665.6000256], "area": 605962.2633062399, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3379, "image_id": 492, "category_id": 5, "bbox": [0.0, 91.66728718, 1024.0, 859.1561179400001], "area": 879775.8647705601, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 1}, {"id": 3380, "image_id": 195, "category_id": 123, "bbox": [0.0, 776.3067904, 167.72787526000002, 141.97049344000004], "area": 23812.40921430498, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3381, "image_id": 220, "category_id": 123, "bbox": [652.8, 543.9999744, 140.80000000000007, 56.00002559999996], "area": 7884.803604479997, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3382, "image_id": 220, "category_id": 123, "bbox": [667.2, 271.99999488000003, 110.39999999999998, 151.99997952], "area": 16780.797739007998, "iscrowd": 0, "IsOccluded": 1, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3383, "image_id": 493, "category_id": 147, "bbox": [0.0, 8.000000256, 1024.0, 759.999999744], "area": 778239.999737856, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 1, "IsGroupOf": 0}, {"id": 3384, "image_id": 494, "category_id": 209, "bbox": [0.0, 81.6, 886.4, 686.4000000000001], "area": 608424.96, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3385, "image_id": 495, "category_id": 221, "bbox": [450.10989056, 432.86069970000005, 207.37204223999998, 90.11229209999996], "area": 18686.770043704408, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3386, "image_id": 20, "category_id": 1, "bbox": [364.8, 44.800000512, 279.99999999999994, 723.199999488], "area": 202495.99985663994, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}, {"id": 3387, "image_id": 328, "category_id": 53, "bbox": [456.0, 139.2, 345.6, 243.20000256000003], "area": 84049.92088473601, "iscrowd": 0, "IsOccluded": 0, "IsInside": 0, "IsDepiction": 0, "IsTruncated": 0, "IsGroupOf": 0}]} \ No newline at end of file diff --git a/ML-Frameworks/pytorch-aarch64/examples/openimages-mlperf.json.license b/ML-Frameworks/pytorch-aarch64/examples/openimages-mlperf.json.license deleted file mode 100644 index 2604f44a..00000000 --- a/ML-Frameworks/pytorch-aarch64/examples/openimages-mlperf.json.license +++ /dev/null @@ -1,3 +0,0 @@ -SPDX-FileCopyrightText: Copyright 2023, 2025 Arm Limited and affiliates. - -SPDX-License-Identifier: Apache-2.0 diff --git a/ML-Frameworks/pytorch-aarch64/examples/quantized_linear.py b/ML-Frameworks/pytorch-aarch64/examples/quantized_linear.py index 933eb15c..21306293 100644 --- a/ML-Frameworks/pytorch-aarch64/examples/quantized_linear.py +++ b/ML-Frameworks/pytorch-aarch64/examples/quantized_linear.py @@ -67,4 +67,4 @@ def forward(self, x): model(data) runtimes.append(time.time() - t0) -print('Quantized: %.4fms, FP32: %.4fms, Speedup: %.4f' % (np.min(runtimes)*1e3, np.min(fp32_runtimes)*1e3, np.min(fp32_runtimes)/np.min(runtimes))) \ No newline at end of file +print('Quantized: %.4fms, FP32: %.4fms, Speedup: %.4f' % (np.min(runtimes)*1e3, np.min(fp32_runtimes)*1e3, np.min(fp32_runtimes)/np.min(runtimes))) diff --git a/ML-Frameworks/pytorch-aarch64/examples/transformers_llm_text_gen.py b/ML-Frameworks/pytorch-aarch64/examples/transformers_llm_text_gen.py index c17d8337..906d9434 100644 --- a/ML-Frameworks/pytorch-aarch64/examples/transformers_llm_text_gen.py +++ b/ML-Frameworks/pytorch-aarch64/examples/transformers_llm_text_gen.py @@ -158,8 +158,7 @@ def eval_quantized_output(quantized_model, tokenizer, input_tensor, max_min_toke def main(args): - name_string = f"{args.model}" - quantized_model_, tokenizer_, config_ = get_quantized_model(args) + quantized_model_, tokenizer_, _ = get_quantized_model(args) input_tensor = tokenizer_.encode(args.prompt, return_tensors="pt") eval_quantized_output( quantized_model_, tokenizer_, input_tensor, args.max_new_tokens diff --git a/ML-Frameworks/pytorch-aarch64/examples/utils/image.py b/ML-Frameworks/pytorch-aarch64/examples/utils/image.py index 086bf401..f7f0d70a 100644 --- a/ML-Frameworks/pytorch-aarch64/examples/utils/image.py +++ b/ML-Frameworks/pytorch-aarch64/examples/utils/image.py @@ -247,7 +247,8 @@ def _postprocess_image_for_openimages_detection( # resizing the box values from the 800x800 image to the original # resolution. - resize = lambda x, orig: int((x / 800) * orig) + def resize(x, orig): + return int((x / 800) * orig) left = resize(box[0], width) top = resize(box[1], height) right = resize(box[2], width) diff --git a/ML-Frameworks/pytorch-aarch64/examples/utils/vision_parser.py b/ML-Frameworks/pytorch-aarch64/examples/utils/vision_parser.py index 49cca1fe..7598c09f 100644 --- a/ML-Frameworks/pytorch-aarch64/examples/utils/vision_parser.py +++ b/ML-Frameworks/pytorch-aarch64/examples/utils/vision_parser.py @@ -61,7 +61,7 @@ def parse_arguments(): else: try: os.path.isfile(args["image"]) - except: + except Exception as _: assert False, "Image not found" return args diff --git a/ML-Frameworks/tensorflow-aarch64/.gitignore b/ML-Frameworks/tensorflow-aarch64/.gitignore index 5115fc0a..f13cb510 100644 --- a/ML-Frameworks/tensorflow-aarch64/.gitignore +++ b/ML-Frameworks/tensorflow-aarch64/.gitignore @@ -1,7 +1,7 @@ -# SPDX-FileCopyrightText: Copyright 2025 Arm Limited and affiliates. +# SPDX-FileCopyrightText: Copyright 2025, 2026 Arm Limited and affiliates. # # SPDX-License-Identifier: Apache-2.0 tensorflow/ results/ -*.whl \ No newline at end of file +*.whl diff --git a/ML-Frameworks/tensorflow-aarch64/Dockerfile b/ML-Frameworks/tensorflow-aarch64/Dockerfile index 5e6f5539..6fce46e5 100644 --- a/ML-Frameworks/tensorflow-aarch64/Dockerfile +++ b/ML-Frameworks/tensorflow-aarch64/Dockerfile @@ -38,7 +38,8 @@ WORKDIR /home/$DOCKER_USER ENV PATH="/home/$DOCKER_USER/.local/bin:${PATH}" # Install uv for quicker package installations (installed to ~/.local/bin with --user) -RUN python -m pip install --user uv==0.9.29 +ENV UV_NO_CACHE=1 +RUN python -m pip install --no-cache-dir --user uv==0.9.29 # Create virtual environment with uv RUN uv venv /home/$DOCKER_USER/.venv diff --git a/ML-Frameworks/tensorflow-aarch64/examples/classify_image.py b/ML-Frameworks/tensorflow-aarch64/examples/classify_image.py old mode 100755 new mode 100644 diff --git a/ML-Frameworks/tensorflow-aarch64/examples/executor/model.py b/ML-Frameworks/tensorflow-aarch64/examples/executor/model.py index 3e373d1f..2f17ed5c 100644 --- a/ML-Frameworks/tensorflow-aarch64/examples/executor/model.py +++ b/ML-Frameworks/tensorflow-aarch64/examples/executor/model.py @@ -13,7 +13,6 @@ import zipfile import numpy as np -import yaml from tqdm import tqdm import tensorflow as tf diff --git a/ML-Frameworks/tensorflow-aarch64/examples/utils/vision_parser.py b/ML-Frameworks/tensorflow-aarch64/examples/utils/vision_parser.py index 8c0a10fc..ea4ba922 100644 --- a/ML-Frameworks/tensorflow-aarch64/examples/utils/vision_parser.py +++ b/ML-Frameworks/tensorflow-aarch64/examples/utils/vision_parser.py @@ -89,7 +89,7 @@ def parse_arguments(): else: try: os.path.isfile(args["image"]) - except: + except Exception as _: assert False, "Image not found" return args