diff --git a/.idea/dictionaries/dlindenbaum.xml b/.idea/dictionaries/dlindenbaum.xml
new file mode 100644
index 0000000..da232e0
--- /dev/null
+++ b/.idea/dictionaries/dlindenbaum.xml
@@ -0,0 +1,7 @@
+
+
+
+ dataset
+
+
+
\ No newline at end of file
diff --git a/.travis.yml b/.travis.yml
index 70f16ab..bb3df02 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -19,10 +19,16 @@ install:
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
- - conda create --yes -n ml-export python=$TRAVIS_PYTHON_VERSION pip
+ - conda create --yes -n ml-export python=$TRAVIS_PYTHON_VERSION pip=18.1
- source activate ml-export
- - conda install -c conda-forge rtree
- - pip install -q -e .[test]
+ - conda install -c conda-forge rtree pytest opencv
+ - conda info -a
+ - pip install -e .[test]
+ - conda info -a
+ - conda list
# command to run tests
script:
- - pytest # or py.test for Python versions 3.5 and below
\ No newline at end of file
+ - source activate ml-export & pytest --cov=./ #--log-level=INFO #--cov=./# or py.test for Python versions 3.5 and below
+ - codecov
+
+
diff --git a/Docker/Dockerfile b/Docker/Dockerfile
new file mode 100644
index 0000000..0b36ddd
--- /dev/null
+++ b/Docker/Dockerfile
@@ -0,0 +1,11 @@
+# Using the official tensorflow serving image from docker hub as base image
+FROM developmentseed/looking-glass:latest
+
+# Installing NGINX, used to rever proxy the predictions from SageMaker to TF Serving
+RUN apt-get update && apt-get install -y --no-install-recommends nginx git
+
+# Copy NGINX configuration to the container
+COPY nginx.conf /etc/nginx/nginx.conf
+
+# starts NGINX and TF serving pointing to our model
+ENTRYPOINT service nginx start | /usr/bin/tf_serving_entrypoint.sh
\ No newline at end of file
diff --git a/Docker/nginx.conf b/Docker/nginx.conf
new file mode 100644
index 0000000..b618f75
--- /dev/null
+++ b/Docker/nginx.conf
@@ -0,0 +1,26 @@
+events {
+ # determines how many requests can simultaneously be served
+ # https://www.digitalocean.com/community/tutorials/how-to-optimize-nginx-configuration
+ # for more information
+ worker_connections 2048;
+}
+
+http {
+
+ client_max_body_size 50M;
+ server {
+ # configures the server to listen to the port 8080
+ listen 8080 deferred;
+
+ # redirects requests from SageMaker to TF Serving
+ location /invocations {
+ proxy_pass http://localhost:8501/v1/models/looking_glass_export:predict;
+ }
+
+ # Used my SageMaker to confirm if server is alive.
+ location /ping {
+ return 200 "OK";
+ }
+ }
+}
+
diff --git a/README.MD b/README.MD
index 2cd6758..367f587 100644
--- a/README.MD
+++ b/README.MD
@@ -1,4 +1,5 @@
# Creating an ML-Export Tool
+[](https://travis-ci.com/SpaceNetChallenge/ml-export-tool)
## User Story
@@ -12,16 +13,45 @@ A user would like to perform machine learning against an area. They provide an
3. Output formats for result.
-## Export End Points
+# Interface End Points
+### GET
1. TMS
2. Vector Tiles
3. GeoJson
4. Cloud Optimized GeoTiff
+### Push:
+1. New ML Prediction
+2. New STAC-ITEM
+## Storage Layer:
+We will use the [Spatial Temporal Access Catalog Spec](https://github.com/radiantearth/stac-spec) for Storage Documentation 9
+STAC-ITEMS: Each machine learning output will be stored as an STAC ITEM. Binary masks can be stored as a Cloud Optimized GeoTiff to encourage easy processing
+
+ * STAC-ITEMS can be added to Catalog Collections based on TaskID.
+ STAC-ITEMS produced by the ML Service should have at least 3 assets:
+
+ * results_cog
+ * results_cog_binary
+ * results_cog_geojson
+
+ * STAC-ITEMs for other apis can be documnted
+ * [AI for Earth](https://github.com/Microsoft/AIforEarth-API-Development/blob/master/Quickstart.md)
+
+
+
+### Why STAC:
+* STAC is an industry initiative to create a overarching, cloud native searchable catalog of geospatial data.
+* Machine Learning outputs in mapping situations are Spatial and Temporal Items.
+* This will allow cumalitive machine learning results to queable and should allow flexibility as we add new types of data
+* An example of the SpaceNet STAC-Browser can be found at [SpaceNet-STAC](https://spacenet-stac.netlify.com/)
+
+###
+
+
## Test items:
Test Location 1:
diff --git a/ml_export/api/__init__.py b/ml_export/api/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/ml_export/ml_tools/__init__.py b/ml_export/ml_tools/__init__.py
new file mode 100644
index 0000000..7aef66f
--- /dev/null
+++ b/ml_export/ml_tools/__init__.py
@@ -0,0 +1,3 @@
+"""ml-tools"""
+
+__version__ = '0.1'
\ No newline at end of file
diff --git a/ml_export/ml_tools/mlbase.py b/ml_export/ml_tools/mlbase.py
new file mode 100644
index 0000000..291aba2
--- /dev/null
+++ b/ml_export/ml_tools/mlbase.py
@@ -0,0 +1,145 @@
+import logging
+import numpy as np
+import json
+import requests
+logger = logging.getLogger(__name__)
+logger.setLevel(logging.DEBUG)
+
+
+class MLModel():
+
+ """MLModel test case.
+ The ml model base class should have 4 functions
+
+ init:
+ load_model_dict: This should Load The model into memory based on the provided model dictionary
+ predict: This should receive a np array of 3 x 1024 x 1024 and return a numpy array of 1x1024x1024
+ predict_batch: This should receive a list of np arrays of [np(3,1024,1024)] and return a list of [np(1,1024,1024]
+
+
+ model_dictionary = {'model_file': "test.hdf5",
+ "model_description": "Passthrough Model",
+ "model_version": "0.1",
+ "model_speed": 20, # numpy arrays per second
+ }
+
+
+
+ """
+
+
+ def __init__(self, model_json_string, debug=False):
+ ''' Initialize model using a json string ID for the model.'''
+
+ self.logger = logging.getLogger(__name__)
+ self.logger.setLevel(logging.DEBUG)
+ # Create the Handler for logging data to a file
+ logger_handler = logging.StreamHandler()
+ # Create a Formatter for formatting the log messages
+ logger_formatter = logging.Formatter(
+ '%(name)s - %(levelname)s - %(message)s')
+ # Add the Formatter to the Handler
+ logger_handler.setFormatter(logger_formatter)
+ # Add the Handler to the Logger
+ if debug:
+ logger.setLevel(logging.DEBUG)
+ else:
+ logger.setLevel(logging.INFO)
+ self.logger.addHandler(logger_handler)
+ ## Assign Model Dictionary
+ self.model_json = model_json_string
+ ## Load Model Into Memory
+ self.load_model_dict()
+
+ def estimate_time(self, tiles_length):
+ """Returns Completion estimate in Seconds"""
+ return self.model_dict['model_speed']* tiles_length
+
+ def load_model_dict(self):
+ self.model_dict = json.loads(self.model_json)
+
+ def predict(self, np_array):
+ # TODO: IMPLEMENT!
+ return np_array[None, 0, :, :]
+
+ def predict_batch(self, list_np_array):
+ # TODO: IMPLEMENT!
+ list_np_array_results = []
+ for np_array in list_np_array:
+ list_np_array_results.append(np_array[None,0, :, :])
+ return list_np_array_results
+
+
+class MLTFServing():
+ """MLTFServing model test case.
+
+ The ml model base class should have 4 functions
+
+ init:
+ load_model_dict: This should Load The model into memory based on the provided model dictionary
+ predict: This should receive a np array of 3 x 1024 x 1024 and return a numpy array of 1x1024x1024
+ predict_batch: This should receive a list of np arrays of [np(3,1024,1024)] and return a list of [np(1,1024,1024]
+
+
+ model_dictionary = {'model_file': "test.hdf5",
+ "model_description": "Passthrough Model",
+ "model_version": "0.1",
+ "model_speed": 20, # numpy arrays per second
+ }
+ """
+
+
+ def __init__(self, api_location, output_num_channels=1, debug=False):
+ ''' Inititialize model '''
+
+ self.logger = logging.getLogger(__name__)
+ self.logger.setLevel(logging.DEBUG)
+ # Create the Handler for logging data to a file
+ logger_handler = logging.StreamHandler()
+ # Create a Formatter for formatting the log messages
+ logger_formatter = logging.Formatter('%(name)s - %(levelname)s - %(message)s')
+
+ # Add the Formatter to the Handler
+ logger_handler.setFormatter(logger_formatter)
+
+ # Add the Handler to the Logger
+
+ if debug:
+ logger.setLevel(logging.DEBUG)
+ else:
+ logger.setLevel(logging.INFO)
+
+ self.logger.addHandler(logger_handler)
+
+ # Assign Model Dictionary
+ self.predict_api_loc = api_location
+ self.num_channels = output_num_channels
+ self.model_speed = 1
+
+ # Load Model Into Memory
+ self.load_model_dict()
+
+ def estimate_time(self, tiles_length):
+ """Returns Completion estimate in Seconds"""
+ return self.model_speed * tiles_length
+
+ def load_model_dict(self):
+ # TODO: IMPLEMENT
+ return 0
+
+ def predict(self, np_array):
+ # TODO: IMPLEMENT
+ return np_array[None, 0, :, :]
+
+ def predict_batch(self, super_res_tile_batch):
+ inputs = np.moveaxis(super_res_tile_batch, 1, 3).astype(np.float32)/255
+ payload = {'inputs': inputs.tolist()}
+ # Send prediction request
+ r = requests.post(self.predict_api_loc,
+ json=payload)
+ content = json.loads(r.content)
+ all_image_preds = np.asarray(content['outputs']).reshape(len(inputs),
+ 256, 256)
+ all_image_preds = all_image_preds[:, np.newaxis, :, :]
+
+ return all_image_preds
diff --git a/ml_export/ml_tools/mlopencv.py b/ml_export/ml_tools/mlopencv.py
new file mode 100644
index 0000000..79a21f0
--- /dev/null
+++ b/ml_export/ml_tools/mlopencv.py
@@ -0,0 +1,54 @@
+## Note, for mac osx compatability import something from shapely.geometry before importing fiona or geopandas
+## https://github.com/Toblerity/Shapely/issues/553 * Import shapely before rasterio or fioana
+from shapely import geometry
+import mercantile
+from ml_export import tile_generator
+from torch.utils.data import Dataset
+
+
+def mlopencv(mlbase):
+
+ def __init__(self, model):
+ super().__init__()
+
+
+class OpenCVClassDataset(Dataset):
+
+ def __init__(self, root_tile_obj, raster_location,
+ desired_zoom_level, super_res_zoom_level,
+ cog=True,
+ tile_size=256,
+ indexes=None
+ ):
+
+ self.root_tile_obj = root_tile_obj
+ self.desired_zoom_level = desired_zoom_level
+ self.super_res_zoom_level = super_res_zoom_level
+ self.raster_location = raster_location
+ self.cog = cog
+ self.tile_size = tile_size
+
+ if indexes is None:
+ self.indexes = [1, 2, 3]
+ else:
+ self.indexes = indexes
+
+ small_tile_object_list, small_tile_position_list = tile_generator.create_super_tile_list(root_tile_obj,
+ desired_zoom_level=desired_zoom_level)
+ self.small_tile_object_list = small_tile_object_list
+ self.small_tile_position_list = small_tile_position_list # this isn't used anywhere?
+
+ def __len__(self):
+ return len(self.small_tile_object_list)
+
+ def __getitem__(self, idx):
+ super_res_tile = tile_generator.create_super_tile_image(
+ self.small_tile_object_list[idx],
+ self.raster_location,
+ desired_zoom_level=self.super_res_zoom_level,
+ indexes=self.indexes,
+ tile_size=self.tile_size,
+ cog=self.cog
+ )
+ return super_res_tile, mercantile.xy_bounds(
+ *self.small_tile_object_list[idx])
diff --git a/ml_export/postprocessing/__init__.py b/ml_export/postprocessing/__init__.py
new file mode 100644
index 0000000..7b1f612
--- /dev/null
+++ b/ml_export/postprocessing/__init__.py
@@ -0,0 +1,45 @@
+import geopandas as gpd
+import rasterio
+import rasterio.features
+import rasterio.warp
+
+
+def create_geojson(raster_name, geojson_name, threshold=0.5):
+ """Binarize and vectorize a raster file.
+
+ This function takes an image mask with float values between ``0`` and ``1``
+ and converts it to a binary mask, which it then polygonizes. Use the
+ `threshold` argument to set the mimimum pixel intensity value that will
+ be included in the vectorized polygon outputs.
+
+ Arguments
+ ---------
+ raster_name : str
+ Path to the raster mask file to vectorize.
+ geojson_name : str
+ Desired output path for the geojson file.
+ threshold : float, optional
+ Minimum pixel intensity to include in the vectorized polygons. Defaults
+ to ``0.5``.
+
+ """
+ geomList = []
+ with rasterio.open(raster_name) as dataset:
+ # Read the dataset's valid data mask as a ndarray.
+ data = dataset.read()
+ data[data >= threshold] = 1
+ data[data < threshold] = 0
+ mask = data == 1
+ # Extract feature shapes and values from the array.
+ for geom, val in rasterio.features.shapes(data, mask=mask,
+ transform=dataset.transform):
+ # Transform shapes from the dataset's own coordinate
+ # reference system to CRS84 (EPSG:4326).
+ geom = rasterio.warp.transform_geom(
+ dataset.crs, 'EPSG:4326', geom, precision=6)
+ geomList.append(geom)
+ gdf = gpd.GeoDataFrame(geometry=geomList)
+ gdf.crs = {'init': 'epsg:4326'}
+ gdf.to_file(geojson_name, driver="GeoJSON")
+
+ return geojson_name
diff --git a/ml_export/stac_tools/__init__.py b/ml_export/stac_tools/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/ml_export/stac_tools/stac_catalog_base.py b/ml_export/stac_tools/stac_catalog_base.py
new file mode 100644
index 0000000..e69de29
diff --git a/ml_export/stac_tools/stac_collection_base.py b/ml_export/stac_tools/stac_collection_base.py
new file mode 100644
index 0000000..e06c571
--- /dev/null
+++ b/ml_export/stac_tools/stac_collection_base.py
@@ -0,0 +1,16 @@
+
+
+
+def create_stac_collection(stac_version="0.6.0",
+ id='taskm01',
+ title='Tasking Manager',
+ keywords = 'Machine-Learning, Remote-Sensing, computervision, ml',
+ version=0.1,
+ licesnse= 'CC-BY-SA-4.0',
+ providers= 'SpaceNet',
+ extent={},
+ temporal="null"):
+
+
+
+ pass
\ No newline at end of file
diff --git a/ml_export/stac_tools/stac_creator.py b/ml_export/stac_tools/stac_creator.py
new file mode 100644
index 0000000..e69de29
diff --git a/ml_export/stac_tools/stac_item_base.py b/ml_export/stac_tools/stac_item_base.py
new file mode 100644
index 0000000..819732b
--- /dev/null
+++ b/ml_export/stac_tools/stac_item_base.py
@@ -0,0 +1,134 @@
+import boto3
+import json
+import tempfile
+
+
+def create_stac_item(id,
+ geometry,
+ stac_properties,
+ stac_links,
+ stac_assets):
+ stac_base = {
+ "id": id,
+ "type": "Feature",
+ "geometry": geometry,
+ "properties": stac_properties,
+ "links": stac_links,
+ "assets": stac_assets
+ }
+
+ return stac_base
+
+
+def build_stac_properties(datetime,
+ ml_algorithm,
+ derived_from,
+ title):
+ stac_properties = {"datetime": datetime,
+ "title": title,
+ "ml:algorithm": ml_algorithm,
+ "derived_from": derived_from}
+
+ return stac_properties
+
+
+def build_stac_links(self_url,
+ derived_from_url,
+ root_catalog_url=None,
+ parent_catalog_url=None,
+ algorithm_collection_url=None):
+
+ stac_links = [
+ {"rel": "self",
+ "href": self_url},
+ {"rel": "derived_from",
+ "href": derived_from_url,
+ "title": "Inference Performed using this data"}
+ ]
+
+
+ if root_catalog_url is not None:
+ stac_links.extend(
+ [{"rel": "root",
+ "href": root_catalog_url,
+ "title": "Root Catalog"}]
+
+ )
+
+ if parent_catalog_url is not None:
+ stac_links.extend(
+ [{"rel": "parent",
+ "href": parent_catalog_url,
+ "title": "Parent Catalog"}]
+
+ )
+
+ if algorithm_collection_url is not None:
+ stac_links.extend(
+ [{"rel": "collection",
+ "href": algorithm_collection_url,
+ "title": "Algorithm Collection Details"}]
+
+ )
+
+ return stac_links
+
+def build_stac_assets(raster_url, raster_binary_thresh, raster_mask_binary_url=None, geojson_url=None,
+ thumbnail_url=None,
+ object_type="building",
+ product_details_url=None
+ ):
+
+ stac_assets = {"raster": {"href": raster_url,
+ "title": "Segmentation Output",
+ "binary_threshold": raster_binary_thresh,
+ "object_type": object_type,
+ "type": "image/vnd.stac.geotiff; cloud-optimized=true"
+ }
+ }
+
+
+ if raster_mask_binary_url is not None:
+ stac_assets["raster_mask"] = {"href": raster_mask_binary_url,
+ "title": "Binary Segmentation Output",
+ "object_type": object_type,
+ "type": "image/vnd.stac.geotiff; cloud-optimized=true"
+ }
+
+ if geojson_url is not None:
+ stac_assets["geojson"] = {"href": geojson_url,
+ "title": "Vector Representation of output",
+ "object_type": object_type,
+ "type": "application/geo+json "
+ }
+
+ if product_details_url is not None:
+ stac_assets["product_details"] = {"href": product_details_url,
+ "title": "Details about Algorithm used",
+ "type": "application/pdf"
+ }
+
+
+ return stac_assets
+
+
+def save_stac_item(stac_dict, stac_bucket, stac_key):
+
+
+ s3 = boto3.client('s3')
+ s3 = boto3.client('s3')
+
+ with tempfile.NamedTemporaryFile(mode='w+') as tf:
+ tfname = tf.name
+
+
+
+ json.dump(stac_dict, tf)
+ tf.seek(0)
+ tf.flush()
+ s3.upload_file(tfname, stac_bucket, stac_key)
+
+
+
+
+
diff --git a/ml_export/tile_aggregator.py b/ml_export/tile_aggregator.py
index e69de29..471ed9b 100644
--- a/ml_export/tile_aggregator.py
+++ b/ml_export/tile_aggregator.py
@@ -0,0 +1,271 @@
+import mercantile
+from rio_tiler import main
+import numpy as np
+from affine import Affine
+import rasterio
+from rasterio.profiles import DefaultGTiffProfile
+from ml_export import tile_generator
+from ml_export.tile_class_generator import TileClassDataset
+import logging
+from tqdm import tqdm
+from torch.utils.data import DataLoader
+
+logging.basicConfig(format='%(levelname)s:%(asctime)s %(message)s',
+ datefmt='%m/%d/%Y %I:%M:%S %p', level=logging.INFO)
+
+
+def calculate_webmercator_meters_per_pixel(zoom_level):
+ """Calculate webmercator pixel size based on zoom level."""
+ meters_per_pixel = 20037508 * 2 / 2 ** (8 + zoom_level)
+ return meters_per_pixel
+
+
+def calculate_zoom_tile_transform(zoom_level, tile_object,
+ tile_creation_buffer=250):
+ """Make Affine transform for GeoTIFF.
+
+ Arguments
+ ---------
+ zoom_level : int
+ Destination zoom level.
+ tile_object : :py:class:`mercantile.Tile`
+ Tile object to get GeoTIFF transform for.
+ tile_creation_buffer : int, optional
+ Buffer to add to the boundaries of the tile in pixel units. Defaults to
+ ``250``.
+
+ Returns
+ -------
+ transform, width, height tuple
+ transform : :py:class:`affine.Affine`
+ Affine transformation to convert GeoTIFF.
+ width : float
+ width of the tile in pixel units with `tile_creation_buffer` added to
+ both sides.
+ height : float
+ height of the tile in pixel units with `tile_creation_buffer` added to
+ both top and bottom.
+ """
+
+ # Calculate Pixel Size Based on desired end tile_level
+ meters_per_pixel = calculate_webmercator_meters_per_pixel(zoom_level)
+
+ # Calculate XY BBox in meters of tile_object
+ bbox_xy = mercantile.xy_bounds(tile_object)
+
+ transform = Affine(meters_per_pixel, 0,
+ bbox_xy.left - tile_creation_buffer, 0,
+ -meters_per_pixel, bbox_xy.top + tile_creation_buffer)
+ height = int((bbox_xy.top - bbox_xy.bottom) / meters_per_pixel)
+ width = int((bbox_xy.right - bbox_xy.left) / meters_per_pixel)
+
+ # print(height)
+ # print(width)
+
+ return transform, width + tile_creation_buffer * 2, height + tile_creation_buffer * 2
+
+
+def create_webmercator_cog_profile(tile_object, zoom_level, num_channels,
+ dtype=np.uint8, tile_creation_buffer=250):
+ """Create WebMercator cog_profile for output.
+
+ Uses :py:class:`rasterio.profiles.DefaultGTiffProfile` to generate a cloud-
+ optimized GeoTIFF profile for the imagery.
+
+ Arguments
+ ---------
+ tile_object : :py:class:`mercantile.Tile`
+ tile object to create COG profile for.
+ zoom_level : int
+ zoom level integer for the COG profile.
+ num_channels : int
+ Number of channels to indicate in the COG profile.
+ dtype : dtype, optional
+ Value format for imagery. Defaults to ``np.uint8``.
+ tile_creation_buffer : int, optional
+ Pixel size of the buffer to use when generating the
+ :py:class:`affine.Affine` object for the tile during COG profile
+ generation. Defaults to 250.
+
+ """
+
+ transform, width, height = calculate_zoom_tile_transform(
+ zoom_level=zoom_level, tile_object=tile_object,
+ tile_creation_buffer=tile_creation_buffer)
+ cog_profile = DefaultGTiffProfile(count=num_channels, height=height,
+ width=width, crs="EPSG:3857",
+ transform=transform, dtype=dtype)
+ cog_profile.update({"driver": "GTiff", "interleave": "pixel",
+ "tiled": True, "blockxsize": 512,
+ "blockysize": 512, "compress": "LZW"})
+
+ return cog_profile
+
+
+def build_cog_from_tiles(file_name, large_tile_object,
+ raster_tile_server_template,
+ desired_small_tile_zoom_level=17,
+ desired_super_res_tile_zoom_level=19, cog=False,
+ indexes=None, tile_size=256):
+ """Create a Cloud-Optimized GeoTIFF from tiles.
+
+ This function doesn't return anything, but writes a COG dataset to
+ `file_name`.
+
+ Arguments
+ ---------
+ file_name : str
+ Path to save the COG.
+ large_tile_object : :py:class:`mercantile.Tile`
+ Tile object to generate a COG from.
+ raster_tile_server_template : str
+ Path to a raster tileserver that can provide raster data for the new
+ COG.
+ desired_small_tile_zoom_level : int, optional
+ Small tile zoom level for the COG. Defaults to ``17``.
+ desired_super_res_tile_zoom_level : int, optional
+ Desired maximum resolution zoom level for the COG. Defaults to ``19``.
+ cog : bool, optional
+ Is the data source targeted by `raster_tile_server_template` a COG?
+ Defaults to ``False`` (no).
+ indexes : list of ints, optional
+ Indexes of RGB channels in the raster imagery. If not provided,
+ defaults to ``[1, 2, 3]`` for COGs, which is altered to ``[0, 1, 2]``
+ for non-COG image sources.
+ tile_size : int, optional
+ Length of a tile edge in pixels. Defaults to ``256``.
+
+ Returns
+ -------
+ Nothing
+
+ """
+
+ if indexes is None:
+ indexes = [1, 2, 3]
+ num_channels = len(indexes)
+ else:
+ num_channels = len(indexes)
+
+ large_cog_profile = create_webmercator_cog_profile(
+ large_tile_object, desired_super_res_tile_zoom_level,
+ num_channels=num_channels)
+
+ with rasterio.open(file_name, 'w', **large_cog_profile) as dst_dataset:
+
+ stol, _ = tile_generator.create_super_tile_list(
+ large_tile_object,
+ desired_zoom_level=desired_small_tile_zoom_level)
+
+ for small_tile_object in tqdm(stol):
+ super_res_tile = tile_generator.create_super_tile_image(
+ small_tile_object, raster_tile_server_template,
+ desired_zoom_level=desired_super_res_tile_zoom_level,
+ indexes=indexes, tile_size=tile_size, cog=cog)
+ left, bottom, right, top = mercantile.xy_bounds(*small_tile_object)
+ dst_window = rasterio.windows.from_bounds(
+ left, bottom, right, top,
+ transform=large_cog_profile['transform'])
+
+ dst_dataset.write(
+ super_res_tile.astype(large_cog_profile['dtype']),
+ window=dst_window)
+
+
+def build_cog_from_tiles_gen(file_name, large_tile_object,
+ raster_tile_server_template,
+ desired_small_tile_zoom_level=17,
+ desired_super_res_tile_zoom_level=19, cog=False,
+ indexes=None, tile_size=256, batch_size=4,
+ num_workers=4,
+ tile_dataset_class=TileClassDataset,
+ detection_module=None):
+ """Create a Cloud-Optimized GeoTIFF from a tile generator instance.
+
+ Arguments
+ ---------
+ file_name : str
+ Path to save the COG to.
+ large_tile_object : :py:class:`mercantile.Tile`
+ Tile object to generate a COG from.
+ raster_tile_server_template : str
+ Path to a raster tileserver that can provide raster data for the new
+ COG.
+ desired_small_tile_zoom_level : int, optional
+ Small tile zoom level for the COG. Defaults to ``17``.
+ desired_super_res_tile_zoom_level : int, optional
+ Desired maximum resolution zoom level for the COG. Defaults to ``19``.
+ cog : bool, optional
+ Is the data source targeted by `raster_tile_server_template` a COG?
+ Defaults to ``False`` (no).
+ indexes : list of ints, optional
+ Indexes of RGB channels in the raster imagery. If not provided,
+ defaults to ``[1, 2, 3]`` for COGs, which is altered to ``[0, 1, 2]``
+ for non-COG image sources.
+ tile_size : int, optional
+ Length of a tile edge in pixels. Defaults to ``256``.
+ batch_size : int, optional
+ Number of tiles to pull into a worker at a time. Defaults to ``4``.
+ num_workers : int, optional
+ Number of workers to create to build the COG at once. Defaults to
+ ``4``.
+ tile_dataset_class : `TileClassDataset` or `OpenCVClassDataset`, optional
+ Class of the dataset to use to generate the COG. Defaults to
+ `TileClassDataset`, in some cases it may be preferable to use an
+ `OpenCVClassDataset`.
+ detection_module : ``None`` or `MLModel` or `MLTFServing` inst., optional
+ During COG creation, inference can be run to create a ML output layer.
+ To do so, pass an instantiated model of type `MLModel` or `MLTFServing`
+ in this argument.
+
+ Returns
+ -------
+ file_name : str
+ Path to the generated COG.
+
+ """
+ if indexes is None:
+ indexes = [1, 2, 3]
+ num_channels = len(indexes)
+ else:
+ num_channels = len(indexes)
+
+ if detection_module is not None:
+ num_channels = detection_module.num_channels
+
+ large_cog_profile = create_webmercator_cog_profile(
+ large_tile_object, desired_super_res_tile_zoom_level,
+ num_channels=num_channels, dtype=np.float32)
+
+ with rasterio.open(file_name, 'w', **large_cog_profile) as dst_dataset:
+
+ tile_dataset = tile_dataset_class(
+ root_tile_obj=large_tile_object,
+ raster_location=raster_tile_server_template,
+ desired_zoom_level=desired_small_tile_zoom_level,
+ super_res_zoom_level=desired_super_res_tile_zoom_level, cog=cog,
+ tile_size=tile_size, indexes=indexes
+ )
+ # uses the PyTorch DataLoader to iterate over tiles in the dataset
+ tile_iterator = DataLoader(tile_dataset, batch_size=batch_size,
+ shuffle=False, num_workers=num_workers)
+
+ for super_res_tile_batch, small_tile_obj_batch in tqdm(tile_iterator):
+ super_res_tile_np = super_res_tile_batch.numpy()
+ if detection_module is not None:
+ super_res_tile_results = detection_module.predict_batch(
+ super_res_tile_batch.numpy())
+ else:
+ super_res_tile_results = super_res_tile_np
+ for super_res_tile, small_tile_object_tensor in zip(
+ super_res_tile_results, zip(small_tile_obj_batch[i].numpy()
+ for i in range(batch_size))):
+ left, bottom, right, top = small_tile_object_tensor
+
+ dst_window = rasterio.windows.from_bounds(
+ left, bottom, right, top,
+ transform=large_cog_profile['transform'])
+ dst_dataset.write(super_res_tile.astype(
+ large_cog_profile['dtype']), window=dst_window)
+
+ return file_name
diff --git a/ml_export/tile_class_generator.py b/ml_export/tile_class_generator.py
new file mode 100644
index 0000000..cb31a22
--- /dev/null
+++ b/ml_export/tile_class_generator.py
@@ -0,0 +1,71 @@
+"""tests ml_export.tile_class_generator"""
+import os
+import pytest
+## Note, for mac osx compatability import something from shapely.geometry before importing fiona or geopandas
+## https://github.com/Toblerity/Shapely/issues/553 * Import shapely before rasterio or fioana
+from shapely import geometry
+import mercantile
+from ml_export import tile_generator
+from torch.utils.data import Dataset
+
+# Ignore warnings
+import warnings
+warnings.filterwarnings("ignore")
+
+
+class TileClassDataset(Dataset):
+ """A tile dataset generator built around `torch.utils.data.Dataset`."""
+ def __init__(self, root_tile_obj, raster_location, desired_zoom_level,
+ super_res_zoom_level, cog=True, tile_size=256, indexes=None):
+ """Initialize a `TileClassDataset` instance.
+
+ Arguments
+ ---------
+ root_tile_obj :
+ raster_location :
+ desired_zoom_level : int
+ super_res_zoom_level : int
+ cog : bool, optional
+ Is the image a cloud-optimized GeoTIFF? Defaults to yes (``True``).
+ tile_size : int, optional
+ Length of a tile edge in pixels. Defaults to ``256``.
+ indexes : list of ints, optional
+ The indexes of the RGB channels in the rasterio dataset. If not
+ provided, defaults to ``[1, 2, 3]``, which is re-scaled to
+ ``[0, 1, 2]`` if ``cog == False``.
+
+ Returns
+ -------
+ An instance of `TileClassDataset` with the super-resolved tile
+ ``mercantile.tile``s and tile indices defined for feeding into a model.
+
+ """
+ self.root_tile_obj = root_tile_obj
+ self.desired_zoom_level = desired_zoom_level
+ self.super_res_zoom_level = super_res_zoom_level
+ self.raster_location = raster_location
+ self.cog = cog
+ self.tile_size = tile_size
+
+ if indexes is None:
+ self.indexes = [1, 2, 3]
+ else:
+ self.indexes = indexes
+
+ stol, stpl = tile_generator.create_super_tile_list(
+ root_tile_obj, desired_zoom_level=desired_zoom_level)
+ self.small_tile_object_list = stol
+ self.small_tile_position_list = stpl
+
+ def __len__(self):
+ return len(self.small_tile_object_list)
+
+ def __getitem__(self, idx):
+ """Get a single ``(mercantile.tile, mercantile.xy_bounds)`` pair. """
+ super_res_tile = tile_generator.create_super_tile_image(
+ self.small_tile_object_list[idx], self.raster_location,
+ desired_zoom_level=self.super_res_zoom_level, indexes=self.indexes,
+ tile_size=self.tile_size, cog=self.cog)
+
+ return super_res_tile, mercantile.xy_bounds(
+ *self.small_tile_object_list[idx])
diff --git a/ml_export/tile_generator.py b/ml_export/tile_generator.py
index eae2cb1..ff2e477 100644
--- a/ml_export/tile_generator.py
+++ b/ml_export/tile_generator.py
@@ -3,23 +3,46 @@
from rio_tiler import main
import numpy as np
import logging
+import requests
+from PIL import Image
+from io import BytesIO
+import cv2
-logging.basicConfig(format='%(levelname)s:%(asctime)s %(message)s', datefmt='%m/%d/%Y %I:%M:%S %p', level=logging.INFO)
+logging.basicConfig(format='%(levelname)s:%(asctime)s %(message)s',
+ datefmt='%m/%d/%Y %I:%M:%S %p', level=logging.INFO)
-def get_tile_list(geom,
- zoom=17):
+
+def get_tile_from_tms(html_template, tile_obj, no_data=0):
+# html_template = "https://14ffxwyw5l.execute-api.us-east-1.amazonaws.com/production/tiles/{z}/{x}/{y}.jpg?url=s3://spacenet-dataset/AOI_2_Vegas/srcData/rasterData/AOI_2_Vegas_MUL-PanSharpen_Cloud.tif&rgb=5,3,2&linearStretch=true&band1=5&band2=7"
+ if True: #try: # ermagerd
+ r = requests.get(html_template.format(x=tile_obj.x, y=tile_obj.y,
+ z=tile_obj.z), stream=True)
+ if r.status_code == 200:
+ image = np.array(Image.open(BytesIO(r.content)))
+ else:
+ image = np.full((256, 256, 3), fill_value=no_data)
+
+ #except:
+ # image = np.full((256, 256, 3), fill_value=no_data)
+ # logging.error("timeout: {html}".format(html=html_template.format(x=tile_obj.x, y=tile_obj.y, z=tile_obj.z)))
+ logging.debug(html_template.format(x=tile_obj.x, y=tile_obj.y,
+ z=tile_obj.z))
+ return image
+
+
+def get_tile_list(geom, zoom=17):
"""Generate the Tile List for The Tasking List
- Parameters
- ----------
+ Arguments
+ ---------
geom: shapely geometry of area.
zoom : int Zoom Level for Tiles
One or more zoom levels.
- Yields
- ------
+ Returns
+ -------
list of tiles that intersect with
"""
@@ -29,105 +52,209 @@ def get_tile_list(geom,
tile_list = []
for tile in tiles:
-
tile_geom = geometry.shape(mercantile.feature(tile)['geometry'])
-
if tile_geom.intersects(geom):
-
tile_list.append(tile)
return tile_list
-def create_super_tile_list(tile_object, zoom_level=2):
-
- """Generate the Tile List for The Tasking List
+def create_super_tile_list(tile_object, desired_zoom_level=19):
+ ## TODO Implement Stopping at desired zoom_level
+ """Generate the Tile List for The Tasking List.
Parameters
----------
tile_object: mercantile tile object
-
-
- zoom_level : int Zoom Level for Tiles
- One or more zoom levels to superres.
+ desired_zoom_level : int
+ Zoom Level For interior tiles ie This object should be built of z19
+ tiles.
Returns
- ------
- tile_object_list: list of tile objects to gather
- tile_position_list: list of relative tile position
- """
+ -------
+ tile_object_list: list of tile objects to gather at ``desired_zoom_level``.
+ tile_position_list: list of relative tile position southwest corner idxs.
+ """
+ # initialize relative tile positions for later subsetting
rel_tile_pos = np.asarray([(0, 0), (0, 1), (1, 1), (1, 0)])
-
+ # initialize tile_object_list and tile_position_list for later splitting
tile_object_list = [tile_object]
tile_position_list = [(0, 0)]
- for zoom in range(zoom_level):
+ # use mercantile.children to iteratively increase zoom levels,
+ # splitting tiles as you go. As it stands now, this re-creates the
+ # tile_object_list every time; this tile object is just an (x, y, z) tuple
+ # that defines the southwest corner of the tile in web mercator coords
+ # as well as the zoom level.
+ while tile_object_list[0].z < desired_zoom_level:
+ # initialize tile list and tile positions for next iteration
child_tile_list = []
child_tile_position = []
for tile, tile_pos in zip(tile_object_list, tile_position_list):
-
+ # incrementally grows the child lists. I checked
+ # child_tile_position additions and they work. -NW
tile_pos_np = np.asarray(tile_pos)
- print(tile_pos_np)
- print(tile_pos_np*2+rel_tile_pos)
-
child_tile_list.extend(mercantile.children(tile))
child_tile_position.extend(tile_pos_np*2+rel_tile_pos)
-
tile_object_list = child_tile_list
tile_position_list = child_tile_position
- print(child_tile_position)
return tile_object_list, tile_position_list
-def create_super_tile_image(tile_object, address, zoom_level=2, indexes=None, tile_size=256):
+def create_super_tile_image(tile_object, address, desired_zoom_level=19,
+ indexes=None, tile_size=256, cog=True):
+ """Generate the Tile List for The Tasking List.
- """Generate the Tile List for The Tasking List
+ This is a wrapper function for `create_super_tile_image_cog` and
+ `create_super_tile_image_tms` that selects one or the other based on
+ the ``cog`` argument.
Parameters
----------
tile_object: mercantile tile object
- address: COG location
- zoom_level : int Zoom Level for Tiles
- One or more zoom levels.
- indexes: List of indexes for address. This is incase it is more than 3-bands
- tile_size: int tile_size for query. Standard is 256, 256
+ address: str
+ COG location (path or URL)
+ desired_zoom_level : int, optional
+ Zoom Level For interior tiles ie This object should be built of z19
+ tiles.
+ indexes: list, optional
+ List of indexes for address. This is incase it is more than 3-bands
+ tile_size: int
+ tile edge length for query. Defaults to 256.
+ Returns
+ ------
+ super_res_tile: np.array
+ np.array of shape
+ (len(indexes,(2**zoom_level)*tile_size,(2**zoom_level)*tile_size)
+ """
+
+ if cog:
+ return create_super_tile_image_cog(
+ tile_object, address, desired_zoom_level=desired_zoom_level,
+ indexes=indexes, tile_size=tile_size)
+ else:
+ return create_super_tile_image_tms(
+ tile_object, address, desired_zoom_level=desired_zoom_level,
+ indexes=indexes, tile_size=tile_size)
+
+
+def create_super_tile_image_cog(tile_object, address, desired_zoom_level=19,
+ indexes=None, tile_size=256):
+
+ """Generate the Tile List for The Tasking List
+
+ Arguments
+ ---------
+ tile_object : :py:class:`mercantile.Tile`
+ address : str
+ COG location
+ desired_zoom_level : int, optional
+ Zoom Level For interior tiles ie This object should be built of z19
+ tiles.
+ indexes : list, optional
+ Indexes for image if it is comprised of >3 bands.
+ tile_size : int
+ tile edge length for query. Defaults to 256.
Returns
------
- super_restile: returns numpy array of size (len(indexes,(2**zoom_level)*tile_size,(2**zoom_level)*tile_size)
+ super_res_tile: np.array
+ np.array of shape
+ ``(len(indexes,(2**zoom_level)*tile_size,(2**zoom_level)*tile_size)``
"""
if indexes is None:
indexes = [1, 2, 3]
-
- tile_object_list, tile_position_list = create_super_tile_list(tile_object, zoom_level=2)
-
- super_restile = np.zeros(
- (len(indexes), (2 ** zoom_level) * tile_size, (2 ** zoom_level) * tile_size),
+ tile_object_list, tile_position_list = create_super_tile_list(
+ tile_object, desired_zoom_level=desired_zoom_level)
+ zoom_level = tile_object_list[0].z - tile_object.z
+ # prepare mega-array to hold all "super-res" (high-zoom) tiles
+ super_tile_size = int((2 ** zoom_level) * tile_size) # edge length
+ # initialize array as zeros
+ super_res_tile = np.zeros(
+ (len(indexes), super_tile_size, super_tile_size),
dtype=float
- )
-
- for tile_coords, (tilePlace_x, tilePlace_y) in zip(tile_object_list, tile_position_list):
+ )
+ for tile_coords, (tilePlace_x, tilePlace_y) in zip(tile_object_list,
+ tile_position_list):
+ # get current tile's indices in super_res_tile
tile_place_calc = [
tilePlace_x*tile_size,
(tilePlace_x+1)*tile_size,
tilePlace_y*tile_size,
(tilePlace_y+1)*tile_size
]
-
- # print
logging.debug(tile_place_calc)
+ # main in next line from rio_tiler
+ # uses rasterio.io.DatasetReader to read in imagery from address
+ # and subsets desired region using tile_coords and a vrt
+ tmp_tile, _ = main.tile(address, tile_coords.x, tile_coords.y,
+ tile_coords.z, indexes=indexes)
+ super_res_tile[:, tile_place_calc[0]:tile_place_calc[1],
+ tile_place_calc[2]:tile_place_calc[3]] = tmp_tile
+
+ return super_res_tile
- tmp_tile, mask = main.tile(address,
- tile_coords.x,
- tile_coords.y,
- tile_coords.z
- )
- super_restile[:, tile_place_calc[0]:tile_place_calc[1], tile_place_calc[2]:tile_place_calc[3]] = tmp_tile
-
- return super_restile
+def create_super_tile_image_tms(tile_object, html_template,
+ desired_zoom_level=19, indexes=None,
+ tile_size=256):
+ """Generate the Tile List for The Tasking List
+
+ Parameters
+ ----------
+ tile_object: mercantile tile object
+ html_template: str
+ path to the imagery file (non-COG)
+ desired_zoom_level : int, optional
+ Zoom Level For interior tiles ie This object should be built of z19
+ tiles.
+ indexes: list, optional
+ List of indexes for address. This is incase it is more than 3-bands.
+ tile_size: int, optional
+ tile edge length for query. Defaults to 256.
+
+ Returns
+ ------
+ super_res_tile: np.array
+ np.array of shape
+ (len(indexes,(2**zoom_level)*tile_size,(2**zoom_level)*tile_size)
+ """
+ # see create_super_tile_image_cog for notes on how these first lines work
+ if indexes is None:
+ indexes = [1, 2, 3]
+ # Shift indexes to be zero-based like all systems should always be
+ # YES I'M TALKING TO YOU RASTERIO ET AL
+ indexes = list(np.asarray(indexes)-1)
+ tile_object_list, tile_position_list = create_super_tile_list(
+ tile_object, desired_zoom_level=desired_zoom_level)
+ zoom_level = tile_object_list[0].z - tile_object.z
+ super_tile_size = int((2 ** zoom_level) * tile_size)
+ super_res_tile = np.zeros((len(indexes), super_tile_size, super_tile_size),
+ dtype=float)
+
+ for tile_coords, (tilePlace_x, tilePlace_y) in zip(tile_object_list,
+ tile_position_list):
+ tile_place_calc = [
+ tilePlace_x * tile_size,
+ (tilePlace_x + 1) * tile_size,
+ tilePlace_y * tile_size,
+ (tilePlace_y + 1) * tile_size
+ ]
+ logging.debug(tile_place_calc)
+ tmp_tile = get_tile_from_tms(html_template, tile_coords)
+ if tmp_tile.shape[0] != tile_size:
+ tmp_tile = cv2.resize(tmp_tile, (tile_size, tile_size),
+ interpolation=cv2.INTER_CUBIC)
+ if tmp_tile.shape[2] > len(indexes):
+ tmp_tile = tmp_tile[:, :, indexes]
+ super_res_tile[:,
+ tile_place_calc[0]:tile_place_calc[1],
+ tile_place_calc[2]:tile_place_calc[3]
+ ] = np.moveaxis(tmp_tile, 2, 0)
+
+ return super_res_tile
diff --git a/ml_export/tm_interface.py b/ml_export/tm_interface.py
new file mode 100644
index 0000000..217b7cf
--- /dev/null
+++ b/ml_export/tm_interface.py
@@ -0,0 +1,36 @@
+from shapely import geometry
+import logging
+import requests
+
+logging.basicConfig(format='%(levelname)s:%(asctime)s %(message)s',
+ datefmt='%m/%d/%Y %I:%M:%S %p', level=logging.INFO)
+
+
+def get_task_info(
+ taskid,
+ tasking_manager_api_endpoint='https://tasks.hotosm.org/api/v1'):
+ """Get task metadata from the tasking manager API."""
+ r = requests.get('{}/project/{}?as_file=false'.format(
+ tasking_manager_api_endpoint, taskid))
+ task_dict = r.json()
+ return task_dict
+
+
+def get_task_area_from_task_dict(task_dict):
+ """Get AOI geometry as a shapely.geometry.shape from a TM task dict."""
+ aoi_geom = geometry.geo.asShape(task_dict['areaOfInterest'])
+ return aoi_geom
+
+
+def get_task_area_from_id(
+ taskid,
+ tasking_manager_api_endpoint='https://tasks.hotosm.org/api/v1'):
+ """Get AOI geometry from a task ID using the Tasking Manager API.
+
+ Wraps `get_task_info` and `get_task_area_from_task_dict`.
+
+ """
+ task_dict = get_task_info(
+ taskid, tasking_manager_api_endpoint=tasking_manager_api_endpoint)
+ aoi_geom = get_task_area_from_task_dict(task_dict=task_dict)
+ return aoi_geom
diff --git a/ml_export/utils.py b/ml_export/utils.py
index ce5cb5f..eaef742 100644
--- a/ml_export/utils.py
+++ b/ml_export/utils.py
@@ -1 +1,58 @@
-py
\ No newline at end of file
+import rasterio
+from rasterio.enums import Resampling
+import boto3
+import json
+
+
+# create overviews (low-res versions of dataset to speed rendering)
+def create_overview(file_name, factors=None):
+ """Create low-resolution overviews of file for quick rendering.
+
+ Arguments
+ ---------
+ file_name : str
+ File to be rendered.
+ factors : list of ints, optional
+ Degrees of downsampling for overviews. Defaults to [2, 4, 8, 16] if
+ not provided.
+
+ Returns
+ -------
+ file_name : str
+ The filename passed to `create_overview`. The overviews are saved
+ within the file.
+
+ """
+ if factors is None:
+ factors = [2, 4, 8, 16]
+
+ with rasterio.open(file_name, 'r+') as dst:
+ dst.build_overviews(factors, Resampling.average)
+ dst.update_tags(ns='rio_overview', resampling='average')
+ dst.update_tags(ns='OVR_RESAMPLING_ALG', resampling='average')
+ dst.close()
+
+ return file_name
+
+
+def build_s3_http(bucket_name, key, region='us-east-1'):
+ """Build URL to S3 bucket."""
+ http_loc = "http://{bucket_name}.s3.amazonaws.com/{key}".format(
+ bucket_name=bucket_name, key=key)
+ return http_loc
+
+
+def upload_to_s3(file_name, bucket_name, key):
+ """Upload file to S3 bucket. Returns URL to the bucket."""
+ s3 = boto3.client('s3')
+ s3.upload_file(file_name, bucket_name, key)
+ return build_s3_http(bucket_name, key)
+
+
+def create_stac_item(s3_path, raster_src, api_location):
+ """Create a STAC .json for an ML inference output stored on S3."""
+ s3_dict = {"raster_inference": s3_path,
+ "raster_source": raster_src,
+ "ml_api_location": api_location
+ }
+ return json.dumps(s3_dict)
diff --git a/notebooks/Write_Tile_To_COG.ipynb b/notebooks/Write_Tile_To_COG.ipynb
new file mode 100644
index 0000000..e4f818c
--- /dev/null
+++ b/notebooks/Write_Tile_To_COG.ipynb
@@ -0,0 +1,156 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Write tiles to COG Experimentation"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Define Raster Tile Template"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "\"\"\"tests ml_export.tile_generator.base\"\"\"\n",
+ "\n",
+ "import os\n",
+ "import pytest\n",
+ "## Note, for mac osx compatability import something from shapely.geometry before importing fiona or geopandas\n",
+ "## https://github.com/Toblerity/Shapely/issues/553 * Import shapely before rasterio or fioana\n",
+ "from shapely import geometry\n",
+ "import mercantile\n",
+ "from rio_tiler import main\n",
+ "import numpy as np\n",
+ "from ml_export import tile_generator, tile_aggregator\n",
+ "import rasterio\n",
+ "from ml_export.tile_class_generator import TileClassDataset as TDC\n",
+ "from ml_export.ml_tools.mlbase import ml_tf_serving\n",
+ "%load_ext autoreload\n",
+ "%autoreload 2\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "## Define Example Geometry\n",
+ "\n",
+ "tile_obj = mercantile.tile(39.299515932798386, -6.080908028740757 , 12)\n",
+ "\n",
+ "geom = geometry.box(-115.24, 36.1, -115.2, 36.2)\n",
+ "zoom_level = 12\n",
+ "\n",
+ "large_tile_object_list = tile_generator.get_tile_list(geom, zoom=zoom_level)\n",
+ "print(\"{} z{} Tiles identified\".format(len(large_tile_object_list), zoom_level))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "%%time\n",
+ "import os\n",
+ "access_token = os.getenv('MAPBOX_ACCESS_TOKEN')\n",
+ "print(access_token)\n",
+ "raster_tile_server_template = \"https://a.tiles.mapbox.com/v4/mapbox.satellite/{z}/{x}/{y}.jpg?access_token=\"+access_token\n",
+ "file_name = \"/Users/dlindenbaum/cosmiQGit/ml-export-tool/tests/fixtures/my-bucket/spacenet_test/vegas_test_inf_1.tiff\"\n",
+ "api_location= 'http://localhost:8501/v1/models/looking_glass_export:predict'\n",
+ "api_location = 'http://gputest01.dev.labs.internal:8501/v1/models/looking_glass_export:predict'\n",
+ "large_tile_object = mercantile.tile(-115.24, 36.1986, 14) #las vegas\n",
+ "small_tile_zoom=18\n",
+ "super_res_tile_zoom = 18\n",
+ "mltf_obj = ml_tf_serving(api_location=api_location, output_num_channels=1)\n",
+ "tile_aggregator.build_cog_from_tiles_gen(file_name,\n",
+ " large_tile_object,\n",
+ " raster_tile_server_template,\n",
+ " desired_small_tile_zoom_level=small_tile_zoom,\n",
+ " desired_super_res_tile_zoom_level=super_res_tile_zoom,\n",
+ " cog=False,\n",
+ " indexes=None,\n",
+ " tile_size=256,\n",
+ " batch_size=5,\n",
+ " num_workers=4,\n",
+ " tile_dataset_class=TDC,\n",
+ " detection_module=mltf_obj\n",
+ " )"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "%%time\n",
+ "access_token = \"pk.eyJ1IjoiZGF2aWRsaW5kZW5iYXVtIiwiYSI6ImNqb2QxbGQxbzB6amszd3J3bGV0ODJ4ODkifQ.yOQGasKWIF4sot6en8z8Eg\"\n",
+ "raster_tile_server_template = \"https://a.tiles.mapbox.com/v4/mapbox.satellite/{z}/{x}/{y}.jpg?access_token=\"+access_token\n",
+ "file_name = \"/Users/dlindenbaum/cosmiQGit/ml-export-tool/tests/fixtures/my-bucket/spacenet_test/vegas_test.tiff\"\n",
+ "\n",
+ "large_tile_object = mercantile.tile(-115.24, 36.1986, 12) #las vegas\n",
+ "small_tile_zoom=18\n",
+ "super_res_tile_zoom = 18\n",
+ "\n",
+ "tile_aggregator.build_cog_from_tiles_gen(file_name,\n",
+ " large_tile_object,\n",
+ " raster_tile_server_template,\n",
+ " desired_small_tile_zoom_level=small_tile_zoom,\n",
+ " desired_super_res_tile_zoom_level=super_res_tile_zoom,\n",
+ " cog=False,\n",
+ " indexes=None,\n",
+ " tile_size=256,\n",
+ " batch_size=4,\n",
+ " num_workers=4,\n",
+ " tile_dataset_class=TDC\n",
+ " )"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.6.6"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 2
+}
diff --git a/nw_notes.md b/nw_notes.md
new file mode 100644
index 0000000..2c1664b
--- /dev/null
+++ b/nw_notes.md
@@ -0,0 +1,59 @@
+## Notes on `ml_export/ml_tools/mlbase.py`
+This module appears to be intended for loading in ML models. It contains two classes:
+- `mlmodel`: Load in an .hdf5-formatted, trained model file and perform inference. Methods:
+ - `init`: initialize logging and run `self.load_model_dict` to load in the model.
+ - `load_model_dict`: Load model into memory based on the provided dict. The dict should contain 4 elements:
+ - `'model_file'`: The path to the .hdf5-formatted model
+ - `'model_description'`: A short text description of the model
+ - `'model_version'`
+ - `'model_speed'`: A numeric indication of the number of seconds it takes to evaluate a numpy array.
+ - All this function does is call `json.loads` on the `model_json_string` passed during `__init__`.
+ - `estimate_time` (uses self.model_dict['model_speed'] and an argument `tiles_length`)
+ - `predict`: Run inference, __TODO: not currently implemented__, returns a 4D array of shape `[None, 1, input_y, input_x]`
+ - `predict_batch`: takes a list of numpy arrays and (should) run them through `predict`. __TODO: Not currently implemented.__
+- `ml_tf_serving`
+ - essentially the same as `mlmodel` above. Only difference is that at this point, the method `predict_batch` is partially implemented.
+ - `predict_batch`: run prediction through multiple queries to the prediction API.
+ - Steps:
+ 1. It takes in a batch of tiles (called "super_res_tile_batch", which I think means they're higher-resolution than the input tile resolution passed by the user) and creates a list out of them
+ 2. Uses the `requests` library to post to the prediction API. __It sends a list of images as the `json` argument of `requests.post()`, which I think might not work?__
+ 3. It uses the return from the `requests.post()` call, which it looks like has an element called `'outputs'` that contains the predictions. It expects these to be 256x256 numpy arrays.
+ 4. After reshaping the array it returns these `image_preds`.
+
+## Notes on `ml_export/ml_tools/mlopencv.py`
+This module appears to be intended for creating Torch datasets for OpenCV models.
+- `mlopencv` function: I have no idea what this does.
+- `OpenCVClassDataset` class: subclass of `torch.utils.data.Dataset`
+ - Arguments:
+ - root_tile_obj :
+ - raster_location :
+ - desired_zoom_level :
+ - super_res_zoom_level :
+ - cog : bool, optional
+ - tile_size : int, optional
+ - indexes : list of ints, optional. Defines the indices of the channels in the image to use for model inference (I think?)
+ - Operations:
+ 1. uses `ml_export.tile_generator` to create a tile list from `root_tile_obj` at the desired zoom level. This produces two outputs, `small_tile_object_list` and `small_tile_position_list`.
+ - methods:
+ - `__getitem__`: Gets a tile image using `tile_generator.create_super_tile_image` at the super-resolved zoom level passed in `__init__`. Returns the tile i mage and its xy bounds obtained using `mercantile.xy_bounds`
+
+## Notes on `ml_export/tile_generator.py`
+- `get_tile_from_tms` function
+ - arguments:
+ - html_template : str, template URL to the TMS tileserver
+ - tile_obj : ?
+ - no_data : int, optional, value that represents missing data.
+ - operations:
+ 1. queries the tileserver to get the image object.
+ 2. loads the image object from the request response and reshapes the array.
+ 3. returns the image.
+- `get_tile_list` function
+ - see documentation in the file
+ - operations:
+ 1. creates `tiles` at desired zoom level using `mercantile.tiles`
+
+## Notes on `ml_export/tm_interface.py`
+- Implements API queries to get AOI geometry for a specific task from the TM API.
+
+## Notes on `ml_export/utils.py`
+- Utilities for generating overviews, managing S3 storage of imagery, and creating STAC items for inference outputs.
diff --git a/scripts/process_tile.py b/scripts/process_tile.py
new file mode 100644
index 0000000..00b0ef5
--- /dev/null
+++ b/scripts/process_tile.py
@@ -0,0 +1,93 @@
+import os
+import argparse
+from ml_export import tile_generator, tile_aggregator
+from ml_export.ml_tools.mlbase import ml_tf_serving
+from ml_export.tile_class_generator import TileClassDataset as TDC
+from ml_export import postprocessing as postproc
+from ml_export import utils
+# Load All Presets
+access_token = os.getenv('MAPBOX_ACCESS_TOKEN')
+raster_tile_server_template = "https://a.tiles.mapbox.com/v4/mapbox.satellite/{z}/{x}/{y}.jpg?access_token=" + access_token
+api_location = 'http://localhost:8501/v1/models/looking_glass_export:predict'
+mltf_obj = ml_tf_serving(api_location=api_location, output_num_channels=1)
+default_bucket = "s3://spacenet-dataset"
+small_tile_zoom_default = 18
+super_res_tile_zoom_default = 18
+
+# Process Tile into Inference
+
+def main():
+ parser = argparse.ArgumentParser(description='Process Tile for Building Content')
+ parser.add_argument('taskid', type=int,
+ help="TaskID to assign tile process to. This id is generated by HOT Tasking Manager")
+ parser.add_argument("--algorithm", type=str,
+ choices=['lookingglass', 'ternaus']
+ )
+ parser.add_argument('--summary_zoom_tile', type=str,
+ help="Summary Zoom Tile Level")
+
+ parser.add_argument("--geom", type=str,
+ help="Polygon in WKT Format for analysis of image")
+
+ args = parser.parse_args()
+ args_dict = vars(args)
+ args_dict['summary_zoom_tile']
+
+
+ large_tile_object_list = tile_generator.get_tile_list(geom, zoom=args_dict['summary_zoom_tile'])
+ print("{} z{} Tiles identified".format(len(large_tile_object_list), args_dict['summary_zoom_tile']))
+
+ file_name = ""
+
+ for large_tile_object in large_tile_object_list:
+
+ file_name = "Taskid{taskid}_{algo}_{zoom}_{x}_{y}.tif".format(taskid=args_dict["taskid"],
+ algo="lookingglass",
+ zoom=large_tile_object.z,
+ x=large_tile_object.x,
+ y=large_tile_object.y)
+ key_path = "Taskid{taskid}/{algo}/".format(taskid=args_dict["taskid"],
+ algo="lookingglass")
+
+ tile_aggregator.build_cog_from_tiles_gen(file_name,
+ large_tile_object,
+ raster_tile_server_template,
+ desired_small_tile_zoom_level=small_tile_zoom_default,
+ desired_super_res_tile_zoom_level=super_res_tile_zoom_default,
+ cog=False,
+ indexes=None,
+ tile_size=256,
+ batch_size=5,
+ num_workers=4,
+ tile_dataset_class=TDC,
+ detection_module=mltf_obj
+ )
+
+ geojson_name = file_name.replace('.tif', '.geojson')
+ postproc.create_geojson(file_name, geojson_name)
+
+ utils.upload_to_s3(file_name, bucket_name=default_bucket,
+ key=os.path.join(key_path, file_name))
+ utils.upload_to_s3(file_name, bucket_name=default_bucket,
+ key=os.path.join(key_path, geojson_name))
+
+
+
+ print(os.path.join(key_path, file_name))
+
+
+
+
+
+
+
+if __name__ == "__main__":
+ main()
+
+# Upload Inference to s3
+
+# Update StacItem
+
+# Update StacDataset
+
+# Update StacCatalog
diff --git a/setup.py b/setup.py
index 65550b5..588e8e5 100644
--- a/setup.py
+++ b/setup.py
@@ -16,7 +16,9 @@
readme = f.read()
# Runtime requirements.
-inst_reqs = ["rio-tiler", "shapely", "mercantile", "numpy"]
+inst_reqs = ["rio-tiler~=1.0rc2", "rasterio[s3]~=1.0.0", "shapely", "mercantile",
+ "numpy", "requests", "affine", "tqdm", "torchvision", "boto3",
+ "sat-stac"]
extra_reqs = {
'test': ['mock', 'pytest', 'pytest-cov', 'codecov']}
@@ -30,7 +32,6 @@
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.6',
- 'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: GIS'],
keywords='raster aws tiler gdal rasterio spacenet machinelearning hotosm cog',
author=u"David Lindenbaum",
diff --git a/tests/fixtures/my-bucket/example_tasks/5182?as_file=false b/tests/fixtures/my-bucket/example_tasks/5182?as_file=false
new file mode 100644
index 0000000..e6fe298
--- /dev/null
+++ b/tests/fixtures/my-bucket/example_tasks/5182?as_file=false
@@ -0,0 +1 @@
+{"projectId": 5182, "projectStatus": "PUBLISHED", "projectPriority": "URGENT", "areaOfInterest": {"type": "MultiPolygon", "coordinates": [[[[-13.9481532308929, 11.4011020566727], [-13.9586444553267, 11.3939239364045], [-13.9688280642246, 11.4077721084509], [-13.9536080920084, 11.4213257200433], [-13.9390461901911, 11.4704088927941], [-13.9991131176632, 11.526092819025], [-14.0307454683255, 11.5262824046], [-14.0444593155462, 11.5342726815038], [-14.0456492371539, 11.5505312021288], [-14.0632227694404, 11.5725663108476], [-14.0629900658011, 11.5916456048248], [-14.0510358756304, 11.6084756489737], [-14.0757402348368, 11.6437324126575], [-14.0378472637104, 11.6610524437443], [-13.998770710284, 11.6499438960262], [-13.9785667411141, 11.6531584292521], [-13.9463948589335, 11.6667305047667], [-13.9323562326891, 11.6898844915844], [-13.8834806988225, 11.6735000108583], [-13.8603336579214, 11.72338251107], [-13.8715634748257, 11.7239904888278], [-13.8756532103886, 11.7360297896292], [-13.8633817232329, 11.7568290794979], [-13.8437602179118, 11.7543776413105], [-13.829676043664, 11.7424734438799], [-13.8369573234774, 11.7256483677253], [-13.8273162059127, 11.7144699654391], [-13.7980518585322, 11.7229845981294], [-13.7999396972369, 11.6991499461563], [-13.7911940381108, 11.6955979414679], [-13.7610858229805, 11.6960747001306], [-13.7313162254633, 11.713900015175], [-13.7185733314559, 11.7131137643552], [-13.7249925201413, 11.7659574632501], [-13.7165694698938, 11.8133429431393], [-13.7253352391869, 11.8815588245026], [-13.7104376788598, 12.001320870224], [-13.7934194176599, 12.0279191315316], [-13.8115631952278, 12.0474853035815], [-13.8218124754334, 12.0761322183604], [-13.874552833351, 12.0964388172114], [-13.8949346131559, 12.1238978420249], [-13.944622264119, 12.1318198385249], [-13.9692232280337, 12.1760155558802], [-13.9687449969463, 12.194846791644], [-13.944069636033, 12.2091074710503], [-13.9255551788126, 12.2399200454095], [-13.8616218528001, 12.2475691358145], [-13.8711455887588, 12.272325516805], [-13.8673988219051, 12.2839345516107], [-13.8371705880089, 12.2845704875145], [-13.829398409242, 12.2625743783563], [-13.8133350108782, 12.2911997733823], [-13.8000485040873, 12.299328401673], [-13.7920182266552, 12.282933351907], [-13.8020540884142, 12.2553073791386], [-13.7772900538787, 12.2554374943514], [-13.7621000402252, 12.2802279882297], [-13.7243591096148, 12.2509691805001], [-13.7121621166423, 12.265704992821], [-13.6642720225259, 12.2605704411368], [-13.6612114607799, 12.2433691162276], [-13.6737833345027, 12.2344388636818], [-13.6612229233584, 12.2353890531068], [-13.6401921238334, 12.2599452318392], [-13.6026512573674, 12.2656227183282], [-13.5985466867452, 12.2870214317027], [-13.5778551924998, 12.3021093822454], [-13.5583955903644, 12.274084190047], [-13.5502413265011, 12.3003558060819], [-13.5351619458429, 12.3022211823015], [-13.5189806999379, 12.2813910806712], [-13.4969142708334, 12.2780553578035], [-13.4823624799396, 12.2668664589985], [-13.4829494829829, 12.2730595966044], [-13.5096194916808, 12.2877913853118], [-13.4965701719639, 12.3187949267542], [-13.4722934283663, 12.3115597823068], [-13.4608507918843, 12.281247571699], [-13.4507621458949, 12.2782552713913], [-13.4535639383284, 12.3011592907441], [-13.4199474599561, 12.3085072961703], [-13.4075173311383, 12.3296279966589], [-13.3979459448563, 12.330552681107], [-13.3865152596273, 12.3147103866573], [-13.3992722079592, 12.2941516490812], [-13.3803320747864, 12.3084782395734], [-13.3710529965945, 12.3075493613866], [-13.3644742954895, 12.2953404816725], [-13.3822106340376, 12.2739083029482], [-13.4118117477438, 12.269839754906], [-13.3959227063647, 12.2592245071161], [-13.3818250547845, 12.2351779707742], [-13.3467886819593, 12.2205456488659], [-13.3465090953718, 12.1711974432889], [-13.3576688643329, 12.1509674378867], [-13.3421463012205, 12.1465371190484], [-13.3321233058491, 12.1310800535217], [-13.3588019206936, 12.1090088344499], [-13.3496152315441, 12.0942104880822], [-13.3281164801675, 12.0974278114936], [-13.3313459940186, 12.0842306259236], [-13.3182332857062, 12.0630287976758], [-13.2893953942523, 12.0674706354859], [-13.312296027945, 12.0693016348974], [-13.3099010894782, 12.0994281959931], [-13.2825010979059, 12.099273573562], [-13.2560086037368, 12.0793884247163], [-13.2729883013258, 12.0385926462011], [-13.2526949096476, 12.033341877484], [-13.2508902472341, 12.0229340385125], [-13.2588995169538, 12.0133842547306], [-13.2793559830085, 12.0131620000029], [-13.2773982318669, 12.008113816692], [-13.2084033729926, 12.015094471319], [-13.1918359185684, 12.0103475408853], [-13.1945851698653, 12.0204633695624], [-13.1825475190396, 12.0327793137469], [-13.153475502018, 12.0405949385257], [-13.1344849477069, 12.0403692566229], [-13.1213315536571, 12.0294141704429], [-13.1139426770628, 12.0401615261084], [-13.0882535859792, 12.0453258378243], [-13.0750000171468, 12.0874146988527], [-13.0235486819618, 12.0930375434672], [-12.9822908514838, 12.0818956391649], [-12.9351565514772, 12.1053812967603], [-12.9022973753457, 12.1105179701561], [-12.8949684422684, 12.1348441497191], [-12.852739216346, 12.1645858072578], [-12.8108948751012, 12.1383555844457], [-12.815854710205, 12.1231454336148], [-12.803798395412, 12.0999019238861], [-12.8167885665233, 12.0623080701407], [-12.8276500631022, 12.0547551553171], [-12.8276329940602, 12.0303090358767], [-12.8189386672574, 12.0036887070324], [-12.8016428311705, 12.0031499238399], [-12.773978207835, 11.9835951483556], [-12.8080012633048, 11.9396589272833], [-12.7690405823666, 11.898969814279], [-12.7620660027872, 11.8568288203244], [-12.7708169826353, 11.8398290396544], [-12.8026437369886, 11.8303136422108], [-12.7987246421301, 11.7805041983885], [-12.7811497448524, 11.7563639025051], [-12.78684431746, 11.7216817138304], [-12.8162316022176, 11.705481603104], [-12.8162268506193, 11.6984249516754], [-12.8031893209353, 11.690243086081], [-12.78323378016, 11.6952100283899], [-12.7810920546672, 11.6750850199029], [-12.7685084776574, 11.6669786192035], [-12.7683058907946, 11.6505831663179], [-12.7528032738542, 11.6473292819384], [-12.7408893410958, 11.6307454911969], [-12.7291590902487, 11.6299939342424], [-12.7240252089823, 11.6214150208878], [-12.709307948189, 11.6294595887098], [-12.7028380599515, 11.6177578293543], [-12.7071316907277, 11.5955369971362], [-12.6900910634368, 11.5643722564459], [-12.7554485641886, 11.5251969697001], [-12.7641133285635, 11.4892949437503], [-12.7822034959502, 11.4845201798061], [-12.7889904111873, 11.4713105692399], [-12.8711296081883, 11.4365210644165], [-12.9012171828258, 11.3938572003402], [-12.9488176105204, 11.3717268806215], [-12.9655788584854, 11.3549938763205], [-12.9808913396196, 11.3327518232445], [-12.95973477033, 11.2917310553602], [-12.9867205555469, 11.2669165857926], [-12.9755107128395, 11.2148042546276], [-12.9955570758353, 11.1881717688055], [-13.039555655906, 11.1811610427973], [-13.0700784732071, 11.1861023508176], [-13.1037901382871, 11.1686096884976], [-13.1280364148493, 11.1748553881421], [-13.1323756769532, 11.1630661258975], [-13.1679213465221, 11.1452773847935], [-13.2162292035081, 11.1334909951098], [-13.1956875339866, 11.065213348789], [-13.2196459715209, 11.0556110754636], [-13.2419623589456, 11.0997559896136], [-13.2424563233077, 11.1436160343936], [-13.2642331370965, 11.1839546049467], [-13.2711465950261, 11.231464895657], [-13.2886734666089, 11.2790793537723], [-13.2814532215305, 11.3433355682113], [-13.3023830153641, 11.3470884159042], [-13.3497510791353, 11.3343773603484], [-13.4298268544673, 11.2888840381012], [-13.4498646464652, 11.2882424561884], [-13.4627696376591, 11.3116908653693], [-13.4378107877316, 11.3589467023293], [-13.4429321573959, 11.3729844628646], [-13.4875558059162, 11.3712170752578], [-13.5567648473808, 11.3821076049613], [-13.5795381390077, 11.3765459394581], [-13.5972874561212, 11.3544588841879], [-13.6389595239539, 11.3288804580971], [-13.690082106185, 11.3235372951378], [-13.7085077495069, 11.3342013964232], [-13.7429311053104, 11.3283010461024], [-13.8377513142105, 11.2885361884218], [-13.8648297611284, 11.3008097052411], [-13.8842503197653, 11.3475319585737], [-13.9263686809409, 11.3813892003157], [-13.9363396066961, 11.3770822363353], [-13.9481532308929, 11.4011020566727]]]]}, "tasks": {"type": "FeatureCollection", "features": [{"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 12.0608090562388], [-13.5791015600676, 12.0822958352314], [-13.5571289038216, 12.0822958352314], [-13.5571289038216, 12.0608090562388], [-13.5791015600676, 12.0608090562388]]]]}, "properties": {"taskId": 691, "taskX": 7574, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.3507967203771], [-13.6010742163137, 11.3723387901308], [-13.5791015600676, 11.3723387901308], [-13.5791015600676, 11.3507967203771], [-13.6010742163137, 11.3507967203771]]]]}, "properties": {"taskId": 614, "taskX": 7573, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.5230875048322], [-13.3813476538531, 11.5446164614097], [-13.359374997607, 11.5446164614097], [-13.359374997607, 11.5230875048322], [-13.3813476538531, 11.5230875048322]]]]}, "properties": {"taskId": 1086, "taskX": 7583, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.888853080877], [-12.8320312477014, 11.9103535536714], [-12.8100585914554, 11.9103535536714], [-12.8100585914554, 11.888853080877], [-12.8320312477014, 11.888853080877]]]]}, "properties": {"taskId": 2118, "taskX": 7608, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-14.040527341235, 11.6091934058879], [-14.040527341235, 11.6307157359267], [-14.0185546849889, 11.6307157359267], [-14.0185546849889, 11.6091934058879], [-14.040527341235, 11.6091934058879]]]]}, "properties": {"taskId": 16, "taskX": 7553, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.6307157359267], [-12.9199218726857, 11.652236402057], [-12.8979492164397, 11.652236402057], [-12.8979492164397, 11.6307157359267], [-12.9199218726857, 11.6307157359267]]]]}, "properties": {"taskId": 1969, "taskX": 7604, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9086914037586, 11.480024646527], [-13.9086914037586, 11.5015568988999], [-13.8867187475125, 11.5015568988999], [-13.8867187475125, 11.480024646527], [-13.9086914037586, 11.480024646527]]]]}, "properties": {"taskId": 98, "taskX": 7559, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.7167883879289], [-12.9418945289318, 11.7383023693636], [-12.9199218726857, 11.7383023693636], [-12.9199218726857, 11.7167883879289], [-12.9418945289318, 11.7167883879289]]]]}, "properties": {"taskId": 1938, "taskX": 7603, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.6737554013713], [-13.00781249767, 11.6952727309636], [-12.9858398414239, 11.6952727309636], [-12.9858398414239, 11.6737554013713], [-13.00781249767, 11.6737554013713]]]]}, "properties": {"taskId": 1824, "taskX": 7600, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 12.2326548348556], [-13.4912109350834, 12.2541277354958], [-13.4692382788373, 12.2541277354958], [-13.4692382788373, 12.2326548348556], [-13.4912109350834, 12.2326548348556]]]]}, "properties": {"taskId": 878, "taskX": 7578, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.8028342314634], [-13.1396484351464, 11.8243414817611], [-13.1176757789003, 11.8243414817611], [-13.1176757789003, 11.8028342314634], [-13.1396484351464, 11.8028342314634]]]]}, "properties": {"taskId": 1574, "taskX": 7594, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.7167883879289], [-13.5351562475755, 11.7383023693636], [-13.5131835913294, 11.7383023693636], [-13.5131835913294, 11.7167883879289], [-13.5351562475755, 11.7167883879289]]]]}, "properties": {"taskId": 763, "taskX": 7576, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.8243414817611], [-12.9418945289318, 11.8458470420268], [-12.9199218726857, 11.8458470420268], [-12.9199218726857, 11.8243414817611], [-12.9418945289318, 11.8243414817611]]]]}, "properties": {"taskId": 1943, "taskX": 7603, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8649902320705, 11.7490587308498], [-12.8540039039475, 11.7490587308498], [-12.8540039039475, 11.759814672365], [-12.8649902320705, 11.759814672365], [-12.8649902320705, 11.7490587308498]]]]}, "properties": {"taskId": 2226, "taskX": 15213, "taskY": 17461, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 12.0178303356471], [-13.6450195288058, 12.0393205554158], [-13.6230468725597, 12.0393205554158], [-13.6230468725597, 12.0178303356471], [-13.6450195288058, 12.0178303356471]]]]}, "properties": {"taskId": 558, "taskX": 7571, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8649902320705, 11.7383023693636], [-12.8540039039475, 11.7383023693636], [-12.8540039039475, 11.7490587308498], [-12.8649902320705, 11.7490587308498], [-12.8649902320705, 11.7383023693636]]]]}, "properties": {"taskId": 2225, "taskX": 15213, "taskY": 17460, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9086914037586, 11.4154180399237], [-13.9086914037586, 11.4369552141218], [-13.8867187475125, 11.4369552141218], [-13.8867187475125, 11.4154180399237], [-13.9086914037586, 11.4154180399237]]]]}, "properties": {"taskId": 95, "taskX": 7559, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9086914037586, 11.3723387901308], [-13.9086914037586, 11.3938792309534], [-13.8867187475125, 11.3938792309534], [-13.8867187475125, 11.3723387901308], [-13.9086914037586, 11.3723387901308]]]]}, "properties": {"taskId": 93, "taskX": 7559, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3923339819761, 11.6845142750643], [-13.3813476538531, 11.6845142750643], [-13.3813476538531, 11.6952727309636], [-13.3923339819761, 11.6952727309636], [-13.3923339819761, 11.6845142750643]]]]}, "properties": {"taskId": 2222, "taskX": 15165, "taskY": 17455, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 12.2970682906849], [-13.5791015600676, 12.3185359394895], [-13.5571289038216, 12.3185359394895], [-13.5571289038216, 12.2970682906849], [-13.5791015600676, 12.2970682906849]]]]}, "properties": {"taskId": 702, "taskX": 7574, "taskY": 8756, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.9103535536714], [-13.5571289038216, 11.9318523248542], [-13.5351562475755, 11.9318523248542], [-13.5351562475755, 11.9103535536714], [-13.5571289038216, 11.9103535536714]]]]}, "properties": {"taskId": 728, "taskX": 7575, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.8458470420268], [-13.2934570288688, 11.867350909364], [-13.2714843726227, 11.867350909364], [-13.2714843726227, 11.8458470420268], [-13.2934570288688, 11.8458470420268]]]]}, "properties": {"taskId": 1268, "taskX": 7587, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.9748447508181], [-13.6450195288058, 11.9963383998188], [-13.6230468725597, 11.9963383998188], [-13.6230468725597, 11.9748447508181], [-13.6450195288058, 11.9748447508181]]]]}, "properties": {"taskId": 556, "taskX": 7571, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.7383023693636], [-13.4252929663452, 11.759814672365], [-13.4033203100991, 11.759814672365], [-13.4033203100991, 11.7383023693636], [-13.4252929663452, 11.7383023693636]]]]}, "properties": {"taskId": 999, "taskX": 7581, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 12.0178303356471], [-12.8979492164397, 12.0393205554158], [-12.8759765601936, 12.0393205554158], [-12.8759765601936, 12.0178303356471], [-12.8979492164397, 12.0178303356471]]]]}, "properties": {"taskId": 2021, "taskX": 7605, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.9318523248542], [-12.8759765601936, 11.9533493915333], [-12.8540039039475, 11.9533493915333], [-12.8540039039475, 11.9318523248542], [-12.8759765601936, 11.9318523248542]]]]}, "properties": {"taskId": 2052, "taskX": 7606, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.9318523248542], [-13.5351562475755, 11.9533493915333], [-13.5131835913294, 11.9533493915333], [-13.5131835913294, 11.9318523248542], [-13.5351562475755, 11.9318523248542]]]]}, "properties": {"taskId": 773, "taskX": 7576, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.652236402057], [-13.5351562475755, 11.6737554013713], [-13.5131835913294, 11.6737554013713], [-13.5131835913294, 11.652236402057], [-13.5351562475755, 11.652236402057]]]]}, "properties": {"taskId": 760, "taskX": 7576, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.5661437657192], [-12.9638671851778, 11.5876694148488], [-12.9418945289318, 11.5876694148488], [-12.9418945289318, 11.5661437657192], [-12.9638671851778, 11.5661437657192]]]]}, "properties": {"taskId": 1897, "taskX": 7602, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.5876694148488], [-12.9199218726857, 11.6091934058879], [-12.8979492164397, 11.6091934058879], [-12.8979492164397, 11.5876694148488], [-12.9199218726857, 11.5876694148488]]]]}, "properties": {"taskId": 1967, "taskX": 7604, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.6737554013713], [-13.6230468725597, 11.6952727309636], [-13.6010742163137, 11.6952727309636], [-13.6010742163137, 11.6737554013713], [-13.6230468725597, 11.6737554013713]]]]}, "properties": {"taskId": 586, "taskX": 7572, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3923339819761, 11.6737554013713], [-13.3813476538531, 11.6737554013713], [-13.3813476538531, 11.6845142750643], [-13.3923339819761, 11.6845142750643], [-13.3923339819761, 11.6737554013713]]]]}, "properties": {"taskId": 2221, "taskX": 15165, "taskY": 17454, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.6845142750643], [-13.3923339819761, 11.6845142750643], [-13.3923339819761, 11.6952727309636], [-13.4033203100991, 11.6952727309636], [-13.4033203100991, 11.6845142750643]]]]}, "properties": {"taskId": 2220, "taskX": 15164, "taskY": 17455, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.6737554013713], [-13.3923339819761, 11.6737554013713], [-13.3923339819761, 11.6845142750643], [-13.4033203100991, 11.6845142750643], [-13.4033203100991, 11.6737554013713]]]]}, "properties": {"taskId": 2219, "taskX": 15164, "taskY": 17454, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.3723387901308], [-13.4252929663452, 11.3938792309534], [-13.4033203100991, 11.3938792309534], [-13.4033203100991, 11.3723387901308], [-13.4252929663452, 11.3723387901308]]]]}, "properties": {"taskId": 982, "taskX": 7581, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 12.1682256752432], [-13.7988281225283, 12.1897038018535], [-13.7768554662822, 12.1897038018535], [-13.7768554662822, 12.1682256752432], [-13.7988281225283, 12.1682256752432]]]]}, "properties": {"taskId": 275, "taskX": 7564, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.1568452732386], [-13.1616210913924, 11.1784018717349], [-13.1396484351464, 11.1784018717349], [-13.1396484351464, 11.1568452732386], [-13.1616210913924, 11.1568452732386]]]]}, "properties": {"taskId": 1502, "taskX": 7593, "taskY": 8703, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 12.1897038018535], [-13.5571289038216, 12.2111801893498], [-13.5351562475755, 12.2111801893498], [-13.5351562475755, 12.1897038018535], [-13.5571289038216, 12.1897038018535]]]]}, "properties": {"taskId": 741, "taskX": 7575, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.1784018717349], [-13.2714843726227, 11.1999568676412], [-13.2495117163767, 11.1999568676412], [-13.2495117163767, 11.1784018717349], [-13.2714843726227, 11.1784018717349]]]]}, "properties": {"taskId": 1282, "taskX": 7588, "taskY": 8704, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.1999568676412], [-13.2714843726227, 11.2215102580262], [-13.2495117163767, 11.2215102580262], [-13.2495117163767, 11.1999568676412], [-13.2714843726227, 11.1999568676412]]]]}, "properties": {"taskId": 1283, "taskX": 7588, "taskY": 8705, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 12.2541277354958], [-13.6889648412979, 12.2755988883965], [-13.6669921850519, 12.2755988883965], [-13.6669921850519, 12.2541277354958], [-13.6889648412979, 12.2541277354958]]]]}, "properties": {"taskId": 479, "taskX": 7569, "taskY": 8754, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 12.2541277354958], [-13.7548828100361, 12.2755988883965], [-13.7329101537901, 12.2755988883965], [-13.7329101537901, 12.2541277354958], [-13.7548828100361, 12.2541277354958]]]]}, "properties": {"taskId": 345, "taskX": 7566, "taskY": 8754, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 12.2755988883965], [-13.7768554662822, 12.2970682906849], [-13.7548828100361, 12.2970682906849], [-13.7548828100361, 12.2755988883965], [-13.7768554662822, 12.2755988883965]]]]}, "properties": {"taskId": 313, "taskX": 7565, "taskY": 8755, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.6737554013713], [-13.5571289038216, 11.6952727309636], [-13.5351562475755, 11.6952727309636], [-13.5351562475755, 11.6737554013713], [-13.5571289038216, 11.6737554013713]]]]}, "properties": {"taskId": 717, "taskX": 7575, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 12.1897038018535], [-13.4472656225912, 12.2111801893498], [-13.4252929663452, 12.2111801893498], [-13.4252929663452, 12.1897038018535], [-13.4472656225912, 12.1897038018535]]]]}, "properties": {"taskId": 972, "taskX": 7580, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 12.2970682906849], [-13.5131835913294, 12.3185359394895], [-13.4912109350834, 12.3185359394895], [-13.4912109350834, 12.2970682906849], [-13.5131835913294, 12.2970682906849]]]]}, "properties": {"taskId": 835, "taskX": 7577, "taskY": 8756, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.480024646527], [-13.2275390601306, 11.5015568988999], [-13.2055664038845, 11.5015568988999], [-13.2055664038845, 11.480024646527], [-13.2275390601306, 11.480024646527]]]]}, "properties": {"taskId": 1389, "taskX": 7590, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.2215102580262], [-13.2055664038845, 11.2430620399597], [-13.1835937476385, 11.2430620399597], [-13.1835937476385, 11.2215102580262], [-13.2055664038845, 11.2215102580262]]]]}, "properties": {"taskId": 1421, "taskX": 7591, "taskY": 8706, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.4584907506287], [-12.8979492164397, 11.480024646527], [-12.8759765601936, 11.480024646527], [-12.8759765601936, 11.4584907506287], [-12.8979492164397, 11.4584907506287]]]]}, "properties": {"taskId": 1995, "taskX": 7605, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.6952727309636], [-13.3374023413609, 11.7167883879289], [-13.3154296851149, 11.7167883879289], [-13.3154296851149, 11.6952727309636], [-13.3374023413609, 11.6952727309636]]]]}, "properties": {"taskId": 1183, "taskX": 7585, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.5446164614097], [-13.2934570288688, 11.5661437657192], [-13.2714843726227, 11.5661437657192], [-13.2714843726227, 11.5446164614097], [-13.2934570288688, 11.5446164614097]]]]}, "properties": {"taskId": 1254, "taskX": 7587, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.8243414817611], [-13.1176757789003, 11.8458470420268], [-13.0957031226542, 11.8458470420268], [-13.0957031226542, 11.8243414817611], [-13.1176757789003, 11.8243414817611]]]]}, "properties": {"taskId": 1617, "taskX": 7595, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.2430620399597], [-13.1396484351464, 11.2646122105126], [-13.1176757789003, 11.2646122105126], [-13.1176757789003, 11.2430620399597], [-13.1396484351464, 11.2430620399597]]]]}, "properties": {"taskId": 1548, "taskX": 7594, "taskY": 8707, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 12.1467458123965], [-13.4692382788373, 12.1682256752432], [-13.4472656225912, 12.1682256752432], [-13.4472656225912, 12.1467458123965], [-13.4692382788373, 12.1467458123965]]]]}, "properties": {"taskId": 922, "taskX": 7579, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2385253882536, 11.55538032028], [-13.2275390601306, 11.55538032028], [-13.2275390601306, 11.5661437657192], [-13.2385253882536, 11.5661437657192], [-13.2385253882536, 11.55538032028]]]]}, "properties": {"taskId": 2218, "taskX": 15179, "taskY": 17443, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2385253882536, 11.5446164614097], [-13.2275390601306, 11.5446164614097], [-13.2275390601306, 11.55538032028], [-13.2385253882536, 11.55538032028], [-13.2385253882536, 11.5446164614097]]]]}, "properties": {"taskId": 2217, "taskX": 15179, "taskY": 17442, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.55538032028], [-13.2385253882536, 11.55538032028], [-13.2385253882536, 11.5661437657192], [-13.2495117163767, 11.5661437657192], [-13.2495117163767, 11.55538032028]]]]}, "properties": {"taskId": 2216, "taskX": 15178, "taskY": 17443, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.5446164614097], [-13.2385253882536, 11.5446164614097], [-13.2385253882536, 11.55538032028], [-13.2495117163767, 11.55538032028], [-13.2495117163767, 11.5446164614097]]]]}, "properties": {"taskId": 2215, "taskX": 15178, "taskY": 17442, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.1784018717349], [-13.1835937476385, 11.1999568676412], [-13.1616210913924, 11.1999568676412], [-13.1616210913924, 11.1784018717349], [-13.1835937476385, 11.1784018717349]]]]}, "properties": {"taskId": 1461, "taskX": 7592, "taskY": 8704, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.3507967203771], [-13.2055664038845, 11.3723387901308], [-13.1835937476385, 11.3723387901308], [-13.1835937476385, 11.3507967203771], [-13.2055664038845, 11.3507967203771]]]]}, "properties": {"taskId": 1427, "taskX": 7591, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.5015568988999], [-13.2934570288688, 11.5230875048322], [-13.2714843726227, 11.5230875048322], [-13.2714843726227, 11.5015568988999], [-13.2934570288688, 11.5015568988999]]]]}, "properties": {"taskId": 1252, "taskX": 7587, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.5876694148488], [-13.2055664038845, 11.6091934058879], [-13.1835937476385, 11.6091934058879], [-13.1835937476385, 11.5876694148488], [-13.2055664038845, 11.5876694148488]]]]}, "properties": {"taskId": 1438, "taskX": 7591, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.867350909364], [-12.9418945289318, 11.888853080877], [-12.9199218726857, 11.888853080877], [-12.9199218726857, 11.867350909364], [-12.9418945289318, 11.867350909364]]]]}, "properties": {"taskId": 1945, "taskX": 7603, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.5230875048322], [-13.3154296851149, 11.5446164614097], [-13.2934570288688, 11.5446164614097], [-13.2934570288688, 11.5230875048322], [-13.3154296851149, 11.5230875048322]]]]}, "properties": {"taskId": 1212, "taskX": 7586, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.5230875048322], [-13.2934570288688, 11.5446164614097], [-13.2714843726227, 11.5446164614097], [-13.2714843726227, 11.5230875048322], [-13.2934570288688, 11.5230875048322]]]]}, "properties": {"taskId": 1253, "taskX": 7587, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.5661437657192], [-13.2934570288688, 11.5876694148488], [-13.2714843726227, 11.5876694148488], [-13.2714843726227, 11.5661437657192], [-13.2934570288688, 11.5661437657192]]]]}, "properties": {"taskId": 1255, "taskX": 7587, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2879638648073, 11.4961739900467], [-13.2824707007457, 11.4961739900467], [-13.2824707007457, 11.5015568988999], [-13.2879638648073, 11.5015568988999], [-13.2879638648073, 11.4961739900467]]]]}, "properties": {"taskId": 2214, "taskX": 30349, "taskY": 34875, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2879638648073, 11.4907909783363], [-13.2824707007457, 11.4907909783363], [-13.2824707007457, 11.4961739900467], [-13.2879638648073, 11.4961739900467], [-13.2879638648073, 11.4907909783363]]]]}, "properties": {"taskId": 2213, "taskX": 30349, "taskY": 34874, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.4961739900467], [-13.2879638648073, 11.4961739900467], [-13.2879638648073, 11.5015568988999], [-13.2934570288688, 11.5015568988999], [-13.2934570288688, 11.4961739900467]]]]}, "properties": {"taskId": 2212, "taskX": 30348, "taskY": 34875, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.4907909783363], [-13.2879638648073, 11.4907909783363], [-13.2879638648073, 11.4961739900467], [-13.2934570288688, 11.4961739900467], [-13.2934570288688, 11.4907909783363]]]]}, "properties": {"taskId": 2211, "taskX": 30348, "taskY": 34874, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2824707007457, 11.4907909783363], [-13.2714843726227, 11.4907909783363], [-13.2714843726227, 11.5015568988999], [-13.2824707007457, 11.5015568988999], [-13.2824707007457, 11.4907909783363]]]]}, "properties": {"taskId": 2210, "taskX": 15175, "taskY": 17437, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2824707007457, 11.480024646527], [-13.2714843726227, 11.480024646527], [-13.2714843726227, 11.4907909783363], [-13.2824707007457, 11.4907909783363], [-13.2824707007457, 11.480024646527]]]]}, "properties": {"taskId": 2209, "taskX": 15175, "taskY": 17436, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.480024646527], [-13.2824707007457, 11.480024646527], [-13.2824707007457, 11.4907909783363], [-13.2934570288688, 11.4907909783363], [-13.2934570288688, 11.480024646527]]]]}, "properties": {"taskId": 2207, "taskX": 15174, "taskY": 17436, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.7167883879289], [-12.8320312477014, 11.7383023693636], [-12.8100585914554, 11.7383023693636], [-12.8100585914554, 11.7167883879289], [-12.8320312477014, 11.7167883879289]]]]}, "properties": {"taskId": 2110, "taskX": 7608, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.9103535536714], [-13.4033203100991, 11.9318523248542], [-13.3813476538531, 11.9318523248542], [-13.3813476538531, 11.9103535536714], [-13.4033203100991, 11.9103535536714]]]]}, "properties": {"taskId": 1056, "taskX": 7582, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.9318523248542], [-13.5131835913294, 11.9533493915333], [-13.4912109350834, 11.9533493915333], [-13.4912109350834, 11.9318523248542], [-13.5131835913294, 11.9318523248542]]]]}, "properties": {"taskId": 818, "taskX": 7577, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.7383023693636], [-13.2275390601306, 11.759814672365], [-13.2055664038845, 11.759814672365], [-13.2055664038845, 11.7383023693636], [-13.2275390601306, 11.7383023693636]]]]}, "properties": {"taskId": 1401, "taskX": 7590, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 12.0822958352314], [-13.6230468725597, 12.10378088951], [-13.6010742163137, 12.10378088951], [-13.6010742163137, 12.0822958352314], [-13.6230468725597, 12.0822958352314]]]]}, "properties": {"taskId": 605, "taskX": 7572, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.3507967203771], [-13.2714843726227, 11.3723387901308], [-13.2495117163767, 11.3723387901308], [-13.2495117163767, 11.3507967203771], [-13.2714843726227, 11.3507967203771]]]]}, "properties": {"taskId": 1290, "taskX": 7588, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9086914037586, 12.2111801893498], [-13.9086914037586, 12.2326548348556], [-13.8867187475125, 12.2326548348556], [-13.8867187475125, 12.2111801893498], [-13.9086914037586, 12.2111801893498]]]]}, "properties": {"taskId": 113, "taskX": 7559, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 12.0178303356471], [-13.1835937476385, 12.0393205554158], [-13.1616210913924, 12.0393205554158], [-13.1616210913924, 12.0178303356471], [-13.1835937476385, 12.0178303356471]]]]}, "properties": {"taskId": 1500, "taskX": 7592, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.6737554013713], [-13.4472656225912, 11.6952727309636], [-13.4252929663452, 11.6952727309636], [-13.4252929663452, 11.6737554013713], [-13.4472656225912, 11.6737554013713]]]]}, "properties": {"taskId": 948, "taskX": 7580, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.4154180399237], [-13.3813476538531, 11.4369552141218], [-13.359374997607, 11.4369552141218], [-13.359374997607, 11.4154180399237], [-13.3813476538531, 11.4154180399237]]]]}, "properties": {"taskId": 1081, "taskX": 7583, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9306640600046, 12.2111801893498], [-13.9306640600046, 12.2326548348556], [-13.9086914037586, 12.2326548348556], [-13.9086914037586, 12.2111801893498], [-13.9306640600046, 12.2111801893498]]]]}, "properties": {"taskId": 89, "taskX": 7558, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.6307157359267], [-13.1396484351464, 11.652236402057], [-13.1176757789003, 11.652236402057], [-13.1176757789003, 11.6307157359267], [-13.1396484351464, 11.6307157359267]]]]}, "properties": {"taskId": 1566, "taskX": 7594, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.6307157359267], [-13.1176757789003, 11.652236402057], [-13.0957031226542, 11.652236402057], [-13.0957031226542, 11.6307157359267], [-13.1176757789003, 11.6307157359267]]]]}, "properties": {"taskId": 1608, "taskX": 7595, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.7813252940317], [-13.5571289038216, 11.8028342314634], [-13.5351562475755, 11.8028342314634], [-13.5351562475755, 11.7813252940317], [-13.5571289038216, 11.7813252940317]]]]}, "properties": {"taskId": 722, "taskX": 7575, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 11.6737554013713], [-13.7768554662822, 11.6952727309636], [-13.7548828100361, 11.6952727309636], [-13.7548828100361, 11.6737554013713], [-13.7768554662822, 11.6737554013713]]]]}, "properties": {"taskId": 298, "taskX": 7565, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.759814672365], [-13.3374023413609, 11.7813252940317], [-13.3154296851149, 11.7813252940317], [-13.3154296851149, 11.759814672365], [-13.3374023413609, 11.759814672365]]]]}, "properties": {"taskId": 1186, "taskX": 7585, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.1568452732386], [-13.1835937476385, 11.1784018717349], [-13.1616210913924, 11.1784018717349], [-13.1616210913924, 11.1568452732386], [-13.1835937476385, 11.1568452732386]]]]}, "properties": {"taskId": 1460, "taskX": 7592, "taskY": 8703, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.9103535536714], [-13.5791015600676, 11.9318523248542], [-13.5571289038216, 11.9318523248542], [-13.5571289038216, 11.9103535536714], [-13.5791015600676, 11.9103535536714]]]]}, "properties": {"taskId": 684, "taskX": 7574, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.7167883879289], [-13.5571289038216, 11.7383023693636], [-13.5351562475755, 11.7383023693636], [-13.5351562475755, 11.7167883879289], [-13.5571289038216, 11.7167883879289]]]]}, "properties": {"taskId": 719, "taskX": 7575, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.8243414817611], [-13.2934570288688, 11.8458470420268], [-13.2714843726227, 11.8458470420268], [-13.2714843726227, 11.8243414817611], [-13.2934570288688, 11.8243414817611]]]]}, "properties": {"taskId": 1267, "taskX": 7587, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.759814672365], [-13.4472656225912, 11.7813252940317], [-13.4252929663452, 11.7813252940317], [-13.4252929663452, 11.759814672365], [-13.4472656225912, 11.759814672365]]]]}, "properties": {"taskId": 952, "taskX": 7580, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.9103535536714], [-13.1616210913924, 11.9318523248542], [-13.1396484351464, 11.9318523248542], [-13.1396484351464, 11.9103535536714], [-13.1616210913924, 11.9103535536714]]]]}, "properties": {"taskId": 1537, "taskX": 7593, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.6952727309636], [-13.6669921850519, 11.7167883879289], [-13.6450195288058, 11.7167883879289], [-13.6450195288058, 11.6952727309636], [-13.6669921850519, 11.6952727309636]]]]}, "properties": {"taskId": 498, "taskX": 7570, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9306640600046, 12.1682256752432], [-13.9306640600046, 12.1897038018535], [-13.9086914037586, 12.1897038018535], [-13.9086914037586, 12.1682256752432], [-13.9306640600046, 12.1682256752432]]]]}, "properties": {"taskId": 87, "taskX": 7558, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.7383023693636], [-13.4472656225912, 11.759814672365], [-13.4252929663452, 11.759814672365], [-13.4252929663452, 11.7383023693636], [-13.4472656225912, 11.7383023693636]]]]}, "properties": {"taskId": 951, "taskX": 7580, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 11.3077077057662], [-13.8867187475125, 11.3292530246144], [-13.8647460912664, 11.3292530246144], [-13.8647460912664, 11.3077077057662], [-13.8867187475125, 11.3077077057662]]]]}, "properties": {"taskId": 116, "taskX": 7560, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.9318523248542], [-13.4033203100991, 11.9533493915333], [-13.3813476538531, 11.9533493915333], [-13.3813476538531, 11.9318523248542], [-13.4033203100991, 11.9318523248542]]]]}, "properties": {"taskId": 1057, "taskX": 7582, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.5446164614097], [-13.2055664038845, 11.5661437657192], [-13.1835937476385, 11.5661437657192], [-13.1835937476385, 11.5446164614097], [-13.2055664038845, 11.5446164614097]]]]}, "properties": {"taskId": 1436, "taskX": 7591, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 12.0178303356471], [-13.5791015600676, 12.0393205554158], [-13.5571289038216, 12.0393205554158], [-13.5571289038216, 12.0178303356471], [-13.5791015600676, 12.0178303356471]]]]}, "properties": {"taskId": 689, "taskX": 7574, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.480024646527], [-13.3813476538531, 11.5015568988999], [-13.359374997607, 11.5015568988999], [-13.359374997607, 11.480024646527], [-13.3813476538531, 11.480024646527]]]]}, "properties": {"taskId": 1084, "taskX": 7583, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 12.2111801893498], [-13.7988281225283, 12.2326548348556], [-13.7768554662822, 12.2326548348556], [-13.7768554662822, 12.2111801893498], [-13.7988281225283, 12.2111801893498]]]]}, "properties": {"taskId": 277, "taskX": 7564, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 12.10378088951], [-12.8759765601936, 12.1252642161921], [-12.8540039039475, 12.1252642161921], [-12.8540039039475, 12.10378088951], [-12.8759765601936, 12.10378088951]]]]}, "properties": {"taskId": 2060, "taskX": 7606, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.759814672365], [-13.5571289038216, 11.7813252940317], [-13.5351562475755, 11.7813252940317], [-13.5351562475755, 11.759814672365], [-13.5571289038216, 11.759814672365]]]]}, "properties": {"taskId": 721, "taskX": 7575, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.759814672365], [-13.5351562475755, 11.7813252940317], [-13.5131835913294, 11.7813252940317], [-13.5131835913294, 11.759814672365], [-13.5351562475755, 11.759814672365]]]]}, "properties": {"taskId": 765, "taskX": 7576, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.7813252940317], [-13.4252929663452, 11.8028342314634], [-13.4033203100991, 11.8028342314634], [-13.4033203100991, 11.7813252940317], [-13.4252929663452, 11.7813252940317]]]]}, "properties": {"taskId": 1001, "taskX": 7581, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.759814672365], [-13.4692382788373, 11.7813252940317], [-13.4472656225912, 11.7813252940317], [-13.4472656225912, 11.759814672365], [-13.4692382788373, 11.759814672365]]]]}, "properties": {"taskId": 904, "taskX": 7579, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.7383023693636], [-13.4692382788373, 11.759814672365], [-13.4472656225912, 11.759814672365], [-13.4472656225912, 11.7383023693636], [-13.4692382788373, 11.7383023693636]]]]}, "properties": {"taskId": 903, "taskX": 7579, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.5876694148488], [-13.4252929663452, 11.6091934058879], [-13.4033203100991, 11.6091934058879], [-13.4033203100991, 11.5876694148488], [-13.4252929663452, 11.5876694148488]]]]}, "properties": {"taskId": 992, "taskX": 7581, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.6091934058879], [-13.3154296851149, 11.6307157359267], [-13.2934570288688, 11.6307157359267], [-13.2934570288688, 11.6091934058879], [-13.3154296851149, 11.6091934058879]]]]}, "properties": {"taskId": 1216, "taskX": 7586, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.7167883879289], [-13.7329101537901, 11.7383023693636], [-13.710937497544, 11.7383023693636], [-13.710937497544, 11.7167883879289], [-13.7329101537901, 11.7167883879289]]]]}, "properties": {"taskId": 364, "taskX": 7567, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9748535133009, 11.5123224078533], [-12.9638671851778, 11.5123224078533], [-12.9638671851778, 11.5230875048322], [-12.9748535133009, 11.5230875048322], [-12.9748535133009, 11.5123224078533]]]]}, "properties": {"taskId": 2206, "taskX": 15203, "taskY": 17439, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9748535133009, 11.5015568988999], [-12.9638671851778, 11.5015568988999], [-12.9638671851778, 11.5123224078533], [-12.9748535133009, 11.5123224078533], [-12.9748535133009, 11.5015568988999]]]]}, "properties": {"taskId": 2205, "taskX": 15203, "taskY": 17438, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.5123224078533], [-12.9748535133009, 11.5123224078533], [-12.9748535133009, 11.5230875048322], [-12.9858398414239, 11.5230875048322], [-12.9858398414239, 11.5123224078533]]]]}, "properties": {"taskId": 2204, "taskX": 15202, "taskY": 17439, "taskZoom": 15, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.5015568988999], [-12.9748535133009, 11.5015568988999], [-12.9748535133009, 11.5123224078533], [-12.9858398414239, 11.5123224078533], [-12.9858398414239, 11.5015568988999]]]]}, "properties": {"taskId": 2203, "taskX": 15202, "taskY": 17438, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.6952727309636], [-13.2714843726227, 11.7167883879289], [-13.2495117163767, 11.7167883879289], [-13.2495117163767, 11.6952727309636], [-13.2714843726227, 11.6952727309636]]]]}, "properties": {"taskId": 1306, "taskX": 7588, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.7813252940317], [-13.2714843726227, 11.8028342314634], [-13.2495117163767, 11.8028342314634], [-13.2495117163767, 11.7813252940317], [-13.2714843726227, 11.7813252940317]]]]}, "properties": {"taskId": 1310, "taskX": 7588, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 12.2111801893498], [-13.5791015600676, 12.2326548348556], [-13.5571289038216, 12.2326548348556], [-13.5571289038216, 12.2111801893498], [-13.5791015600676, 12.2111801893498]]]]}, "properties": {"taskId": 698, "taskX": 7574, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.6091934058879], [-13.2934570288688, 11.6307157359267], [-13.2714843726227, 11.6307157359267], [-13.2714843726227, 11.6091934058879], [-13.2934570288688, 11.6091934058879]]]]}, "properties": {"taskId": 1257, "taskX": 7587, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 12.0608090562388], [-12.9638671851778, 12.0822958352314], [-12.9418945289318, 12.0822958352314], [-12.9418945289318, 12.0608090562388], [-12.9638671851778, 12.0608090562388]]]]}, "properties": {"taskId": 1920, "taskX": 7602, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 12.0393205554158], [-12.9638671851778, 12.0608090562388], [-12.9418945289318, 12.0608090562388], [-12.9418945289318, 12.0393205554158], [-12.9638671851778, 12.0393205554158]]]]}, "properties": {"taskId": 1919, "taskX": 7602, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 12.0608090562388], [-13.0957031226542, 12.0822958352314], [-13.0737304664082, 12.0822958352314], [-13.0737304664082, 12.0608090562388], [-13.0957031226542, 12.0608090562388]]]]}, "properties": {"taskId": 1670, "taskX": 7596, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 12.0822958352314], [-13.00781249767, 12.10378088951], [-12.9858398414239, 12.10378088951], [-12.9858398414239, 12.0822958352314], [-13.00781249767, 12.0822958352314]]]]}, "properties": {"taskId": 1843, "taskX": 7600, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 11.3507967203771], [-13.7548828100361, 11.3723387901308], [-13.7329101537901, 11.3723387901308], [-13.7329101537901, 11.3507967203771], [-13.7548828100361, 11.3507967203771]]]]}, "properties": {"taskId": 316, "taskX": 7566, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9086914037586, 11.5446164614097], [-13.9086914037586, 11.5661437657192], [-13.8867187475125, 11.5661437657192], [-13.8867187475125, 11.5446164614097], [-13.9086914037586, 11.5446164614097]]]]}, "properties": {"taskId": 101, "taskX": 7559, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 12.0822958352314], [-12.9638671851778, 12.10378088951], [-12.9418945289318, 12.10378088951], [-12.9418945289318, 12.0822958352314], [-12.9638671851778, 12.0822958352314]]]]}, "properties": {"taskId": 1921, "taskX": 7602, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.9963383998188], [-13.0957031226542, 12.0178303356471], [-13.0737304664082, 12.0178303356471], [-13.0737304664082, 11.9963383998188], [-13.0957031226542, 11.9963383998188]]]]}, "properties": {"taskId": 1667, "taskX": 7596, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 12.10378088951], [-12.9418945289318, 12.1252642161921], [-12.9199218726857, 12.1252642161921], [-12.9199218726857, 12.10378088951], [-12.9418945289318, 12.10378088951]]]]}, "properties": {"taskId": 1956, "taskX": 7603, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 12.1467458123965], [-12.8979492164397, 12.1682256752432], [-12.8759765601936, 12.1682256752432], [-12.8759765601936, 12.1467458123965], [-12.8979492164397, 12.1467458123965]]]]}, "properties": {"taskId": 2027, "taskX": 7605, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.7167883879289], [-13.00781249767, 11.7383023693636], [-12.9858398414239, 11.7383023693636], [-12.9858398414239, 11.7167883879289], [-13.00781249767, 11.7167883879289]]]]}, "properties": {"taskId": 1826, "taskX": 7600, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.9533493915333], [-13.5571289038216, 11.9748447508181], [-13.5351562475755, 11.9748447508181], [-13.5351562475755, 11.9533493915333], [-13.5571289038216, 11.9533493915333]]]]}, "properties": {"taskId": 730, "taskX": 7575, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.7383023693636], [-13.359374997607, 11.759814672365], [-13.3374023413609, 11.759814672365], [-13.3374023413609, 11.7383023693636], [-13.359374997607, 11.7383023693636]]]]}, "properties": {"taskId": 1143, "taskX": 7584, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.759814672365], [-13.359374997607, 11.7813252940317], [-13.3374023413609, 11.7813252940317], [-13.3374023413609, 11.759814672365], [-13.359374997607, 11.759814672365]]]]}, "properties": {"taskId": 1144, "taskX": 7584, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 12.1467458123965], [-12.8540039039475, 12.1682256752432], [-12.8320312477014, 12.1682256752432], [-12.8320312477014, 12.1467458123965], [-12.8540039039475, 12.1467458123965]]]]}, "properties": {"taskId": 2096, "taskX": 7607, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.7813252940317], [-13.3374023413609, 11.8028342314634], [-13.3154296851149, 11.8028342314634], [-13.3154296851149, 11.7813252940317], [-13.3374023413609, 11.7813252940317]]]]}, "properties": {"taskId": 1187, "taskX": 7585, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.7383023693636], [-13.3154296851149, 11.759814672365], [-13.2934570288688, 11.759814672365], [-13.2934570288688, 11.7383023693636], [-13.3154296851149, 11.7383023693636]]]]}, "properties": {"taskId": 1222, "taskX": 7586, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.6737554013713], [-12.8320312477014, 11.6952727309636], [-12.8100585914554, 11.6952727309636], [-12.8100585914554, 11.6737554013713], [-12.8320312477014, 11.6737554013713]]]]}, "properties": {"taskId": 2108, "taskX": 7608, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.6737554013713], [-12.8100585914554, 11.6952727309636], [-12.7880859352093, 11.6952727309636], [-12.7880859352093, 11.6737554013713], [-12.8100585914554, 11.6737554013713]]]]}, "properties": {"taskId": 2141, "taskX": 7609, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.6952727309636], [-12.8320312477014, 11.7167883879289], [-12.8100585914554, 11.7167883879289], [-12.8100585914554, 11.6952727309636], [-12.8320312477014, 11.6952727309636]]]]}, "properties": {"taskId": 2109, "taskX": 7608, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7880859352093, 11.9103535536714], [-12.7880859352093, 11.9318523248542], [-12.7661132789632, 11.9318523248542], [-12.7661132789632, 11.9103535536714], [-12.7880859352093, 11.9103535536714]]]]}, "properties": {"taskId": 2178, "taskX": 7610, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.9963383998188], [-12.8320312477014, 12.0178303356471], [-12.8100585914554, 12.0178303356471], [-12.8100585914554, 11.9963383998188], [-12.8320312477014, 11.9963383998188]]]]}, "properties": {"taskId": 2123, "taskX": 7608, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 12.0393205554158], [-12.8320312477014, 12.0608090562388], [-12.8100585914554, 12.0608090562388], [-12.8100585914554, 12.0393205554158], [-12.8320312477014, 12.0393205554158]]]]}, "properties": {"taskId": 2125, "taskX": 7608, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 12.10378088951], [-12.8100585914554, 12.1252642161921], [-12.7880859352093, 12.1252642161921], [-12.7880859352093, 12.10378088951], [-12.8100585914554, 12.10378088951]]]]}, "properties": {"taskId": 2159, "taskX": 7609, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 12.1467458123965], [-12.8320312477014, 12.1682256752432], [-12.8100585914554, 12.1682256752432], [-12.8100585914554, 12.1467458123965], [-12.8320312477014, 12.1467458123965]]]]}, "properties": {"taskId": 2130, "taskX": 7608, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.3077077057662], [-13.1835937476385, 11.3292530246144], [-13.1616210913924, 11.3292530246144], [-13.1616210913924, 11.3077077057662], [-13.1835937476385, 11.3077077057662]]]]}, "properties": {"taskId": 1467, "taskX": 7592, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.7813252940317], [-13.2275390601306, 11.8028342314634], [-13.2055664038845, 11.8028342314634], [-13.2055664038845, 11.7813252940317], [-13.2275390601306, 11.7813252940317]]]]}, "properties": {"taskId": 1403, "taskX": 7590, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.8243414817611], [-13.1835937476385, 11.8458470420268], [-13.1616210913924, 11.8458470420268], [-13.1616210913924, 11.8243414817611], [-13.1835937476385, 11.8243414817611]]]]}, "properties": {"taskId": 1491, "taskX": 7592, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.7813252940317], [-13.1176757789003, 11.8028342314634], [-13.0957031226542, 11.8028342314634], [-13.0957031226542, 11.7813252940317], [-13.1176757789003, 11.7813252940317]]]]}, "properties": {"taskId": 1615, "taskX": 7595, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.8458470420268], [-13.1616210913924, 11.867350909364], [-13.1396484351464, 11.867350909364], [-13.1396484351464, 11.8458470420268], [-13.1616210913924, 11.8458470420268]]]]}, "properties": {"taskId": 1534, "taskX": 7593, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.8458470420268], [-13.1835937476385, 11.867350909364], [-13.1616210913924, 11.867350909364], [-13.1616210913924, 11.8458470420268], [-13.1835937476385, 11.8458470420268]]]]}, "properties": {"taskId": 1492, "taskX": 7592, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.8028342314634], [-13.2275390601306, 11.8243414817611], [-13.2055664038845, 11.8243414817611], [-13.2055664038845, 11.8028342314634], [-13.2275390601306, 11.8028342314634]]]]}, "properties": {"taskId": 1404, "taskX": 7590, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.7383023693636], [-13.1616210913924, 11.759814672365], [-13.1396484351464, 11.759814672365], [-13.1396484351464, 11.7383023693636], [-13.1616210913924, 11.7383023693636]]]]}, "properties": {"taskId": 1529, "taskX": 7593, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.7167883879289], [-13.1616210913924, 11.7383023693636], [-13.1396484351464, 11.7383023693636], [-13.1396484351464, 11.7167883879289], [-13.1616210913924, 11.7167883879289]]]]}, "properties": {"taskId": 1528, "taskX": 7593, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.759814672365], [-13.2714843726227, 11.7813252940317], [-13.2495117163767, 11.7813252940317], [-13.2495117163767, 11.759814672365], [-13.2714843726227, 11.759814672365]]]]}, "properties": {"taskId": 1309, "taskX": 7588, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.867350909364], [-13.1176757789003, 11.888853080877], [-13.0957031226542, 11.888853080877], [-13.0957031226542, 11.867350909364], [-13.1176757789003, 11.867350909364]]]]}, "properties": {"taskId": 1619, "taskX": 7595, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.759814672365], [-13.2934570288688, 11.7813252940317], [-13.2714843726227, 11.7813252940317], [-13.2714843726227, 11.759814672365], [-13.2934570288688, 11.759814672365]]]]}, "properties": {"taskId": 1264, "taskX": 7587, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.867350909364], [-13.5131835913294, 11.888853080877], [-13.4912109350834, 11.888853080877], [-13.4912109350834, 11.867350909364], [-13.5131835913294, 11.867350909364]]]]}, "properties": {"taskId": 815, "taskX": 7577, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.8243414817611], [-12.8320312477014, 11.8458470420268], [-12.8100585914554, 11.8458470420268], [-12.8100585914554, 11.8243414817611], [-12.8320312477014, 11.8243414817611]]]]}, "properties": {"taskId": 2115, "taskX": 7608, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.700195310225, 11.5661437657192], [-12.700195310225, 11.5876694148488], [-12.678222653979, 11.5876694148488], [-12.678222653979, 11.5661437657192], [-12.700195310225, 11.5661437657192]]]]}, "properties": {"taskId": 2202, "taskX": 7614, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.700195310225, 11.5446164614097], [-12.700195310225, 11.5661437657192], [-12.678222653979, 11.5661437657192], [-12.678222653979, 11.5446164614097], [-12.700195310225, 11.5446164614097]]]]}, "properties": {"taskId": 2201, "taskX": 7614, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7221679664711, 11.6091934058879], [-12.7221679664711, 11.6307157359267], [-12.700195310225, 11.6307157359267], [-12.700195310225, 11.6091934058879], [-12.7221679664711, 11.6091934058879]]]]}, "properties": {"taskId": 2200, "taskX": 7613, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7221679664711, 11.5876694148488], [-12.7221679664711, 11.6091934058879], [-12.700195310225, 11.6091934058879], [-12.700195310225, 11.5876694148488], [-12.7221679664711, 11.5876694148488]]]]}, "properties": {"taskId": 2199, "taskX": 7613, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7221679664711, 11.5661437657192], [-12.7221679664711, 11.5876694148488], [-12.700195310225, 11.5876694148488], [-12.700195310225, 11.5661437657192], [-12.7221679664711, 11.5661437657192]]]]}, "properties": {"taskId": 2198, "taskX": 7613, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7221679664711, 11.5446164614097], [-12.7221679664711, 11.5661437657192], [-12.700195310225, 11.5661437657192], [-12.700195310225, 11.5446164614097], [-12.7221679664711, 11.5446164614097]]]]}, "properties": {"taskId": 2197, "taskX": 7613, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7441406227172, 11.6307157359267], [-12.7441406227172, 11.652236402057], [-12.7221679664711, 11.652236402057], [-12.7221679664711, 11.6307157359267], [-12.7441406227172, 11.6307157359267]]]]}, "properties": {"taskId": 2196, "taskX": 7612, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7441406227172, 11.6091934058879], [-12.7441406227172, 11.6307157359267], [-12.7221679664711, 11.6307157359267], [-12.7221679664711, 11.6091934058879], [-12.7441406227172, 11.6091934058879]]]]}, "properties": {"taskId": 2195, "taskX": 7612, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7441406227172, 11.5876694148488], [-12.7441406227172, 11.6091934058879], [-12.7221679664711, 11.6091934058879], [-12.7221679664711, 11.5876694148488], [-12.7441406227172, 11.5876694148488]]]]}, "properties": {"taskId": 2194, "taskX": 7612, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7441406227172, 11.5661437657192], [-12.7441406227172, 11.5876694148488], [-12.7221679664711, 11.5876694148488], [-12.7221679664711, 11.5661437657192], [-12.7441406227172, 11.5661437657192]]]]}, "properties": {"taskId": 2193, "taskX": 7612, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7441406227172, 11.5446164614097], [-12.7441406227172, 11.5661437657192], [-12.7221679664711, 11.5661437657192], [-12.7221679664711, 11.5446164614097], [-12.7441406227172, 11.5446164614097]]]]}, "properties": {"taskId": 2192, "taskX": 7612, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7441406227172, 11.5230875048322], [-12.7441406227172, 11.5446164614097], [-12.7221679664711, 11.5446164614097], [-12.7221679664711, 11.5230875048322], [-12.7441406227172, 11.5230875048322]]]]}, "properties": {"taskId": 2191, "taskX": 7612, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7661132789632, 11.867350909364], [-12.7661132789632, 11.888853080877], [-12.7441406227172, 11.888853080877], [-12.7441406227172, 11.867350909364], [-12.7661132789632, 11.867350909364]]]]}, "properties": {"taskId": 2190, "taskX": 7611, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7661132789632, 11.8458470420268], [-12.7661132789632, 11.867350909364], [-12.7441406227172, 11.867350909364], [-12.7441406227172, 11.8458470420268], [-12.7661132789632, 11.8458470420268]]]]}, "properties": {"taskId": 2189, "taskX": 7611, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7661132789632, 11.6307157359267], [-12.7661132789632, 11.652236402057], [-12.7441406227172, 11.652236402057], [-12.7441406227172, 11.6307157359267], [-12.7661132789632, 11.6307157359267]]]]}, "properties": {"taskId": 2188, "taskX": 7611, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7661132789632, 11.6091934058879], [-12.7661132789632, 11.6307157359267], [-12.7441406227172, 11.6307157359267], [-12.7441406227172, 11.6091934058879], [-12.7661132789632, 11.6091934058879]]]]}, "properties": {"taskId": 2187, "taskX": 7611, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7661132789632, 11.5876694148488], [-12.7661132789632, 11.6091934058879], [-12.7441406227172, 11.6091934058879], [-12.7441406227172, 11.5876694148488], [-12.7661132789632, 11.5876694148488]]]]}, "properties": {"taskId": 2186, "taskX": 7611, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7661132789632, 11.5661437657192], [-12.7661132789632, 11.5876694148488], [-12.7441406227172, 11.5876694148488], [-12.7441406227172, 11.5661437657192], [-12.7661132789632, 11.5661437657192]]]]}, "properties": {"taskId": 2185, "taskX": 7611, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7661132789632, 11.5446164614097], [-12.7661132789632, 11.5661437657192], [-12.7441406227172, 11.5661437657192], [-12.7441406227172, 11.5446164614097], [-12.7661132789632, 11.5446164614097]]]]}, "properties": {"taskId": 2184, "taskX": 7611, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7661132789632, 11.5230875048322], [-12.7661132789632, 11.5446164614097], [-12.7441406227172, 11.5446164614097], [-12.7441406227172, 11.5230875048322], [-12.7661132789632, 11.5230875048322]]]]}, "properties": {"taskId": 2183, "taskX": 7611, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7661132789632, 11.480024646527], [-12.7661132789632, 11.5015568988999], [-12.7441406227172, 11.5015568988999], [-12.7441406227172, 11.480024646527], [-12.7661132789632, 11.480024646527]]]]}, "properties": {"taskId": 2181, "taskX": 7611, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7880859352093, 11.9748447508181], [-12.7880859352093, 11.9963383998188], [-12.7661132789632, 11.9963383998188], [-12.7661132789632, 11.9748447508181], [-12.7880859352093, 11.9748447508181]]]]}, "properties": {"taskId": 2180, "taskX": 7610, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7880859352093, 11.9533493915333], [-12.7880859352093, 11.9748447508181], [-12.7661132789632, 11.9748447508181], [-12.7661132789632, 11.9533493915333], [-12.7880859352093, 11.9533493915333]]]]}, "properties": {"taskId": 2179, "taskX": 7610, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7880859352093, 11.888853080877], [-12.7880859352093, 11.9103535536714], [-12.7661132789632, 11.9103535536714], [-12.7661132789632, 11.888853080877], [-12.7880859352093, 11.888853080877]]]]}, "properties": {"taskId": 2177, "taskX": 7610, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7880859352093, 11.867350909364], [-12.7880859352093, 11.888853080877], [-12.7661132789632, 11.888853080877], [-12.7661132789632, 11.867350909364], [-12.7880859352093, 11.867350909364]]]]}, "properties": {"taskId": 2176, "taskX": 7610, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7880859352093, 11.8458470420268], [-12.7880859352093, 11.867350909364], [-12.7661132789632, 11.867350909364], [-12.7661132789632, 11.8458470420268], [-12.7880859352093, 11.8458470420268]]]]}, "properties": {"taskId": 2175, "taskX": 7610, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7880859352093, 11.8243414817611], [-12.7880859352093, 11.8458470420268], [-12.7661132789632, 11.8458470420268], [-12.7661132789632, 11.8243414817611], [-12.7880859352093, 11.8243414817611]]]]}, "properties": {"taskId": 2174, "taskX": 7610, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7880859352093, 11.759814672365], [-12.7880859352093, 11.7813252940317], [-12.7661132789632, 11.7813252940317], [-12.7661132789632, 11.759814672365], [-12.7880859352093, 11.759814672365]]]]}, "properties": {"taskId": 2173, "taskX": 7610, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7880859352093, 11.7383023693636], [-12.7880859352093, 11.759814672365], [-12.7661132789632, 11.759814672365], [-12.7661132789632, 11.7383023693636], [-12.7880859352093, 11.7383023693636]]]]}, "properties": {"taskId": 2172, "taskX": 7610, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7880859352093, 11.7167883879289], [-12.7880859352093, 11.7383023693636], [-12.7661132789632, 11.7383023693636], [-12.7661132789632, 11.7167883879289], [-12.7880859352093, 11.7167883879289]]]]}, "properties": {"taskId": 2171, "taskX": 7610, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7880859352093, 11.6737554013713], [-12.7880859352093, 11.6952727309636], [-12.7661132789632, 11.6952727309636], [-12.7661132789632, 11.6737554013713], [-12.7880859352093, 11.6737554013713]]]]}, "properties": {"taskId": 2170, "taskX": 7610, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7880859352093, 11.652236402057], [-12.7880859352093, 11.6737554013713], [-12.7661132789632, 11.6737554013713], [-12.7661132789632, 11.652236402057], [-12.7880859352093, 11.652236402057]]]]}, "properties": {"taskId": 2169, "taskX": 7610, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7880859352093, 11.6307157359267], [-12.7880859352093, 11.652236402057], [-12.7661132789632, 11.652236402057], [-12.7661132789632, 11.6307157359267], [-12.7880859352093, 11.6307157359267]]]]}, "properties": {"taskId": 2168, "taskX": 7610, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7880859352093, 11.6091934058879], [-12.7880859352093, 11.6307157359267], [-12.7661132789632, 11.6307157359267], [-12.7661132789632, 11.6091934058879], [-12.7880859352093, 11.6091934058879]]]]}, "properties": {"taskId": 2167, "taskX": 7610, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7880859352093, 11.5661437657192], [-12.7880859352093, 11.5876694148488], [-12.7661132789632, 11.5876694148488], [-12.7661132789632, 11.5661437657192], [-12.7880859352093, 11.5661437657192]]]]}, "properties": {"taskId": 2165, "taskX": 7610, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7880859352093, 11.5446164614097], [-12.7880859352093, 11.5661437657192], [-12.7661132789632, 11.5661437657192], [-12.7661132789632, 11.5446164614097], [-12.7880859352093, 11.5446164614097]]]]}, "properties": {"taskId": 2164, "taskX": 7610, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7880859352093, 11.5230875048322], [-12.7880859352093, 11.5446164614097], [-12.7661132789632, 11.5446164614097], [-12.7661132789632, 11.5230875048322], [-12.7880859352093, 11.5230875048322]]]]}, "properties": {"taskId": 2163, "taskX": 7610, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7880859352093, 11.480024646527], [-12.7880859352093, 11.5015568988999], [-12.7661132789632, 11.5015568988999], [-12.7661132789632, 11.480024646527], [-12.7880859352093, 11.480024646527]]]]}, "properties": {"taskId": 2161, "taskX": 7610, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7880859352093, 11.4584907506287], [-12.7880859352093, 11.480024646527], [-12.7661132789632, 11.480024646527], [-12.7661132789632, 11.4584907506287], [-12.7880859352093, 11.4584907506287]]]]}, "properties": {"taskId": 2160, "taskX": 7610, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 12.0822958352314], [-12.8100585914554, 12.10378088951], [-12.7880859352093, 12.10378088951], [-12.7880859352093, 12.0822958352314], [-12.8100585914554, 12.0822958352314]]]]}, "properties": {"taskId": 2158, "taskX": 7609, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 12.0608090562388], [-12.8100585914554, 12.0822958352314], [-12.7880859352093, 12.0822958352314], [-12.7880859352093, 12.0608090562388], [-12.8100585914554, 12.0608090562388]]]]}, "properties": {"taskId": 2157, "taskX": 7609, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.9963383998188], [-12.8100585914554, 12.0178303356471], [-12.7880859352093, 12.0178303356471], [-12.7880859352093, 11.9963383998188], [-12.8100585914554, 11.9963383998188]]]]}, "properties": {"taskId": 2156, "taskX": 7609, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.9748447508181], [-12.8100585914554, 11.9963383998188], [-12.7880859352093, 11.9963383998188], [-12.7880859352093, 11.9748447508181], [-12.8100585914554, 11.9748447508181]]]]}, "properties": {"taskId": 2155, "taskX": 7609, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.9533493915333], [-12.8100585914554, 11.9748447508181], [-12.7880859352093, 11.9748447508181], [-12.7880859352093, 11.9533493915333], [-12.8100585914554, 11.9533493915333]]]]}, "properties": {"taskId": 2154, "taskX": 7609, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.9318523248542], [-12.8100585914554, 11.9533493915333], [-12.7880859352093, 11.9533493915333], [-12.7880859352093, 11.9318523248542], [-12.8100585914554, 11.9318523248542]]]]}, "properties": {"taskId": 2153, "taskX": 7609, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.9103535536714], [-12.8100585914554, 11.9318523248542], [-12.7880859352093, 11.9318523248542], [-12.7880859352093, 11.9103535536714], [-12.8100585914554, 11.9103535536714]]]]}, "properties": {"taskId": 2152, "taskX": 7609, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.888853080877], [-12.8100585914554, 11.9103535536714], [-12.7880859352093, 11.9103535536714], [-12.7880859352093, 11.888853080877], [-12.8100585914554, 11.888853080877]]]]}, "properties": {"taskId": 2151, "taskX": 7609, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.867350909364], [-12.8100585914554, 11.888853080877], [-12.7880859352093, 11.888853080877], [-12.7880859352093, 11.867350909364], [-12.8100585914554, 11.867350909364]]]]}, "properties": {"taskId": 2150, "taskX": 7609, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.8458470420268], [-12.8100585914554, 11.867350909364], [-12.7880859352093, 11.867350909364], [-12.7880859352093, 11.8458470420268], [-12.8100585914554, 11.8458470420268]]]]}, "properties": {"taskId": 2149, "taskX": 7609, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.8243414817611], [-12.8100585914554, 11.8458470420268], [-12.7880859352093, 11.8458470420268], [-12.7880859352093, 11.8243414817611], [-12.8100585914554, 11.8243414817611]]]]}, "properties": {"taskId": 2148, "taskX": 7609, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.8028342314634], [-12.8100585914554, 11.8243414817611], [-12.7880859352093, 11.8243414817611], [-12.7880859352093, 11.8028342314634], [-12.8100585914554, 11.8028342314634]]]]}, "properties": {"taskId": 2147, "taskX": 7609, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.7813252940317], [-12.8100585914554, 11.8028342314634], [-12.7880859352093, 11.8028342314634], [-12.7880859352093, 11.7813252940317], [-12.8100585914554, 11.7813252940317]]]]}, "properties": {"taskId": 2146, "taskX": 7609, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.759814672365], [-12.8100585914554, 11.7813252940317], [-12.7880859352093, 11.7813252940317], [-12.7880859352093, 11.759814672365], [-12.8100585914554, 11.759814672365]]]]}, "properties": {"taskId": 2145, "taskX": 7609, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.7383023693636], [-12.8100585914554, 11.759814672365], [-12.7880859352093, 11.759814672365], [-12.7880859352093, 11.7383023693636], [-12.8100585914554, 11.7383023693636]]]]}, "properties": {"taskId": 2144, "taskX": 7609, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.7167883879289], [-12.8100585914554, 11.7383023693636], [-12.7880859352093, 11.7383023693636], [-12.7880859352093, 11.7167883879289], [-12.8100585914554, 11.7167883879289]]]]}, "properties": {"taskId": 2143, "taskX": 7609, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.6952727309636], [-12.8100585914554, 11.7167883879289], [-12.7880859352093, 11.7167883879289], [-12.7880859352093, 11.6952727309636], [-12.8100585914554, 11.6952727309636]]]]}, "properties": {"taskId": 2142, "taskX": 7609, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.6307157359267], [-12.8100585914554, 11.652236402057], [-12.7880859352093, 11.652236402057], [-12.7880859352093, 11.6307157359267], [-12.8100585914554, 11.6307157359267]]]]}, "properties": {"taskId": 2139, "taskX": 7609, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.6091934058879], [-12.8100585914554, 11.6307157359267], [-12.7880859352093, 11.6307157359267], [-12.7880859352093, 11.6091934058879], [-12.8100585914554, 11.6091934058879]]]]}, "properties": {"taskId": 2138, "taskX": 7609, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.5876694148488], [-12.8100585914554, 11.6091934058879], [-12.7880859352093, 11.6091934058879], [-12.7880859352093, 11.5876694148488], [-12.8100585914554, 11.5876694148488]]]]}, "properties": {"taskId": 2137, "taskX": 7609, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.5661437657192], [-12.8100585914554, 11.5876694148488], [-12.7880859352093, 11.5876694148488], [-12.7880859352093, 11.5661437657192], [-12.8100585914554, 11.5661437657192]]]]}, "properties": {"taskId": 2136, "taskX": 7609, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.5446164614097], [-12.8100585914554, 11.5661437657192], [-12.7880859352093, 11.5661437657192], [-12.7880859352093, 11.5446164614097], [-12.8100585914554, 11.5446164614097]]]]}, "properties": {"taskId": 2135, "taskX": 7609, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.5230875048322], [-12.8100585914554, 11.5446164614097], [-12.7880859352093, 11.5446164614097], [-12.7880859352093, 11.5230875048322], [-12.8100585914554, 11.5230875048322]]]]}, "properties": {"taskId": 2134, "taskX": 7609, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.5015568988999], [-12.8100585914554, 11.5230875048322], [-12.7880859352093, 11.5230875048322], [-12.7880859352093, 11.5015568988999], [-12.8100585914554, 11.5015568988999]]]]}, "properties": {"taskId": 2133, "taskX": 7609, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.480024646527], [-12.8100585914554, 11.5015568988999], [-12.7880859352093, 11.5015568988999], [-12.7880859352093, 11.480024646527], [-12.8100585914554, 11.480024646527]]]]}, "properties": {"taskId": 2132, "taskX": 7609, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.4584907506287], [-12.8100585914554, 11.480024646527], [-12.7880859352093, 11.480024646527], [-12.7880859352093, 11.4584907506287], [-12.8100585914554, 11.4584907506287]]]]}, "properties": {"taskId": 2131, "taskX": 7609, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 12.1252642161921], [-12.8320312477014, 12.1467458123965], [-12.8100585914554, 12.1467458123965], [-12.8100585914554, 12.1252642161921], [-12.8320312477014, 12.1252642161921]]]]}, "properties": {"taskId": 2129, "taskX": 7608, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 12.10378088951], [-12.8320312477014, 12.1252642161921], [-12.8100585914554, 12.1252642161921], [-12.8100585914554, 12.10378088951], [-12.8320312477014, 12.10378088951]]]]}, "properties": {"taskId": 2128, "taskX": 7608, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 12.0822958352314], [-12.8320312477014, 12.10378088951], [-12.8100585914554, 12.10378088951], [-12.8100585914554, 12.0822958352314], [-12.8320312477014, 12.0822958352314]]]]}, "properties": {"taskId": 2127, "taskX": 7608, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 12.0608090562388], [-12.8320312477014, 12.0822958352314], [-12.8100585914554, 12.0822958352314], [-12.8100585914554, 12.0608090562388], [-12.8320312477014, 12.0608090562388]]]]}, "properties": {"taskId": 2126, "taskX": 7608, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 12.0178303356471], [-12.8320312477014, 12.0393205554158], [-12.8100585914554, 12.0393205554158], [-12.8100585914554, 12.0178303356471], [-12.8320312477014, 12.0178303356471]]]]}, "properties": {"taskId": 2124, "taskX": 7608, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.9748447508181], [-12.8759765601936, 11.9963383998188], [-12.8540039039475, 11.9963383998188], [-12.8540039039475, 11.9748447508181], [-12.8759765601936, 11.9748447508181]]]]}, "properties": {"taskId": 2054, "taskX": 7606, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.9533493915333], [-12.8759765601936, 11.9748447508181], [-12.8540039039475, 11.9748447508181], [-12.8540039039475, 11.9533493915333], [-12.8759765601936, 11.9533493915333]]]]}, "properties": {"taskId": 2053, "taskX": 7606, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.9103535536714], [-12.8759765601936, 11.9318523248542], [-12.8540039039475, 11.9318523248542], [-12.8540039039475, 11.9103535536714], [-12.8759765601936, 11.9103535536714]]]]}, "properties": {"taskId": 2051, "taskX": 7606, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.888853080877], [-12.8759765601936, 11.9103535536714], [-12.8540039039475, 11.9103535536714], [-12.8540039039475, 11.888853080877], [-12.8759765601936, 11.888853080877]]]]}, "properties": {"taskId": 2050, "taskX": 7606, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.867350909364], [-12.8759765601936, 11.888853080877], [-12.8540039039475, 11.888853080877], [-12.8540039039475, 11.867350909364], [-12.8759765601936, 11.867350909364]]]]}, "properties": {"taskId": 2049, "taskX": 7606, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.8458470420268], [-12.8759765601936, 11.867350909364], [-12.8540039039475, 11.867350909364], [-12.8540039039475, 11.8458470420268], [-12.8759765601936, 11.8458470420268]]]]}, "properties": {"taskId": 2048, "taskX": 7606, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.8243414817611], [-12.8759765601936, 11.8458470420268], [-12.8540039039475, 11.8458470420268], [-12.8540039039475, 11.8243414817611], [-12.8759765601936, 11.8243414817611]]]]}, "properties": {"taskId": 2047, "taskX": 7606, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.8028342314634], [-12.8759765601936, 11.8243414817611], [-12.8540039039475, 11.8243414817611], [-12.8540039039475, 11.8028342314634], [-12.8759765601936, 11.8028342314634]]]]}, "properties": {"taskId": 2046, "taskX": 7606, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.7813252940317], [-12.8759765601936, 11.8028342314634], [-12.8540039039475, 11.8028342314634], [-12.8540039039475, 11.7813252940317], [-12.8759765601936, 11.7813252940317]]]]}, "properties": {"taskId": 2045, "taskX": 7606, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.759814672365], [-12.8759765601936, 11.7813252940317], [-12.8540039039475, 11.7813252940317], [-12.8540039039475, 11.759814672365], [-12.8759765601936, 11.759814672365]]]]}, "properties": {"taskId": 2044, "taskX": 7606, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.7167883879289], [-12.8759765601936, 11.7383023693636], [-12.8540039039475, 11.7383023693636], [-12.8540039039475, 11.7167883879289], [-12.8759765601936, 11.7167883879289]]]]}, "properties": {"taskId": 2042, "taskX": 7606, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.6952727309636], [-12.8759765601936, 11.7167883879289], [-12.8540039039475, 11.7167883879289], [-12.8540039039475, 11.6952727309636], [-12.8759765601936, 11.6952727309636]]]]}, "properties": {"taskId": 2041, "taskX": 7606, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.6737554013713], [-12.8759765601936, 11.6952727309636], [-12.8540039039475, 11.6952727309636], [-12.8540039039475, 11.6737554013713], [-12.8759765601936, 11.6737554013713]]]]}, "properties": {"taskId": 2040, "taskX": 7606, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.652236402057], [-12.8759765601936, 11.6737554013713], [-12.8540039039475, 11.6737554013713], [-12.8540039039475, 11.652236402057], [-12.8759765601936, 11.652236402057]]]]}, "properties": {"taskId": 2039, "taskX": 7606, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.6307157359267], [-12.8759765601936, 11.652236402057], [-12.8540039039475, 11.652236402057], [-12.8540039039475, 11.6307157359267], [-12.8759765601936, 11.6307157359267]]]]}, "properties": {"taskId": 2038, "taskX": 7606, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.6091934058879], [-12.8759765601936, 11.6307157359267], [-12.8540039039475, 11.6307157359267], [-12.8540039039475, 11.6091934058879], [-12.8759765601936, 11.6091934058879]]]]}, "properties": {"taskId": 2037, "taskX": 7606, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.5876694148488], [-12.8759765601936, 11.6091934058879], [-12.8540039039475, 11.6091934058879], [-12.8540039039475, 11.5876694148488], [-12.8759765601936, 11.5876694148488]]]]}, "properties": {"taskId": 2036, "taskX": 7606, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.5661437657192], [-12.8759765601936, 11.5876694148488], [-12.8540039039475, 11.5876694148488], [-12.8540039039475, 11.5661437657192], [-12.8759765601936, 11.5661437657192]]]]}, "properties": {"taskId": 2035, "taskX": 7606, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.5446164614097], [-12.8759765601936, 11.5661437657192], [-12.8540039039475, 11.5661437657192], [-12.8540039039475, 11.5446164614097], [-12.8759765601936, 11.5446164614097]]]]}, "properties": {"taskId": 2034, "taskX": 7606, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.5230875048322], [-12.8759765601936, 11.5446164614097], [-12.8540039039475, 11.5446164614097], [-12.8540039039475, 11.5230875048322], [-12.8759765601936, 11.5230875048322]]]]}, "properties": {"taskId": 2033, "taskX": 7606, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.5015568988999], [-12.8759765601936, 11.5230875048322], [-12.8540039039475, 11.5230875048322], [-12.8540039039475, 11.5015568988999], [-12.8759765601936, 11.5015568988999]]]]}, "properties": {"taskId": 2032, "taskX": 7606, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.480024646527], [-12.8759765601936, 11.5015568988999], [-12.8540039039475, 11.5015568988999], [-12.8540039039475, 11.480024646527], [-12.8759765601936, 11.480024646527]]]]}, "properties": {"taskId": 2031, "taskX": 7606, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.4584907506287], [-12.8759765601936, 11.480024646527], [-12.8540039039475, 11.480024646527], [-12.8540039039475, 11.4584907506287], [-12.8759765601936, 11.4584907506287]]]]}, "properties": {"taskId": 2030, "taskX": 7606, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.4369552141218], [-12.8759765601936, 11.4584907506287], [-12.8540039039475, 11.4584907506287], [-12.8540039039475, 11.4369552141218], [-12.8759765601936, 11.4369552141218]]]]}, "properties": {"taskId": 2029, "taskX": 7606, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.4154180399237], [-12.8759765601936, 11.4369552141218], [-12.8540039039475, 11.4369552141218], [-12.8540039039475, 11.4154180399237], [-12.8759765601936, 11.4154180399237]]]]}, "properties": {"taskId": 2028, "taskX": 7606, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 12.10378088951], [-12.8979492164397, 12.1252642161921], [-12.8759765601936, 12.1252642161921], [-12.8759765601936, 12.10378088951], [-12.8979492164397, 12.10378088951]]]]}, "properties": {"taskId": 2025, "taskX": 7605, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 12.0822958352314], [-12.8979492164397, 12.10378088951], [-12.8759765601936, 12.10378088951], [-12.8759765601936, 12.0822958352314], [-12.8979492164397, 12.0822958352314]]]]}, "properties": {"taskId": 2024, "taskX": 7605, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 12.0608090562388], [-12.8979492164397, 12.0822958352314], [-12.8759765601936, 12.0822958352314], [-12.8759765601936, 12.0608090562388], [-12.8979492164397, 12.0608090562388]]]]}, "properties": {"taskId": 2023, "taskX": 7605, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 12.0393205554158], [-12.8979492164397, 12.0608090562388], [-12.8759765601936, 12.0608090562388], [-12.8759765601936, 12.0393205554158], [-12.8979492164397, 12.0393205554158]]]]}, "properties": {"taskId": 2022, "taskX": 7605, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.9963383998188], [-12.8979492164397, 12.0178303356471], [-12.8759765601936, 12.0178303356471], [-12.8759765601936, 11.9963383998188], [-12.8979492164397, 11.9963383998188]]]]}, "properties": {"taskId": 2020, "taskX": 7605, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.9748447508181], [-12.8979492164397, 11.9963383998188], [-12.8759765601936, 11.9963383998188], [-12.8759765601936, 11.9748447508181], [-12.8979492164397, 11.9748447508181]]]]}, "properties": {"taskId": 2019, "taskX": 7605, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.9533493915333], [-12.8979492164397, 11.9748447508181], [-12.8759765601936, 11.9748447508181], [-12.8759765601936, 11.9533493915333], [-12.8979492164397, 11.9533493915333]]]]}, "properties": {"taskId": 2018, "taskX": 7605, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.9318523248542], [-12.8979492164397, 11.9533493915333], [-12.8759765601936, 11.9533493915333], [-12.8759765601936, 11.9318523248542], [-12.8979492164397, 11.9318523248542]]]]}, "properties": {"taskId": 2017, "taskX": 7605, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.9103535536714], [-12.8979492164397, 11.9318523248542], [-12.8759765601936, 11.9318523248542], [-12.8759765601936, 11.9103535536714], [-12.8979492164397, 11.9103535536714]]]]}, "properties": {"taskId": 2016, "taskX": 7605, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.888853080877], [-12.8979492164397, 11.9103535536714], [-12.8759765601936, 11.9103535536714], [-12.8759765601936, 11.888853080877], [-12.8979492164397, 11.888853080877]]]]}, "properties": {"taskId": 2015, "taskX": 7605, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.867350909364], [-12.8979492164397, 11.888853080877], [-12.8759765601936, 11.888853080877], [-12.8759765601936, 11.867350909364], [-12.8979492164397, 11.867350909364]]]]}, "properties": {"taskId": 2014, "taskX": 7605, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.8458470420268], [-12.8979492164397, 11.867350909364], [-12.8759765601936, 11.867350909364], [-12.8759765601936, 11.8458470420268], [-12.8979492164397, 11.8458470420268]]]]}, "properties": {"taskId": 2013, "taskX": 7605, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.8243414817611], [-12.8979492164397, 11.8458470420268], [-12.8759765601936, 11.8458470420268], [-12.8759765601936, 11.8243414817611], [-12.8979492164397, 11.8243414817611]]]]}, "properties": {"taskId": 2012, "taskX": 7605, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.8028342314634], [-12.8979492164397, 11.8243414817611], [-12.8759765601936, 11.8243414817611], [-12.8759765601936, 11.8028342314634], [-12.8979492164397, 11.8028342314634]]]]}, "properties": {"taskId": 2011, "taskX": 7605, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.7813252940317], [-12.8979492164397, 11.8028342314634], [-12.8759765601936, 11.8028342314634], [-12.8759765601936, 11.7813252940317], [-12.8979492164397, 11.7813252940317]]]]}, "properties": {"taskId": 2010, "taskX": 7605, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.759814672365], [-12.8979492164397, 11.7813252940317], [-12.8759765601936, 11.7813252940317], [-12.8759765601936, 11.759814672365], [-12.8979492164397, 11.759814672365]]]]}, "properties": {"taskId": 2009, "taskX": 7605, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.7383023693636], [-12.8979492164397, 11.759814672365], [-12.8759765601936, 11.759814672365], [-12.8759765601936, 11.7383023693636], [-12.8979492164397, 11.7383023693636]]]]}, "properties": {"taskId": 2008, "taskX": 7605, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.7167883879289], [-12.8979492164397, 11.7383023693636], [-12.8759765601936, 11.7383023693636], [-12.8759765601936, 11.7167883879289], [-12.8979492164397, 11.7167883879289]]]]}, "properties": {"taskId": 2007, "taskX": 7605, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.6952727309636], [-12.8979492164397, 11.7167883879289], [-12.8759765601936, 11.7167883879289], [-12.8759765601936, 11.6952727309636], [-12.8979492164397, 11.6952727309636]]]]}, "properties": {"taskId": 2006, "taskX": 7605, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.6737554013713], [-12.8979492164397, 11.6952727309636], [-12.8759765601936, 11.6952727309636], [-12.8759765601936, 11.6737554013713], [-12.8979492164397, 11.6737554013713]]]]}, "properties": {"taskId": 2005, "taskX": 7605, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.652236402057], [-12.8979492164397, 11.6737554013713], [-12.8759765601936, 11.6737554013713], [-12.8759765601936, 11.652236402057], [-12.8979492164397, 11.652236402057]]]]}, "properties": {"taskId": 2004, "taskX": 7605, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.6307157359267], [-12.8979492164397, 11.652236402057], [-12.8759765601936, 11.652236402057], [-12.8759765601936, 11.6307157359267], [-12.8979492164397, 11.6307157359267]]]]}, "properties": {"taskId": 2003, "taskX": 7605, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.6091934058879], [-12.8979492164397, 11.6307157359267], [-12.8759765601936, 11.6307157359267], [-12.8759765601936, 11.6091934058879], [-12.8979492164397, 11.6091934058879]]]]}, "properties": {"taskId": 2002, "taskX": 7605, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.5876694148488], [-12.8979492164397, 11.6091934058879], [-12.8759765601936, 11.6091934058879], [-12.8759765601936, 11.5876694148488], [-12.8979492164397, 11.5876694148488]]]]}, "properties": {"taskId": 2001, "taskX": 7605, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.5661437657192], [-12.8979492164397, 11.5876694148488], [-12.8759765601936, 11.5876694148488], [-12.8759765601936, 11.5661437657192], [-12.8979492164397, 11.5661437657192]]]]}, "properties": {"taskId": 2000, "taskX": 7605, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.5230875048322], [-12.8979492164397, 11.5446164614097], [-12.8759765601936, 11.5446164614097], [-12.8759765601936, 11.5230875048322], [-12.8979492164397, 11.5230875048322]]]]}, "properties": {"taskId": 1998, "taskX": 7605, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.5015568988999], [-12.8979492164397, 11.5230875048322], [-12.8759765601936, 11.5230875048322], [-12.8759765601936, 11.5015568988999], [-12.8979492164397, 11.5015568988999]]]]}, "properties": {"taskId": 1997, "taskX": 7605, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.480024646527], [-12.8979492164397, 11.5015568988999], [-12.8759765601936, 11.5015568988999], [-12.8759765601936, 11.480024646527], [-12.8979492164397, 11.480024646527]]]]}, "properties": {"taskId": 1996, "taskX": 7605, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.4369552141218], [-12.8979492164397, 11.4584907506287], [-12.8759765601936, 11.4584907506287], [-12.8759765601936, 11.4369552141218], [-12.8979492164397, 11.4369552141218]]]]}, "properties": {"taskId": 1994, "taskX": 7605, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.4154180399237], [-12.8979492164397, 11.4369552141218], [-12.8759765601936, 11.4369552141218], [-12.8759765601936, 11.4154180399237], [-12.8979492164397, 11.4154180399237]]]]}, "properties": {"taskId": 1993, "taskX": 7605, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.3938792309534], [-12.8979492164397, 11.4154180399237], [-12.8759765601936, 11.4154180399237], [-12.8759765601936, 11.3938792309534], [-12.8979492164397, 11.3938792309534]]]]}, "properties": {"taskId": 1992, "taskX": 7605, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 12.10378088951], [-12.9199218726857, 12.1252642161921], [-12.8979492164397, 12.1252642161921], [-12.8979492164397, 12.10378088951], [-12.9199218726857, 12.10378088951]]]]}, "properties": {"taskId": 1991, "taskX": 7604, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 12.0822958352314], [-12.9199218726857, 12.10378088951], [-12.8979492164397, 12.10378088951], [-12.8979492164397, 12.0822958352314], [-12.9199218726857, 12.0822958352314]]]]}, "properties": {"taskId": 1990, "taskX": 7604, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 12.0608090562388], [-12.9199218726857, 12.0822958352314], [-12.8979492164397, 12.0822958352314], [-12.8979492164397, 12.0608090562388], [-12.9199218726857, 12.0608090562388]]]]}, "properties": {"taskId": 1989, "taskX": 7604, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 12.0393205554158], [-12.9199218726857, 12.0608090562388], [-12.8979492164397, 12.0608090562388], [-12.8979492164397, 12.0393205554158], [-12.9199218726857, 12.0393205554158]]]]}, "properties": {"taskId": 1988, "taskX": 7604, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 12.0178303356471], [-12.9199218726857, 12.0393205554158], [-12.8979492164397, 12.0393205554158], [-12.8979492164397, 12.0178303356471], [-12.9199218726857, 12.0178303356471]]]]}, "properties": {"taskId": 1987, "taskX": 7604, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.9963383998188], [-12.9199218726857, 12.0178303356471], [-12.8979492164397, 12.0178303356471], [-12.8979492164397, 11.9963383998188], [-12.9199218726857, 11.9963383998188]]]]}, "properties": {"taskId": 1986, "taskX": 7604, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.9748447508181], [-12.9199218726857, 11.9963383998188], [-12.8979492164397, 11.9963383998188], [-12.8979492164397, 11.9748447508181], [-12.9199218726857, 11.9748447508181]]]]}, "properties": {"taskId": 1985, "taskX": 7604, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.9533493915333], [-12.9199218726857, 11.9748447508181], [-12.8979492164397, 11.9748447508181], [-12.8979492164397, 11.9533493915333], [-12.9199218726857, 11.9533493915333]]]]}, "properties": {"taskId": 1984, "taskX": 7604, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.9318523248542], [-12.9199218726857, 11.9533493915333], [-12.8979492164397, 11.9533493915333], [-12.8979492164397, 11.9318523248542], [-12.9199218726857, 11.9318523248542]]]]}, "properties": {"taskId": 1983, "taskX": 7604, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.9103535536714], [-12.9199218726857, 11.9318523248542], [-12.8979492164397, 11.9318523248542], [-12.8979492164397, 11.9103535536714], [-12.9199218726857, 11.9103535536714]]]]}, "properties": {"taskId": 1982, "taskX": 7604, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.888853080877], [-12.9199218726857, 11.9103535536714], [-12.8979492164397, 11.9103535536714], [-12.8979492164397, 11.888853080877], [-12.9199218726857, 11.888853080877]]]]}, "properties": {"taskId": 1981, "taskX": 7604, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.867350909364], [-12.9199218726857, 11.888853080877], [-12.8979492164397, 11.888853080877], [-12.8979492164397, 11.867350909364], [-12.9199218726857, 11.867350909364]]]]}, "properties": {"taskId": 1980, "taskX": 7604, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.8458470420268], [-12.9199218726857, 11.867350909364], [-12.8979492164397, 11.867350909364], [-12.8979492164397, 11.8458470420268], [-12.9199218726857, 11.8458470420268]]]]}, "properties": {"taskId": 1979, "taskX": 7604, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.8243414817611], [-12.9199218726857, 11.8458470420268], [-12.8979492164397, 11.8458470420268], [-12.8979492164397, 11.8243414817611], [-12.9199218726857, 11.8243414817611]]]]}, "properties": {"taskId": 1978, "taskX": 7604, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.8028342314634], [-12.9199218726857, 11.8243414817611], [-12.8979492164397, 11.8243414817611], [-12.8979492164397, 11.8028342314634], [-12.9199218726857, 11.8028342314634]]]]}, "properties": {"taskId": 1977, "taskX": 7604, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.7813252940317], [-12.9199218726857, 11.8028342314634], [-12.8979492164397, 11.8028342314634], [-12.8979492164397, 11.7813252940317], [-12.9199218726857, 11.7813252940317]]]]}, "properties": {"taskId": 1976, "taskX": 7604, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.759814672365], [-12.9199218726857, 11.7813252940317], [-12.8979492164397, 11.7813252940317], [-12.8979492164397, 11.759814672365], [-12.9199218726857, 11.759814672365]]]]}, "properties": {"taskId": 1975, "taskX": 7604, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.7383023693636], [-12.9199218726857, 11.759814672365], [-12.8979492164397, 11.759814672365], [-12.8979492164397, 11.7383023693636], [-12.9199218726857, 11.7383023693636]]]]}, "properties": {"taskId": 1974, "taskX": 7604, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.7167883879289], [-12.9199218726857, 11.7383023693636], [-12.8979492164397, 11.7383023693636], [-12.8979492164397, 11.7167883879289], [-12.9199218726857, 11.7167883879289]]]]}, "properties": {"taskId": 1973, "taskX": 7604, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.6737554013713], [-12.9199218726857, 11.6952727309636], [-12.8979492164397, 11.6952727309636], [-12.8979492164397, 11.6737554013713], [-12.9199218726857, 11.6737554013713]]]]}, "properties": {"taskId": 1971, "taskX": 7604, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.652236402057], [-12.9199218726857, 11.6737554013713], [-12.8979492164397, 11.6737554013713], [-12.8979492164397, 11.652236402057], [-12.9199218726857, 11.652236402057]]]]}, "properties": {"taskId": 1970, "taskX": 7604, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.6091934058879], [-12.9199218726857, 11.6307157359267], [-12.8979492164397, 11.6307157359267], [-12.8979492164397, 11.6091934058879], [-12.9199218726857, 11.6091934058879]]]]}, "properties": {"taskId": 1968, "taskX": 7604, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.5661437657192], [-12.9199218726857, 11.5876694148488], [-12.8979492164397, 11.5876694148488], [-12.8979492164397, 11.5661437657192], [-12.9199218726857, 11.5661437657192]]]]}, "properties": {"taskId": 1966, "taskX": 7604, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.5446164614097], [-12.9199218726857, 11.5661437657192], [-12.8979492164397, 11.5661437657192], [-12.8979492164397, 11.5446164614097], [-12.9199218726857, 11.5446164614097]]]]}, "properties": {"taskId": 1965, "taskX": 7604, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.5230875048322], [-12.9199218726857, 11.5446164614097], [-12.8979492164397, 11.5446164614097], [-12.8979492164397, 11.5230875048322], [-12.9199218726857, 11.5230875048322]]]]}, "properties": {"taskId": 1964, "taskX": 7604, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.5015568988999], [-12.9199218726857, 11.5230875048322], [-12.8979492164397, 11.5230875048322], [-12.8979492164397, 11.5015568988999], [-12.9199218726857, 11.5015568988999]]]]}, "properties": {"taskId": 1963, "taskX": 7604, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.480024646527], [-12.9199218726857, 11.5015568988999], [-12.8979492164397, 11.5015568988999], [-12.8979492164397, 11.480024646527], [-12.9199218726857, 11.480024646527]]]]}, "properties": {"taskId": 1962, "taskX": 7604, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.4584907506287], [-12.9199218726857, 11.480024646527], [-12.8979492164397, 11.480024646527], [-12.8979492164397, 11.4584907506287], [-12.9199218726857, 11.4584907506287]]]]}, "properties": {"taskId": 1961, "taskX": 7604, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.4369552141218], [-12.9199218726857, 11.4584907506287], [-12.8979492164397, 11.4584907506287], [-12.8979492164397, 11.4369552141218], [-12.9199218726857, 11.4369552141218]]]]}, "properties": {"taskId": 1960, "taskX": 7604, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.4154180399237], [-12.9199218726857, 11.4369552141218], [-12.8979492164397, 11.4369552141218], [-12.8979492164397, 11.4154180399237], [-12.9199218726857, 11.4154180399237]]]]}, "properties": {"taskId": 1959, "taskX": 7604, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.3938792309534], [-12.9199218726857, 11.4154180399237], [-12.8979492164397, 11.4154180399237], [-12.8979492164397, 11.3938792309534], [-12.9199218726857, 11.3938792309534]]]]}, "properties": {"taskId": 1958, "taskX": 7604, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.3723387901308], [-12.9199218726857, 11.3938792309534], [-12.8979492164397, 11.3938792309534], [-12.8979492164397, 11.3723387901308], [-12.9199218726857, 11.3723387901308]]]]}, "properties": {"taskId": 1957, "taskX": 7604, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 12.0822958352314], [-12.9418945289318, 12.10378088951], [-12.9199218726857, 12.10378088951], [-12.9199218726857, 12.0822958352314], [-12.9418945289318, 12.0822958352314]]]]}, "properties": {"taskId": 1955, "taskX": 7603, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 12.0608090562388], [-12.9418945289318, 12.0822958352314], [-12.9199218726857, 12.0822958352314], [-12.9199218726857, 12.0608090562388], [-12.9418945289318, 12.0608090562388]]]]}, "properties": {"taskId": 1954, "taskX": 7603, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 12.0393205554158], [-12.9418945289318, 12.0608090562388], [-12.9199218726857, 12.0608090562388], [-12.9199218726857, 12.0393205554158], [-12.9418945289318, 12.0393205554158]]]]}, "properties": {"taskId": 1953, "taskX": 7603, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 12.0178303356471], [-12.9418945289318, 12.0393205554158], [-12.9199218726857, 12.0393205554158], [-12.9199218726857, 12.0178303356471], [-12.9418945289318, 12.0178303356471]]]]}, "properties": {"taskId": 1952, "taskX": 7603, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.9963383998188], [-12.9418945289318, 12.0178303356471], [-12.9199218726857, 12.0178303356471], [-12.9199218726857, 11.9963383998188], [-12.9418945289318, 11.9963383998188]]]]}, "properties": {"taskId": 1951, "taskX": 7603, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.9748447508181], [-12.9418945289318, 11.9963383998188], [-12.9199218726857, 11.9963383998188], [-12.9199218726857, 11.9748447508181], [-12.9418945289318, 11.9748447508181]]]]}, "properties": {"taskId": 1950, "taskX": 7603, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.9533493915333], [-12.9418945289318, 11.9748447508181], [-12.9199218726857, 11.9748447508181], [-12.9199218726857, 11.9533493915333], [-12.9418945289318, 11.9533493915333]]]]}, "properties": {"taskId": 1949, "taskX": 7603, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.9318523248542], [-12.9418945289318, 11.9533493915333], [-12.9199218726857, 11.9533493915333], [-12.9199218726857, 11.9318523248542], [-12.9418945289318, 11.9318523248542]]]]}, "properties": {"taskId": 1948, "taskX": 7603, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.9103535536714], [-12.9418945289318, 11.9318523248542], [-12.9199218726857, 11.9318523248542], [-12.9199218726857, 11.9103535536714], [-12.9418945289318, 11.9103535536714]]]]}, "properties": {"taskId": 1947, "taskX": 7603, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.888853080877], [-12.9418945289318, 11.9103535536714], [-12.9199218726857, 11.9103535536714], [-12.9199218726857, 11.888853080877], [-12.9418945289318, 11.888853080877]]]]}, "properties": {"taskId": 1946, "taskX": 7603, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.8458470420268], [-12.9418945289318, 11.867350909364], [-12.9199218726857, 11.867350909364], [-12.9199218726857, 11.8458470420268], [-12.9418945289318, 11.8458470420268]]]]}, "properties": {"taskId": 1944, "taskX": 7603, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.8028342314634], [-12.9418945289318, 11.8243414817611], [-12.9199218726857, 11.8243414817611], [-12.9199218726857, 11.8028342314634], [-12.9418945289318, 11.8028342314634]]]]}, "properties": {"taskId": 1942, "taskX": 7603, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.7813252940317], [-12.9418945289318, 11.8028342314634], [-12.9199218726857, 11.8028342314634], [-12.9199218726857, 11.7813252940317], [-12.9418945289318, 11.7813252940317]]]]}, "properties": {"taskId": 1941, "taskX": 7603, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.759814672365], [-12.9418945289318, 11.7813252940317], [-12.9199218726857, 11.7813252940317], [-12.9199218726857, 11.759814672365], [-12.9418945289318, 11.759814672365]]]]}, "properties": {"taskId": 1940, "taskX": 7603, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.7383023693636], [-12.9418945289318, 11.759814672365], [-12.9199218726857, 11.759814672365], [-12.9199218726857, 11.7383023693636], [-12.9418945289318, 11.7383023693636]]]]}, "properties": {"taskId": 1939, "taskX": 7603, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.6952727309636], [-12.9418945289318, 11.7167883879289], [-12.9199218726857, 11.7167883879289], [-12.9199218726857, 11.6952727309636], [-12.9418945289318, 11.6952727309636]]]]}, "properties": {"taskId": 1937, "taskX": 7603, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.6737554013713], [-12.9418945289318, 11.6952727309636], [-12.9199218726857, 11.6952727309636], [-12.9199218726857, 11.6737554013713], [-12.9418945289318, 11.6737554013713]]]]}, "properties": {"taskId": 1936, "taskX": 7603, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.652236402057], [-12.9418945289318, 11.6737554013713], [-12.9199218726857, 11.6737554013713], [-12.9199218726857, 11.652236402057], [-12.9418945289318, 11.652236402057]]]]}, "properties": {"taskId": 1935, "taskX": 7603, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.6307157359267], [-12.9418945289318, 11.652236402057], [-12.9199218726857, 11.652236402057], [-12.9199218726857, 11.6307157359267], [-12.9418945289318, 11.6307157359267]]]]}, "properties": {"taskId": 1934, "taskX": 7603, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.6091934058879], [-12.9418945289318, 11.6307157359267], [-12.9199218726857, 11.6307157359267], [-12.9199218726857, 11.6091934058879], [-12.9418945289318, 11.6091934058879]]]]}, "properties": {"taskId": 1933, "taskX": 7603, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.5876694148488], [-12.9418945289318, 11.6091934058879], [-12.9199218726857, 11.6091934058879], [-12.9199218726857, 11.5876694148488], [-12.9418945289318, 11.5876694148488]]]]}, "properties": {"taskId": 1932, "taskX": 7603, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.5661437657192], [-12.9418945289318, 11.5876694148488], [-12.9199218726857, 11.5876694148488], [-12.9199218726857, 11.5661437657192], [-12.9418945289318, 11.5661437657192]]]]}, "properties": {"taskId": 1931, "taskX": 7603, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 12.0822958352314], [-13.5791015600676, 12.10378088951], [-13.5571289038216, 12.10378088951], [-13.5571289038216, 12.0822958352314], [-13.5791015600676, 12.0822958352314]]]]}, "properties": {"taskId": 692, "taskX": 7574, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 11.5446164614097], [-12.8979492164397, 11.5661437657192], [-12.8759765601936, 11.5661437657192], [-12.8759765601936, 11.5446164614097], [-12.8979492164397, 11.5446164614097]]]]}, "properties": {"taskId": 1999, "taskX": 7605, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 12.0608090562388], [-13.2934570288688, 12.0822958352314], [-13.2714843726227, 12.0822958352314], [-13.2714843726227, 12.0608090562388], [-13.2934570288688, 12.0608090562388]]]]}, "properties": {"taskId": 1278, "taskX": 7587, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.9318523248542], [-12.8540039039475, 11.9533493915333], [-12.8320312477014, 11.9533493915333], [-12.8320312477014, 11.9318523248542], [-12.8540039039475, 11.9318523248542]]]]}, "properties": {"taskId": 2086, "taskX": 7607, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.867350909364], [-13.00781249767, 11.888853080877], [-12.9858398414239, 11.888853080877], [-12.9858398414239, 11.867350909364], [-13.00781249767, 11.867350909364]]]]}, "properties": {"taskId": 1833, "taskX": 7600, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.8458470420268], [-13.5791015600676, 11.867350909364], [-13.5571289038216, 11.867350909364], [-13.5571289038216, 11.8458470420268], [-13.5791015600676, 11.8458470420268]]]]}, "properties": {"taskId": 681, "taskX": 7574, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.6091934058879], [-12.8320312477014, 11.6307157359267], [-12.8100585914554, 11.6307157359267], [-12.8100585914554, 11.6091934058879], [-12.8320312477014, 11.6091934058879]]]]}, "properties": {"taskId": 2105, "taskX": 7608, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 11.6307157359267], [-13.8867187475125, 11.652236402057], [-13.8647460912664, 11.652236402057], [-13.8647460912664, 11.6307157359267], [-13.8867187475125, 11.6307157359267]]]]}, "properties": {"taskId": 131, "taskX": 7560, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 12.2326548348556], [-13.7988281225283, 12.2541277354958], [-13.7768554662822, 12.2541277354958], [-13.7768554662822, 12.2326548348556], [-13.7988281225283, 12.2326548348556]]]]}, "properties": {"taskId": 278, "taskX": 7564, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.9318523248542], [-13.5571289038216, 11.9533493915333], [-13.5351562475755, 11.9533493915333], [-13.5351562475755, 11.9318523248542], [-13.5571289038216, 11.9318523248542]]]]}, "properties": {"taskId": 729, "taskX": 7575, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 12.2541277354958], [-13.5131835913294, 12.2755988883965], [-13.4912109350834, 12.2755988883965], [-13.4912109350834, 12.2541277354958], [-13.5131835913294, 12.2541277354958]]]]}, "properties": {"taskId": 833, "taskX": 7577, "taskY": 8754, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-14.040527341235, 11.6307157359267], [-14.040527341235, 11.652236402057], [-14.0185546849889, 11.652236402057], [-14.0185546849889, 11.6307157359267], [-14.040527341235, 11.6307157359267]]]]}, "properties": {"taskId": 17, "taskX": 7553, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4417724585297, 11.9909651480657], [-13.4362792944682, 11.9909651480657], [-13.4362792944682, 11.9963383998188], [-13.4417724585297, 11.9963383998188], [-13.4417724585297, 11.9909651480657]]]]}, "properties": {"taskId": 2278, "taskX": 30321, "taskY": 34967, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4417724585297, 11.9855917892845], [-13.4362792944682, 11.9855917892845], [-13.4362792944682, 11.9909651480657], [-13.4417724585297, 11.9909651480657], [-13.4417724585297, 11.9855917892845]]]]}, "properties": {"taskId": 2277, "taskX": 30321, "taskY": 34966, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.9909651480657], [-13.4417724585297, 11.9909651480657], [-13.4417724585297, 11.9963383998188], [-13.4472656225912, 11.9963383998188], [-13.4472656225912, 11.9909651480657]]]]}, "properties": {"taskId": 2276, "taskX": 30320, "taskY": 34967, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.9855917892845], [-13.4417724585297, 11.9855917892845], [-13.4417724585297, 11.9909651480657], [-13.4472656225912, 11.9909651480657], [-13.4472656225912, 11.9855917892845]]]]}, "properties": {"taskId": 2275, "taskX": 30320, "taskY": 34966, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4362792944682, 11.9855917892845], [-13.4252929663452, 11.9855917892845], [-13.4252929663452, 11.9963383998188], [-13.4362792944682, 11.9963383998188], [-13.4362792944682, 11.9855917892845]]]]}, "properties": {"taskId": 2274, "taskX": 15161, "taskY": 17483, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4362792944682, 11.974844750818], [-13.4252929663452, 11.974844750818], [-13.4252929663452, 11.9855917892845], [-13.4362792944682, 11.9855917892845], [-13.4362792944682, 11.974844750818]]]]}, "properties": {"taskId": 2273, "taskX": 15161, "taskY": 17482, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.974844750818], [-13.4362792944682, 11.974844750818], [-13.4362792944682, 11.9855917892845], [-13.4472656225912, 11.9855917892845], [-13.4472656225912, 11.974844750818]]]]}, "properties": {"taskId": 2271, "taskX": 15160, "taskY": 17482, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.8243414817611], [-13.5571289038216, 11.8458470420268], [-13.5351562475755, 11.8458470420268], [-13.5351562475755, 11.8243414817611], [-13.5571289038216, 11.8243414817611]]]]}, "properties": {"taskId": 724, "taskX": 7575, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7770996070863, 11.5984316178116], [-12.7661132789632, 11.5984316178116], [-12.7661132789632, 11.6091934058879], [-12.7770996070863, 11.6091934058879], [-12.7770996070863, 11.5984316178116]]]]}, "properties": {"taskId": 2270, "taskX": 15221, "taskY": 17447, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7770996070863, 11.5876694148489], [-12.7661132789632, 11.5876694148489], [-12.7661132789632, 11.5984316178116], [-12.7770996070863, 11.5984316178116], [-12.7770996070863, 11.5876694148489]]]]}, "properties": {"taskId": 2269, "taskX": 15221, "taskY": 17446, "taskZoom": 15, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7880859352093, 11.5984316178116], [-12.7770996070863, 11.5984316178116], [-12.7770996070863, 11.6091934058879], [-12.7880859352093, 11.6091934058879], [-12.7880859352093, 11.5984316178116]]]]}, "properties": {"taskId": 2268, "taskX": 15220, "taskY": 17447, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7880859352093, 11.5876694148489], [-12.7770996070863, 11.5876694148489], [-12.7770996070863, 11.5984316178116], [-12.7880859352093, 11.5984316178116], [-12.7880859352093, 11.5876694148489]]]]}, "properties": {"taskId": 2267, "taskX": 15220, "taskY": 17446, "taskZoom": 15, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3264160132379, 11.9855917892845], [-13.3154296851149, 11.9855917892845], [-13.3154296851149, 11.9963383998188], [-13.3264160132379, 11.9963383998188], [-13.3264160132379, 11.9855917892845]]]]}, "properties": {"taskId": 2266, "taskX": 15171, "taskY": 17483, "taskZoom": 15, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3264160132379, 11.974844750818], [-13.3154296851149, 11.974844750818], [-13.3154296851149, 11.9855917892845], [-13.3264160132379, 11.9855917892845], [-13.3264160132379, 11.974844750818]]]]}, "properties": {"taskId": 2265, "taskX": 15171, "taskY": 17482, "taskZoom": 15, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.9855917892845], [-13.3264160132379, 11.9855917892845], [-13.3264160132379, 11.9963383998188], [-13.3374023413609, 11.9963383998188], [-13.3374023413609, 11.9855917892845]]]]}, "properties": {"taskId": 2264, "taskX": 15170, "taskY": 17483, "taskZoom": 15, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.974844750818], [-13.3264160132379, 11.974844750818], [-13.3264160132379, 11.9855917892845], [-13.3374023413609, 11.9855917892845], [-13.3374023413609, 11.974844750818]]]]}, "properties": {"taskId": 2263, "taskX": 15170, "taskY": 17482, "taskZoom": 15, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.2646122105126], [-13.0737304664082, 11.2861607667571], [-13.0517578101621, 11.2861607667571], [-13.0517578101621, 11.2646122105126], [-13.0737304664082, 11.2646122105126]]]]}, "properties": {"taskId": 1676, "taskX": 7597, "taskY": 8708, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.9963383998188], [-13.6889648412979, 12.0178303356471], [-13.6669921850519, 12.0178303356471], [-13.6669921850519, 11.9963383998188], [-13.6889648412979, 11.9963383998188]]]]}, "properties": {"taskId": 467, "taskX": 7569, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.8243414817611], [-13.5791015600676, 11.8458470420268], [-13.5571289038216, 11.8458470420268], [-13.5571289038216, 11.8243414817611], [-13.5791015600676, 11.8243414817611]]]]}, "properties": {"taskId": 680, "taskX": 7574, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.5661437657192], [-13.4692382788373, 11.5876694148488], [-13.4472656225912, 11.5876694148488], [-13.4472656225912, 11.5661437657192], [-13.4692382788373, 11.5661437657192]]]]}, "properties": {"taskId": 895, "taskX": 7579, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 12.1897038018535], [-13.8647460912664, 12.2111801893498], [-13.8427734350204, 12.2111801893498], [-13.8427734350204, 12.1897038018535], [-13.8647460912664, 12.1897038018535]]]]}, "properties": {"taskId": 174, "taskX": 7561, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.6307157359267], [-13.5571289038216, 11.652236402057], [-13.5351562475755, 11.652236402057], [-13.5351562475755, 11.6307157359267], [-13.5571289038216, 11.6307157359267]]]]}, "properties": {"taskId": 715, "taskX": 7575, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.5661437657192], [-13.6669921850519, 11.5876694148488], [-13.6450195288058, 11.5876694148488], [-13.6450195288058, 11.5661437657192], [-13.6669921850519, 11.5661437657192]]]]}, "properties": {"taskId": 492, "taskX": 7570, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.867350909364], [-13.359374997607, 11.888853080877], [-13.3374023413609, 11.888853080877], [-13.3374023413609, 11.867350909364], [-13.359374997607, 11.867350909364]]]]}, "properties": {"taskId": 1149, "taskX": 7584, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 12.1682256752432], [-13.5791015600676, 12.1897038018535], [-13.5571289038216, 12.1897038018535], [-13.5571289038216, 12.1682256752432], [-13.5791015600676, 12.1682256752432]]]]}, "properties": {"taskId": 696, "taskX": 7574, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7219238256671, 12.2219177300312], [-13.710937497544, 12.2219177300312], [-13.710937497544, 12.2326548348556], [-13.7219238256671, 12.2326548348556], [-13.7219238256671, 12.2219177300312]]]]}, "properties": {"taskId": 2262, "taskX": 15135, "taskY": 17505, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7219238256671, 12.2111801893498], [-13.710937497544, 12.2111801893498], [-13.710937497544, 12.2219177300312], [-13.7219238256671, 12.2219177300312], [-13.7219238256671, 12.2111801893498]]]]}, "properties": {"taskId": 2261, "taskX": 15135, "taskY": 17504, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 12.2219177300312], [-13.7219238256671, 12.2219177300312], [-13.7219238256671, 12.2326548348556], [-13.7329101537901, 12.2326548348556], [-13.7329101537901, 12.2219177300312]]]]}, "properties": {"taskId": 2260, "taskX": 15134, "taskY": 17505, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 12.2111801893498], [-13.7219238256671, 12.2111801893498], [-13.7219238256671, 12.2219177300312], [-13.7329101537901, 12.2219177300312], [-13.7329101537901, 12.2111801893498]]]]}, "properties": {"taskId": 2259, "taskX": 15134, "taskY": 17504, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5021972632064, 12.00708458206], [-13.4912109350834, 12.00708458206], [-13.4912109350834, 12.0178303356471], [-13.5021972632064, 12.0178303356471], [-13.5021972632064, 12.00708458206]]]]}, "properties": {"taskId": 2258, "taskX": 15155, "taskY": 17485, "taskZoom": 15, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5021972632064, 11.9963383998188], [-13.4912109350834, 11.9963383998188], [-13.4912109350834, 12.00708458206], [-13.5021972632064, 12.00708458206], [-13.5021972632064, 11.9963383998188]]]]}, "properties": {"taskId": 2257, "taskX": 15155, "taskY": 17484, "taskZoom": 15, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 12.00708458206], [-13.5021972632064, 12.00708458206], [-13.5021972632064, 12.0178303356471], [-13.5131835913294, 12.0178303356471], [-13.5131835913294, 12.00708458206]]]]}, "properties": {"taskId": 2256, "taskX": 15154, "taskY": 17485, "taskZoom": 15, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.9963383998188], [-13.5021972632064, 11.9963383998188], [-13.5021972632064, 12.00708458206], [-13.5131835913294, 12.00708458206], [-13.5131835913294, 11.9963383998188]]]]}, "properties": {"taskId": 2255, "taskX": 15154, "taskY": 17484, "taskZoom": 15, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.5230875048322], [-13.6669921850519, 11.5446164614097], [-13.6450195288058, 11.5446164614097], [-13.6450195288058, 11.5230875048322], [-13.6669921850519, 11.5230875048322]]]]}, "properties": {"taskId": 490, "taskX": 7570, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.888853080877], [-13.5131835913294, 11.9103535536714], [-13.4912109350834, 11.9103535536714], [-13.4912109350834, 11.888853080877], [-13.5131835913294, 11.888853080877]]]]}, "properties": {"taskId": 816, "taskX": 7577, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 12.1682256752432], [-13.4472656225912, 12.1897038018535], [-13.4252929663452, 12.1897038018535], [-13.4252929663452, 12.1682256752432], [-13.4472656225912, 12.1682256752432]]]]}, "properties": {"taskId": 971, "taskX": 7580, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 12.2326548348556], [-13.5791015600676, 12.2541277354958], [-13.5571289038216, 12.2541277354958], [-13.5571289038216, 12.2326548348556], [-13.5791015600676, 12.2326548348556]]]]}, "properties": {"taskId": 699, "taskX": 7574, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7770996070863, 11.5123224078533], [-12.7661132789632, 11.5123224078533], [-12.7661132789632, 11.5230875048322], [-12.7770996070863, 11.5230875048322], [-12.7770996070863, 11.5123224078533]]]]}, "properties": {"taskId": 2254, "taskX": 15221, "taskY": 17439, "taskZoom": 15, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7770996070863, 11.5015568988999], [-12.7661132789632, 11.5015568988999], [-12.7661132789632, 11.5123224078533], [-12.7770996070863, 11.5123224078533], [-12.7770996070863, 11.5015568988999]]]]}, "properties": {"taskId": 2253, "taskX": 15221, "taskY": 17438, "taskZoom": 15, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7880859352093, 11.5123224078533], [-12.7770996070863, 11.5123224078533], [-12.7770996070863, 11.5230875048322], [-12.7880859352093, 11.5230875048322], [-12.7880859352093, 11.5123224078533]]]]}, "properties": {"taskId": 2252, "taskX": 15220, "taskY": 17439, "taskZoom": 15, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7880859352093, 11.5015568988999], [-12.7770996070863, 11.5015568988999], [-12.7770996070863, 11.5123224078533], [-12.7880859352093, 11.5123224078533], [-12.7880859352093, 11.5015568988999]]]]}, "properties": {"taskId": 2251, "taskX": 15220, "taskY": 17438, "taskZoom": 15, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.9748447508181], [-13.2934570288688, 11.9963383998188], [-13.2714843726227, 11.9963383998188], [-13.2714843726227, 11.9748447508181], [-13.2934570288688, 11.9748447508181]]]]}, "properties": {"taskId": 1274, "taskX": 7587, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.5876694148488], [-13.5571289038216, 11.6091934058879], [-13.5351562475755, 11.6091934058879], [-13.5351562475755, 11.5876694148488], [-13.5571289038216, 11.5876694148488]]]]}, "properties": {"taskId": 713, "taskX": 7575, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 12.0822958352314], [-12.8540039039475, 12.10378088951], [-12.8320312477014, 12.10378088951], [-12.8320312477014, 12.0822958352314], [-12.8540039039475, 12.0822958352314]]]]}, "properties": {"taskId": 2093, "taskX": 7607, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 12.2541277354958], [-13.5571289038216, 12.2755988883965], [-13.5351562475755, 12.2755988883965], [-13.5351562475755, 12.2541277354958], [-13.5571289038216, 12.2541277354958]]]]}, "properties": {"taskId": 744, "taskX": 7575, "taskY": 8754, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.5230875048322], [-13.5571289038216, 11.5446164614097], [-13.5351562475755, 11.5446164614097], [-13.5351562475755, 11.5230875048322], [-13.5571289038216, 11.5230875048322]]]]}, "properties": {"taskId": 710, "taskX": 7575, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.4369552141218], [-13.1176757789003, 11.4584907506287], [-13.0957031226542, 11.4584907506287], [-13.0957031226542, 11.4369552141218], [-13.1176757789003, 11.4369552141218]]]]}, "properties": {"taskId": 1599, "taskX": 7595, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 12.2111801893498], [-13.6889648412979, 12.2326548348556], [-13.6669921850519, 12.2326548348556], [-13.6669921850519, 12.2111801893498], [-13.6889648412979, 12.2111801893498]]]]}, "properties": {"taskId": 477, "taskX": 7569, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 11.4584907506287], [-13.7548828100361, 11.480024646527], [-13.7329101537901, 11.480024646527], [-13.7329101537901, 11.4584907506287], [-13.7548828100361, 11.4584907506287]]]]}, "properties": {"taskId": 321, "taskX": 7566, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 11.3723387901308], [-13.8867187475125, 11.3938792309534], [-13.8647460912664, 11.3938792309534], [-13.8647460912664, 11.3723387901308], [-13.8867187475125, 11.3723387901308]]]]}, "properties": {"taskId": 119, "taskX": 7560, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.8458470420268], [-13.0737304664082, 11.867350909364], [-13.0517578101621, 11.867350909364], [-13.0517578101621, 11.8458470420268], [-13.0737304664082, 11.8458470420268]]]]}, "properties": {"taskId": 1703, "taskX": 7597, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.8243414817611], [-13.0737304664082, 11.8458470420268], [-13.0517578101621, 11.8458470420268], [-13.0517578101621, 11.8243414817611], [-13.0737304664082, 11.8243414817611]]]]}, "properties": {"taskId": 1702, "taskX": 7597, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.5446164614097], [-13.3154296851149, 11.5661437657192], [-13.2934570288688, 11.5661437657192], [-13.2934570288688, 11.5446164614097], [-13.3154296851149, 11.5446164614097]]]]}, "properties": {"taskId": 1213, "taskX": 7586, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.5446164614097], [-13.5571289038216, 11.5661437657192], [-13.5351562475755, 11.5661437657192], [-13.5351562475755, 11.5446164614097], [-13.5571289038216, 11.5446164614097]]]]}, "properties": {"taskId": 711, "taskX": 7575, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7095642065286, 11.6293706390165], [-13.7081909155133, 11.6293706390165], [-13.7081909155133, 11.6307157359267], [-13.7095642065286, 11.6307157359267], [-13.7095642065286, 11.6293706390165]]]]}, "properties": {"taskId": 2242, "taskX": 121089, "taskY": 139599, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7095642065286, 11.6280255356072], [-13.7081909155133, 11.6280255356072], [-13.7081909155133, 11.6293706390165], [-13.7095642065286, 11.6293706390165], [-13.7095642065286, 11.6280255356072]]]]}, "properties": {"taskId": 2241, "taskX": 121089, "taskY": 139598, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.630043188284], [-13.7105941747902, 11.630043188284], [-13.7105941747902, 11.6303794623085], [-13.710937497544, 11.6303794623085], [-13.710937497544, 11.630043188284]]]]}, "properties": {"taskId": 2247, "taskX": 484352, "taskY": 558398, "taskZoom": 20, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7105941747902, 11.630043188284], [-13.7102508520363, 11.630043188284], [-13.7102508520363, 11.6303794623085], [-13.7105941747902, 11.6303794623085], [-13.7105941747902, 11.630043188284]]]]}, "properties": {"taskId": 2249, "taskX": 484353, "taskY": 558398, "taskZoom": 20, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.5876694148488], [-13.0957031226542, 11.6091934058879], [-13.0737304664082, 11.6091934058879], [-13.0737304664082, 11.5876694148488], [-13.0957031226542, 11.5876694148488]]]]}, "properties": {"taskId": 1648, "taskX": 7596, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.6091934058879], [-13.1396484351464, 11.6307157359267], [-13.1176757789003, 11.6307157359267], [-13.1176757789003, 11.6091934058879], [-13.1396484351464, 11.6091934058879]]]]}, "properties": {"taskId": 1565, "taskX": 7594, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 12.10378088951], [-13.6889648412979, 12.1252642161921], [-13.6669921850519, 12.1252642161921], [-13.6669921850519, 12.10378088951], [-13.6889648412979, 12.10378088951]]]]}, "properties": {"taskId": 472, "taskX": 7569, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8100585914554, 11.652236402057], [-12.8100585914554, 11.6737554013713], [-12.7880859352093, 11.6737554013713], [-12.7880859352093, 11.652236402057], [-12.8100585914554, 11.652236402057]]]]}, "properties": {"taskId": 2140, "taskX": 7609, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.652236402057], [-12.8320312477014, 11.6737554013713], [-12.8100585914554, 11.6737554013713], [-12.8100585914554, 11.652236402057], [-12.8320312477014, 11.652236402057]]]]}, "properties": {"taskId": 2107, "taskX": 7608, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 11.480024646527], [-13.7988281225283, 11.5015568988999], [-13.7768554662822, 11.5015568988999], [-13.7768554662822, 11.480024646527], [-13.7988281225283, 11.480024646527]]]]}, "properties": {"taskId": 256, "taskX": 7564, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.699951169421, 11.6199547787141], [-13.6889648412979, 11.6199547787141], [-13.6889648412979, 11.6307157359267], [-13.699951169421, 11.6307157359267], [-13.699951169421, 11.6199547787141]]]]}, "properties": {"taskId": 2230, "taskX": 15137, "taskY": 17449, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.699951169421, 11.6091934058879], [-13.6889648412979, 11.6091934058879], [-13.6889648412979, 11.6199547787141], [-13.699951169421, 11.6199547787141], [-13.699951169421, 11.6091934058879]]]]}, "properties": {"taskId": 2229, "taskX": 15137, "taskY": 17448, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.6091934058879], [-13.699951169421, 11.6091934058879], [-13.699951169421, 11.6199547787141], [-13.710937497544, 11.6199547787141], [-13.710937497544, 11.6091934058879]]]]}, "properties": {"taskId": 2227, "taskX": 15136, "taskY": 17448, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8979492164397, 12.1252642161921], [-12.8979492164397, 12.1467458123965], [-12.8759765601936, 12.1467458123965], [-12.8759765601936, 12.1252642161921], [-12.8979492164397, 12.1252642161921]]]]}, "properties": {"taskId": 2026, "taskX": 7605, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7054443334825, 11.6253353092949], [-13.699951169421, 11.6253353092949], [-13.699951169421, 11.6307157359267], [-13.7054443334825, 11.6307157359267], [-13.7054443334825, 11.6253353092949]]]]}, "properties": {"taskId": 2234, "taskX": 30273, "taskY": 34899, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.759814672365], [-12.9638671851778, 11.7813252940317], [-12.9418945289318, 11.7813252940317], [-12.9418945289318, 11.759814672365], [-12.9638671851778, 11.759814672365]]]]}, "properties": {"taskId": 1906, "taskX": 7602, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.7661132789632, 11.5015568988999], [-12.7661132789632, 11.5230875048322], [-12.7441406227172, 11.5230875048322], [-12.7441406227172, 11.5015568988999], [-12.7661132789632, 11.5015568988999]]]]}, "properties": {"taskId": 2182, "taskX": 7611, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 12.1252642161921], [-13.5571289038216, 12.1467458123965], [-13.5351562475755, 12.1467458123965], [-13.5351562475755, 12.1252642161921], [-13.5571289038216, 12.1252642161921]]]]}, "properties": {"taskId": 738, "taskX": 7575, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.6952727309636], [-13.00781249767, 11.7167883879289], [-12.9858398414239, 11.7167883879289], [-12.9858398414239, 11.6952727309636], [-13.00781249767, 11.6952727309636]]]]}, "properties": {"taskId": 1825, "taskX": 7600, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.7167883879289], [-12.9638671851778, 11.7383023693636], [-12.9418945289318, 11.7383023693636], [-12.9418945289318, 11.7167883879289], [-12.9638671851778, 11.7167883879289]]]]}, "properties": {"taskId": 1904, "taskX": 7602, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.7383023693636], [-13.4033203100991, 11.759814672365], [-13.3813476538531, 11.759814672365], [-13.3813476538531, 11.7383023693636], [-13.4033203100991, 11.7383023693636]]]]}, "properties": {"taskId": 1048, "taskX": 7582, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.7383023693636], [-13.3374023413609, 11.759814672365], [-13.3154296851149, 11.759814672365], [-13.3154296851149, 11.7383023693636], [-13.3374023413609, 11.7383023693636]]]]}, "properties": {"taskId": 1185, "taskX": 7585, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7081909155133, 11.6253353092949], [-13.7054443334825, 11.6253353092949], [-13.7054443334825, 11.6280255356072], [-13.7081909155133, 11.6280255356072], [-13.7081909155133, 11.6253353092949]]]]}, "properties": {"taskId": 2237, "taskX": 60545, "taskY": 69798, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7081909155133, 11.6280255356072], [-13.7054443334825, 11.6280255356072], [-13.7054443334825, 11.6307157359267], [-13.7081909155133, 11.6307157359267], [-13.7081909155133, 11.6280255356072]]]]}, "properties": {"taskId": 2238, "taskX": 60545, "taskY": 69799, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.6253353092949], [-13.7081909155133, 11.6253353092949], [-13.7081909155133, 11.6280255356072], [-13.710937497544, 11.6280255356072], [-13.710937497544, 11.6253353092949]]]]}, "properties": {"taskId": 2235, "taskX": 60544, "taskY": 69798, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.6280255356072], [-13.7095642065286, 11.6280255356072], [-13.7095642065286, 11.6293706390165], [-13.710937497544, 11.6293706390165], [-13.710937497544, 11.6280255356072]]]]}, "properties": {"taskId": 2239, "taskX": 121088, "taskY": 139598, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.6293706390165], [-13.7102508520363, 11.6293706390165], [-13.7102508520363, 11.630043188284], [-13.710937497544, 11.630043188284], [-13.710937497544, 11.6293706390165]]]]}, "properties": {"taskId": 2243, "taskX": 242176, "taskY": 279198, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 11.652236402057], [-13.8867187475125, 11.6737554013713], [-13.8647460912664, 11.6737554013713], [-13.8647460912664, 11.652236402057], [-13.8867187475125, 11.652236402057]]]]}, "properties": {"taskId": 132, "taskX": 7560, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 12.2970682906849], [-13.4692382788373, 12.3185359394895], [-13.4472656225912, 12.3185359394895], [-13.4472656225912, 12.2970682906849], [-13.4692382788373, 12.2970682906849]]]]}, "properties": {"taskId": 929, "taskX": 7579, "taskY": 8756, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9199218726857, 11.6952727309636], [-12.9199218726857, 11.7167883879289], [-12.8979492164397, 11.7167883879289], [-12.8979492164397, 11.6952727309636], [-12.9199218726857, 11.6952727309636]]]]}, "properties": {"taskId": 1972, "taskX": 7604, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.6303794623085], [-13.7105941747902, 11.6303794623085], [-13.7105941747902, 11.6307157359267], [-13.710937497544, 11.6307157359267], [-13.710937497544, 11.6303794623085]]]]}, "properties": {"taskId": 2248, "taskX": 484352, "taskY": 558399, "taskZoom": 20, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7105941747902, 11.6303794623085], [-13.7102508520363, 11.6303794623085], [-13.7102508520363, 11.6307157359267], [-13.7105941747902, 11.6307157359267], [-13.7105941747902, 11.6303794623085]]]]}, "properties": {"taskId": 2250, "taskX": 484353, "taskY": 558399, "taskZoom": 20, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7102508520363, 11.630043188284], [-13.7095642065286, 11.630043188284], [-13.7095642065286, 11.6307157359267], [-13.7102508520363, 11.6307157359267], [-13.7102508520363, 11.630043188284]]]]}, "properties": {"taskId": 2246, "taskX": 242177, "taskY": 279199, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7102508520363, 11.6293706390165], [-13.7095642065286, 11.6293706390165], [-13.7095642065286, 11.630043188284], [-13.7102508520363, 11.630043188284], [-13.7102508520363, 11.6293706390165]]]]}, "properties": {"taskId": 2245, "taskX": 242177, "taskY": 279198, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7054443334825, 11.6199547787141], [-13.699951169421, 11.6199547787141], [-13.699951169421, 11.6253353092949], [-13.7054443334825, 11.6253353092949], [-13.7054443334825, 11.6199547787141]]]]}, "properties": {"taskId": 2233, "taskX": 30273, "taskY": 34898, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.6199547787141], [-13.7054443334825, 11.6199547787141], [-13.7054443334825, 11.6253353092949], [-13.710937497544, 11.6253353092949], [-13.710937497544, 11.6199547787141]]]]}, "properties": {"taskId": 2231, "taskX": 30272, "taskY": 34898, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.8243414817611], [-13.1396484351464, 11.8458470420268], [-13.1176757789003, 11.8458470420268], [-13.1176757789003, 11.8243414817611], [-13.1396484351464, 11.8243414817611]]]]}, "properties": {"taskId": 1575, "taskX": 7594, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.7490587308498], [-12.8649902320705, 11.7490587308498], [-12.8649902320705, 11.759814672365], [-12.8759765601936, 11.759814672365], [-12.8759765601936, 11.7490587308498]]]]}, "properties": {"taskId": 2224, "taskX": 15212, "taskY": 17461, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.7383023693636], [-12.8649902320705, 11.7383023693636], [-12.8649902320705, 11.7490587308498], [-12.8759765601936, 11.7490587308498], [-12.8759765601936, 11.7383023693636]]]]}, "properties": {"taskId": 2223, "taskX": 15212, "taskY": 17460, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.759814672365], [-13.00781249767, 11.7813252940317], [-12.9858398414239, 11.7813252940317], [-12.9858398414239, 11.759814672365], [-13.00781249767, 11.759814672365]]]]}, "properties": {"taskId": 1828, "taskX": 7600, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.5446164614097], [-12.9418945289318, 11.5661437657192], [-12.9199218726857, 11.5661437657192], [-12.9199218726857, 11.5446164614097], [-12.9418945289318, 11.5446164614097]]]]}, "properties": {"taskId": 1930, "taskX": 7603, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.5230875048322], [-12.9418945289318, 11.5446164614097], [-12.9199218726857, 11.5446164614097], [-12.9199218726857, 11.5230875048322], [-12.9418945289318, 11.5230875048322]]]]}, "properties": {"taskId": 1929, "taskX": 7603, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.5015568988999], [-12.9418945289318, 11.5230875048322], [-12.9199218726857, 11.5230875048322], [-12.9199218726857, 11.5015568988999], [-12.9418945289318, 11.5015568988999]]]]}, "properties": {"taskId": 1928, "taskX": 7603, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.480024646527], [-12.9418945289318, 11.5015568988999], [-12.9199218726857, 11.5015568988999], [-12.9199218726857, 11.480024646527], [-12.9418945289318, 11.480024646527]]]]}, "properties": {"taskId": 1927, "taskX": 7603, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.4584907506287], [-12.9418945289318, 11.480024646527], [-12.9199218726857, 11.480024646527], [-12.9199218726857, 11.4584907506287], [-12.9418945289318, 11.4584907506287]]]]}, "properties": {"taskId": 1926, "taskX": 7603, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.4369552141218], [-12.9418945289318, 11.4584907506287], [-12.9199218726857, 11.4584907506287], [-12.9199218726857, 11.4369552141218], [-12.9418945289318, 11.4369552141218]]]]}, "properties": {"taskId": 1925, "taskX": 7603, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.4154180399237], [-12.9418945289318, 11.4369552141218], [-12.9199218726857, 11.4369552141218], [-12.9199218726857, 11.4154180399237], [-12.9418945289318, 11.4154180399237]]]]}, "properties": {"taskId": 1924, "taskX": 7603, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.3938792309534], [-12.9418945289318, 11.4154180399237], [-12.9199218726857, 11.4154180399237], [-12.9199218726857, 11.3938792309534], [-12.9418945289318, 11.3938792309534]]]]}, "properties": {"taskId": 1923, "taskX": 7603, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9418945289318, 11.3723387901308], [-12.9418945289318, 11.3938792309534], [-12.9199218726857, 11.3938792309534], [-12.9199218726857, 11.3723387901308], [-12.9418945289318, 11.3723387901308]]]]}, "properties": {"taskId": 1922, "taskX": 7603, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 12.0178303356471], [-12.9638671851778, 12.0393205554158], [-12.9418945289318, 12.0393205554158], [-12.9418945289318, 12.0178303356471], [-12.9638671851778, 12.0178303356471]]]]}, "properties": {"taskId": 1918, "taskX": 7602, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.9963383998188], [-12.9638671851778, 12.0178303356471], [-12.9418945289318, 12.0178303356471], [-12.9418945289318, 11.9963383998188], [-12.9638671851778, 11.9963383998188]]]]}, "properties": {"taskId": 1917, "taskX": 7602, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.9748447508181], [-12.9638671851778, 11.9963383998188], [-12.9418945289318, 11.9963383998188], [-12.9418945289318, 11.9748447508181], [-12.9638671851778, 11.9748447508181]]]]}, "properties": {"taskId": 1916, "taskX": 7602, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.9533493915333], [-12.9638671851778, 11.9748447508181], [-12.9418945289318, 11.9748447508181], [-12.9418945289318, 11.9533493915333], [-12.9638671851778, 11.9533493915333]]]]}, "properties": {"taskId": 1915, "taskX": 7602, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.9318523248542], [-12.9638671851778, 11.9533493915333], [-12.9418945289318, 11.9533493915333], [-12.9418945289318, 11.9318523248542], [-12.9638671851778, 11.9318523248542]]]]}, "properties": {"taskId": 1914, "taskX": 7602, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.9103535536714], [-12.9638671851778, 11.9318523248542], [-12.9418945289318, 11.9318523248542], [-12.9418945289318, 11.9103535536714], [-12.9638671851778, 11.9103535536714]]]]}, "properties": {"taskId": 1913, "taskX": 7602, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.888853080877], [-12.9638671851778, 11.9103535536714], [-12.9418945289318, 11.9103535536714], [-12.9418945289318, 11.888853080877], [-12.9638671851778, 11.888853080877]]]]}, "properties": {"taskId": 1912, "taskX": 7602, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.867350909364], [-12.9638671851778, 11.888853080877], [-12.9418945289318, 11.888853080877], [-12.9418945289318, 11.867350909364], [-12.9638671851778, 11.867350909364]]]]}, "properties": {"taskId": 1911, "taskX": 7602, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.8458470420268], [-12.9638671851778, 11.867350909364], [-12.9418945289318, 11.867350909364], [-12.9418945289318, 11.8458470420268], [-12.9638671851778, 11.8458470420268]]]]}, "properties": {"taskId": 1910, "taskX": 7602, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.8243414817611], [-12.9638671851778, 11.8458470420268], [-12.9418945289318, 11.8458470420268], [-12.9418945289318, 11.8243414817611], [-12.9638671851778, 11.8243414817611]]]]}, "properties": {"taskId": 1909, "taskX": 7602, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.8028342314634], [-12.9638671851778, 11.8243414817611], [-12.9418945289318, 11.8243414817611], [-12.9418945289318, 11.8028342314634], [-12.9638671851778, 11.8028342314634]]]]}, "properties": {"taskId": 1908, "taskX": 7602, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.7813252940317], [-12.9638671851778, 11.8028342314634], [-12.9418945289318, 11.8028342314634], [-12.9418945289318, 11.7813252940317], [-12.9638671851778, 11.7813252940317]]]]}, "properties": {"taskId": 1907, "taskX": 7602, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.7383023693636], [-12.9638671851778, 11.759814672365], [-12.9418945289318, 11.759814672365], [-12.9418945289318, 11.7383023693636], [-12.9638671851778, 11.7383023693636]]]]}, "properties": {"taskId": 1905, "taskX": 7602, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.6952727309636], [-12.9638671851778, 11.7167883879289], [-12.9418945289318, 11.7167883879289], [-12.9418945289318, 11.6952727309636], [-12.9638671851778, 11.6952727309636]]]]}, "properties": {"taskId": 1903, "taskX": 7602, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.6737554013713], [-12.9638671851778, 11.6952727309636], [-12.9418945289318, 11.6952727309636], [-12.9418945289318, 11.6737554013713], [-12.9638671851778, 11.6737554013713]]]]}, "properties": {"taskId": 1902, "taskX": 7602, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.652236402057], [-12.9638671851778, 11.6737554013713], [-12.9418945289318, 11.6737554013713], [-12.9418945289318, 11.652236402057], [-12.9638671851778, 11.652236402057]]]]}, "properties": {"taskId": 1901, "taskX": 7602, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.6307157359267], [-12.9638671851778, 11.652236402057], [-12.9418945289318, 11.652236402057], [-12.9418945289318, 11.6307157359267], [-12.9638671851778, 11.6307157359267]]]]}, "properties": {"taskId": 1900, "taskX": 7602, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.6091934058879], [-12.9638671851778, 11.6307157359267], [-12.9418945289318, 11.6307157359267], [-12.9418945289318, 11.6091934058879], [-12.9638671851778, 11.6091934058879]]]]}, "properties": {"taskId": 1899, "taskX": 7602, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.5876694148488], [-12.9638671851778, 11.6091934058879], [-12.9418945289318, 11.6091934058879], [-12.9418945289318, 11.5876694148488], [-12.9638671851778, 11.5876694148488]]]]}, "properties": {"taskId": 1898, "taskX": 7602, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.5446164614097], [-12.9638671851778, 11.5661437657192], [-12.9418945289318, 11.5661437657192], [-12.9418945289318, 11.5446164614097], [-12.9638671851778, 11.5446164614097]]]]}, "properties": {"taskId": 1896, "taskX": 7602, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.5230875048322], [-12.9638671851778, 11.5446164614097], [-12.9418945289318, 11.5446164614097], [-12.9418945289318, 11.5230875048322], [-12.9638671851778, 11.5230875048322]]]]}, "properties": {"taskId": 1895, "taskX": 7602, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.5015568988999], [-12.9638671851778, 11.5230875048322], [-12.9418945289318, 11.5230875048322], [-12.9418945289318, 11.5015568988999], [-12.9638671851778, 11.5015568988999]]]]}, "properties": {"taskId": 1894, "taskX": 7602, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.480024646527], [-12.9638671851778, 11.5015568988999], [-12.9418945289318, 11.5015568988999], [-12.9418945289318, 11.480024646527], [-12.9638671851778, 11.480024646527]]]]}, "properties": {"taskId": 1893, "taskX": 7602, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.4584907506287], [-12.9638671851778, 11.480024646527], [-12.9418945289318, 11.480024646527], [-12.9418945289318, 11.4584907506287], [-12.9638671851778, 11.4584907506287]]]]}, "properties": {"taskId": 1892, "taskX": 7602, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.4369552141218], [-12.9638671851778, 11.4584907506287], [-12.9418945289318, 11.4584907506287], [-12.9418945289318, 11.4369552141218], [-12.9638671851778, 11.4369552141218]]]]}, "properties": {"taskId": 1891, "taskX": 7602, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.4154180399237], [-12.9638671851778, 11.4369552141218], [-12.9418945289318, 11.4369552141218], [-12.9418945289318, 11.4154180399237], [-12.9638671851778, 11.4154180399237]]]]}, "properties": {"taskId": 1890, "taskX": 7602, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.3938792309534], [-12.9638671851778, 11.4154180399237], [-12.9418945289318, 11.4154180399237], [-12.9418945289318, 11.3938792309534], [-12.9638671851778, 11.3938792309534]]]]}, "properties": {"taskId": 1889, "taskX": 7602, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.3723387901308], [-12.9638671851778, 11.3938792309534], [-12.9418945289318, 11.3938792309534], [-12.9418945289318, 11.3723387901308], [-12.9638671851778, 11.3723387901308]]]]}, "properties": {"taskId": 1888, "taskX": 7602, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.3507967203771], [-12.9638671851778, 11.3723387901308], [-12.9418945289318, 11.3723387901308], [-12.9418945289318, 11.3507967203771], [-12.9638671851778, 11.3507967203771]]]]}, "properties": {"taskId": 1887, "taskX": 7602, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9638671851778, 11.2861607667571], [-12.9638671851778, 11.3077077057662], [-12.9418945289318, 11.3077077057662], [-12.9418945289318, 11.2861607667571], [-12.9638671851778, 11.2861607667571]]]]}, "properties": {"taskId": 1886, "taskX": 7602, "taskY": 8709, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 12.0822958352314], [-12.9858398414239, 12.10378088951], [-12.9638671851778, 12.10378088951], [-12.9638671851778, 12.0822958352314], [-12.9858398414239, 12.0822958352314]]]]}, "properties": {"taskId": 1885, "taskX": 7601, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 12.0608090562388], [-12.9858398414239, 12.0822958352314], [-12.9638671851778, 12.0822958352314], [-12.9638671851778, 12.0608090562388], [-12.9858398414239, 12.0608090562388]]]]}, "properties": {"taskId": 1884, "taskX": 7601, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 12.0393205554158], [-12.9858398414239, 12.0608090562388], [-12.9638671851778, 12.0608090562388], [-12.9638671851778, 12.0393205554158], [-12.9858398414239, 12.0393205554158]]]]}, "properties": {"taskId": 1883, "taskX": 7601, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 12.0178303356471], [-12.9858398414239, 12.0393205554158], [-12.9638671851778, 12.0393205554158], [-12.9638671851778, 12.0178303356471], [-12.9858398414239, 12.0178303356471]]]]}, "properties": {"taskId": 1882, "taskX": 7601, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.9963383998188], [-12.9858398414239, 12.0178303356471], [-12.9638671851778, 12.0178303356471], [-12.9638671851778, 11.9963383998188], [-12.9858398414239, 11.9963383998188]]]]}, "properties": {"taskId": 1881, "taskX": 7601, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.9748447508181], [-12.9858398414239, 11.9963383998188], [-12.9638671851778, 11.9963383998188], [-12.9638671851778, 11.9748447508181], [-12.9858398414239, 11.9748447508181]]]]}, "properties": {"taskId": 1880, "taskX": 7601, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.9533493915333], [-12.9858398414239, 11.9748447508181], [-12.9638671851778, 11.9748447508181], [-12.9638671851778, 11.9533493915333], [-12.9858398414239, 11.9533493915333]]]]}, "properties": {"taskId": 1879, "taskX": 7601, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.9318523248542], [-12.9858398414239, 11.9533493915333], [-12.9638671851778, 11.9533493915333], [-12.9638671851778, 11.9318523248542], [-12.9858398414239, 11.9318523248542]]]]}, "properties": {"taskId": 1878, "taskX": 7601, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.9103535536714], [-12.9858398414239, 11.9318523248542], [-12.9638671851778, 11.9318523248542], [-12.9638671851778, 11.9103535536714], [-12.9858398414239, 11.9103535536714]]]]}, "properties": {"taskId": 1877, "taskX": 7601, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.888853080877], [-12.9858398414239, 11.9103535536714], [-12.9638671851778, 11.9103535536714], [-12.9638671851778, 11.888853080877], [-12.9858398414239, 11.888853080877]]]]}, "properties": {"taskId": 1876, "taskX": 7601, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.867350909364], [-12.9858398414239, 11.888853080877], [-12.9638671851778, 11.888853080877], [-12.9638671851778, 11.867350909364], [-12.9858398414239, 11.867350909364]]]]}, "properties": {"taskId": 1875, "taskX": 7601, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.8458470420268], [-12.9858398414239, 11.867350909364], [-12.9638671851778, 11.867350909364], [-12.9638671851778, 11.8458470420268], [-12.9858398414239, 11.8458470420268]]]]}, "properties": {"taskId": 1874, "taskX": 7601, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.8243414817611], [-12.9858398414239, 11.8458470420268], [-12.9638671851778, 11.8458470420268], [-12.9638671851778, 11.8243414817611], [-12.9858398414239, 11.8243414817611]]]]}, "properties": {"taskId": 1873, "taskX": 7601, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.8028342314634], [-12.9858398414239, 11.8243414817611], [-12.9638671851778, 11.8243414817611], [-12.9638671851778, 11.8028342314634], [-12.9858398414239, 11.8028342314634]]]]}, "properties": {"taskId": 1872, "taskX": 7601, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.7813252940317], [-12.9858398414239, 11.8028342314634], [-12.9638671851778, 11.8028342314634], [-12.9638671851778, 11.7813252940317], [-12.9858398414239, 11.7813252940317]]]]}, "properties": {"taskId": 1871, "taskX": 7601, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.759814672365], [-12.9858398414239, 11.7813252940317], [-12.9638671851778, 11.7813252940317], [-12.9638671851778, 11.759814672365], [-12.9858398414239, 11.759814672365]]]]}, "properties": {"taskId": 1870, "taskX": 7601, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.7383023693636], [-12.9858398414239, 11.759814672365], [-12.9638671851778, 11.759814672365], [-12.9638671851778, 11.7383023693636], [-12.9858398414239, 11.7383023693636]]]]}, "properties": {"taskId": 1869, "taskX": 7601, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.7167883879289], [-12.9858398414239, 11.7383023693636], [-12.9638671851778, 11.7383023693636], [-12.9638671851778, 11.7167883879289], [-12.9858398414239, 11.7167883879289]]]]}, "properties": {"taskId": 1868, "taskX": 7601, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.6952727309636], [-12.9858398414239, 11.7167883879289], [-12.9638671851778, 11.7167883879289], [-12.9638671851778, 11.6952727309636], [-12.9858398414239, 11.6952727309636]]]]}, "properties": {"taskId": 1867, "taskX": 7601, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.6737554013713], [-12.9858398414239, 11.6952727309636], [-12.9638671851778, 11.6952727309636], [-12.9638671851778, 11.6737554013713], [-12.9858398414239, 11.6737554013713]]]]}, "properties": {"taskId": 1866, "taskX": 7601, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.652236402057], [-12.9858398414239, 11.6737554013713], [-12.9638671851778, 11.6737554013713], [-12.9638671851778, 11.652236402057], [-12.9858398414239, 11.652236402057]]]]}, "properties": {"taskId": 1865, "taskX": 7601, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.6307157359267], [-12.9858398414239, 11.652236402057], [-12.9638671851778, 11.652236402057], [-12.9638671851778, 11.6307157359267], [-12.9858398414239, 11.6307157359267]]]]}, "properties": {"taskId": 1864, "taskX": 7601, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.6091934058879], [-12.9858398414239, 11.6307157359267], [-12.9638671851778, 11.6307157359267], [-12.9638671851778, 11.6091934058879], [-12.9858398414239, 11.6091934058879]]]]}, "properties": {"taskId": 1863, "taskX": 7601, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.5876694148488], [-12.9858398414239, 11.6091934058879], [-12.9638671851778, 11.6091934058879], [-12.9638671851778, 11.5876694148488], [-12.9858398414239, 11.5876694148488]]]]}, "properties": {"taskId": 1862, "taskX": 7601, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.5661437657192], [-12.9858398414239, 11.5876694148488], [-12.9638671851778, 11.5876694148488], [-12.9638671851778, 11.5661437657192], [-12.9858398414239, 11.5661437657192]]]]}, "properties": {"taskId": 1861, "taskX": 7601, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.5446164614097], [-12.9858398414239, 11.5661437657192], [-12.9638671851778, 11.5661437657192], [-12.9638671851778, 11.5446164614097], [-12.9858398414239, 11.5446164614097]]]]}, "properties": {"taskId": 1860, "taskX": 7601, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.5230875048322], [-12.9858398414239, 11.5446164614097], [-12.9638671851778, 11.5446164614097], [-12.9638671851778, 11.5230875048322], [-12.9858398414239, 11.5230875048322]]]]}, "properties": {"taskId": 1859, "taskX": 7601, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.480024646527], [-12.9858398414239, 11.5015568988999], [-12.9638671851778, 11.5015568988999], [-12.9638671851778, 11.480024646527], [-12.9858398414239, 11.480024646527]]]]}, "properties": {"taskId": 1857, "taskX": 7601, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.4584907506287], [-12.9858398414239, 11.480024646527], [-12.9638671851778, 11.480024646527], [-12.9638671851778, 11.4584907506287], [-12.9858398414239, 11.4584907506287]]]]}, "properties": {"taskId": 1856, "taskX": 7601, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.4369552141218], [-12.9858398414239, 11.4584907506287], [-12.9638671851778, 11.4584907506287], [-12.9638671851778, 11.4369552141218], [-12.9858398414239, 11.4369552141218]]]]}, "properties": {"taskId": 1855, "taskX": 7601, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.4154180399237], [-12.9858398414239, 11.4369552141218], [-12.9638671851778, 11.4369552141218], [-12.9638671851778, 11.4154180399237], [-12.9858398414239, 11.4154180399237]]]]}, "properties": {"taskId": 1854, "taskX": 7601, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.3938792309534], [-12.9858398414239, 11.4154180399237], [-12.9638671851778, 11.4154180399237], [-12.9638671851778, 11.3938792309534], [-12.9858398414239, 11.3938792309534]]]]}, "properties": {"taskId": 1853, "taskX": 7601, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.3723387901308], [-12.9858398414239, 11.3938792309534], [-12.9638671851778, 11.3938792309534], [-12.9638671851778, 11.3723387901308], [-12.9858398414239, 11.3723387901308]]]]}, "properties": {"taskId": 1852, "taskX": 7601, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.3507967203771], [-12.9858398414239, 11.3723387901308], [-12.9638671851778, 11.3723387901308], [-12.9638671851778, 11.3507967203771], [-12.9858398414239, 11.3507967203771]]]]}, "properties": {"taskId": 1851, "taskX": 7601, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.3292530246144], [-12.9858398414239, 11.3507967203771], [-12.9638671851778, 11.3507967203771], [-12.9638671851778, 11.3292530246144], [-12.9858398414239, 11.3292530246144]]]]}, "properties": {"taskId": 1850, "taskX": 7601, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.3077077057662], [-12.9858398414239, 11.3292530246144], [-12.9638671851778, 11.3292530246144], [-12.9638671851778, 11.3077077057662], [-12.9858398414239, 11.3077077057662]]]]}, "properties": {"taskId": 1849, "taskX": 7601, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.2861607667571], [-12.9858398414239, 11.3077077057662], [-12.9638671851778, 11.3077077057662], [-12.9638671851778, 11.2861607667571], [-12.9858398414239, 11.2861607667571]]]]}, "properties": {"taskId": 1848, "taskX": 7601, "taskY": 8709, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.2646122105126], [-12.9858398414239, 11.2861607667571], [-12.9638671851778, 11.2861607667571], [-12.9638671851778, 11.2646122105126], [-12.9858398414239, 11.2646122105126]]]]}, "properties": {"taskId": 1847, "taskX": 7601, "taskY": 8708, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.2430620399597], [-12.9858398414239, 11.2646122105126], [-12.9638671851778, 11.2646122105126], [-12.9638671851778, 11.2430620399597], [-12.9858398414239, 11.2430620399597]]]]}, "properties": {"taskId": 1846, "taskX": 7601, "taskY": 8707, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.2215102580262], [-12.9858398414239, 11.2430620399597], [-12.9638671851778, 11.2430620399597], [-12.9638671851778, 11.2215102580262], [-12.9858398414239, 11.2215102580262]]]]}, "properties": {"taskId": 1845, "taskX": 7601, "taskY": 8706, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.9858398414239, 11.1999568676412], [-12.9858398414239, 11.2215102580262], [-12.9638671851778, 11.2215102580262], [-12.9638671851778, 11.1999568676412], [-12.9858398414239, 11.1999568676412]]]]}, "properties": {"taskId": 1844, "taskX": 7601, "taskY": 8705, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 12.0608090562388], [-13.00781249767, 12.0822958352314], [-12.9858398414239, 12.0822958352314], [-12.9858398414239, 12.0608090562388], [-13.00781249767, 12.0608090562388]]]]}, "properties": {"taskId": 1842, "taskX": 7600, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 12.0393205554158], [-13.00781249767, 12.0608090562388], [-12.9858398414239, 12.0608090562388], [-12.9858398414239, 12.0393205554158], [-13.00781249767, 12.0393205554158]]]]}, "properties": {"taskId": 1841, "taskX": 7600, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 12.0178303356471], [-13.00781249767, 12.0393205554158], [-12.9858398414239, 12.0393205554158], [-12.9858398414239, 12.0178303356471], [-13.00781249767, 12.0178303356471]]]]}, "properties": {"taskId": 1840, "taskX": 7600, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.9963383998188], [-13.00781249767, 12.0178303356471], [-12.9858398414239, 12.0178303356471], [-12.9858398414239, 11.9963383998188], [-13.00781249767, 11.9963383998188]]]]}, "properties": {"taskId": 1839, "taskX": 7600, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.2215102580262], [-13.00781249767, 11.2430620399597], [-12.9858398414239, 11.2430620399597], [-12.9858398414239, 11.2215102580262], [-13.00781249767, 11.2215102580262]]]]}, "properties": {"taskId": 1803, "taskX": 7600, "taskY": 8706, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.1999568676412], [-13.00781249767, 11.2215102580262], [-12.9858398414239, 11.2215102580262], [-12.9858398414239, 11.1999568676412], [-13.00781249767, 11.1999568676412]]]]}, "properties": {"taskId": 1802, "taskX": 7600, "taskY": 8705, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.1784018717349], [-13.00781249767, 11.1999568676412], [-12.9858398414239, 11.1999568676412], [-12.9858398414239, 11.1784018717349], [-13.00781249767, 11.1784018717349]]]]}, "properties": {"taskId": 1801, "taskX": 7600, "taskY": 8704, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 12.0822958352314], [-13.029785153916, 12.10378088951], [-13.00781249767, 12.10378088951], [-13.00781249767, 12.0822958352314], [-13.029785153916, 12.0822958352314]]]]}, "properties": {"taskId": 1800, "taskX": 7599, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 12.0608090562388], [-13.029785153916, 12.0822958352314], [-13.00781249767, 12.0822958352314], [-13.00781249767, 12.0608090562388], [-13.029785153916, 12.0608090562388]]]]}, "properties": {"taskId": 1799, "taskX": 7599, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 12.0393205554158], [-13.029785153916, 12.0608090562388], [-13.00781249767, 12.0608090562388], [-13.00781249767, 12.0393205554158], [-13.029785153916, 12.0393205554158]]]]}, "properties": {"taskId": 1798, "taskX": 7599, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 12.0178303356471], [-13.029785153916, 12.0393205554158], [-13.00781249767, 12.0393205554158], [-13.00781249767, 12.0178303356471], [-13.029785153916, 12.0178303356471]]]]}, "properties": {"taskId": 1797, "taskX": 7599, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.9963383998188], [-13.029785153916, 12.0178303356471], [-13.00781249767, 12.0178303356471], [-13.00781249767, 11.9963383998188], [-13.029785153916, 11.9963383998188]]]]}, "properties": {"taskId": 1796, "taskX": 7599, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.9748447508181], [-13.029785153916, 11.9963383998188], [-13.00781249767, 11.9963383998188], [-13.00781249767, 11.9748447508181], [-13.029785153916, 11.9748447508181]]]]}, "properties": {"taskId": 1795, "taskX": 7599, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.9533493915333], [-13.029785153916, 11.9748447508181], [-13.00781249767, 11.9748447508181], [-13.00781249767, 11.9533493915333], [-13.029785153916, 11.9533493915333]]]]}, "properties": {"taskId": 1794, "taskX": 7599, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.9318523248542], [-13.029785153916, 11.9533493915333], [-13.00781249767, 11.9533493915333], [-13.00781249767, 11.9318523248542], [-13.029785153916, 11.9318523248542]]]]}, "properties": {"taskId": 1793, "taskX": 7599, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.9103535536714], [-13.029785153916, 11.9318523248542], [-13.00781249767, 11.9318523248542], [-13.00781249767, 11.9103535536714], [-13.029785153916, 11.9103535536714]]]]}, "properties": {"taskId": 1792, "taskX": 7599, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.888853080877], [-13.029785153916, 11.9103535536714], [-13.00781249767, 11.9103535536714], [-13.00781249767, 11.888853080877], [-13.029785153916, 11.888853080877]]]]}, "properties": {"taskId": 1791, "taskX": 7599, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.867350909364], [-13.029785153916, 11.888853080877], [-13.00781249767, 11.888853080877], [-13.00781249767, 11.867350909364], [-13.029785153916, 11.867350909364]]]]}, "properties": {"taskId": 1790, "taskX": 7599, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.8458470420268], [-13.029785153916, 11.867350909364], [-13.00781249767, 11.867350909364], [-13.00781249767, 11.8458470420268], [-13.029785153916, 11.8458470420268]]]]}, "properties": {"taskId": 1789, "taskX": 7599, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.8243414817611], [-13.029785153916, 11.8458470420268], [-13.00781249767, 11.8458470420268], [-13.00781249767, 11.8243414817611], [-13.029785153916, 11.8243414817611]]]]}, "properties": {"taskId": 1788, "taskX": 7599, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.8028342314634], [-13.029785153916, 11.8243414817611], [-13.00781249767, 11.8243414817611], [-13.00781249767, 11.8028342314634], [-13.029785153916, 11.8028342314634]]]]}, "properties": {"taskId": 1787, "taskX": 7599, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.7813252940317], [-13.029785153916, 11.8028342314634], [-13.00781249767, 11.8028342314634], [-13.00781249767, 11.7813252940317], [-13.029785153916, 11.7813252940317]]]]}, "properties": {"taskId": 1786, "taskX": 7599, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.759814672365], [-13.029785153916, 11.7813252940317], [-13.00781249767, 11.7813252940317], [-13.00781249767, 11.759814672365], [-13.029785153916, 11.759814672365]]]]}, "properties": {"taskId": 1785, "taskX": 7599, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.7383023693636], [-13.029785153916, 11.759814672365], [-13.00781249767, 11.759814672365], [-13.00781249767, 11.7383023693636], [-13.029785153916, 11.7383023693636]]]]}, "properties": {"taskId": 1784, "taskX": 7599, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.7167883879289], [-13.029785153916, 11.7383023693636], [-13.00781249767, 11.7383023693636], [-13.00781249767, 11.7167883879289], [-13.029785153916, 11.7167883879289]]]]}, "properties": {"taskId": 1783, "taskX": 7599, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.6952727309636], [-13.029785153916, 11.7167883879289], [-13.00781249767, 11.7167883879289], [-13.00781249767, 11.6952727309636], [-13.029785153916, 11.6952727309636]]]]}, "properties": {"taskId": 1782, "taskX": 7599, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.6737554013713], [-13.029785153916, 11.6952727309636], [-13.00781249767, 11.6952727309636], [-13.00781249767, 11.6737554013713], [-13.029785153916, 11.6737554013713]]]]}, "properties": {"taskId": 1781, "taskX": 7599, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.652236402057], [-13.029785153916, 11.6737554013713], [-13.00781249767, 11.6737554013713], [-13.00781249767, 11.652236402057], [-13.029785153916, 11.652236402057]]]]}, "properties": {"taskId": 1780, "taskX": 7599, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.6307157359267], [-13.029785153916, 11.652236402057], [-13.00781249767, 11.652236402057], [-13.00781249767, 11.6307157359267], [-13.029785153916, 11.6307157359267]]]]}, "properties": {"taskId": 1779, "taskX": 7599, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.6091934058879], [-13.029785153916, 11.6307157359267], [-13.00781249767, 11.6307157359267], [-13.00781249767, 11.6091934058879], [-13.029785153916, 11.6091934058879]]]]}, "properties": {"taskId": 1778, "taskX": 7599, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.5876694148488], [-13.029785153916, 11.6091934058879], [-13.00781249767, 11.6091934058879], [-13.00781249767, 11.5876694148488], [-13.029785153916, 11.5876694148488]]]]}, "properties": {"taskId": 1777, "taskX": 7599, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.5661437657192], [-13.029785153916, 11.5876694148488], [-13.00781249767, 11.5876694148488], [-13.00781249767, 11.5661437657192], [-13.029785153916, 11.5661437657192]]]]}, "properties": {"taskId": 1776, "taskX": 7599, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.5446164614097], [-13.029785153916, 11.5661437657192], [-13.00781249767, 11.5661437657192], [-13.00781249767, 11.5446164614097], [-13.029785153916, 11.5446164614097]]]]}, "properties": {"taskId": 1775, "taskX": 7599, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.5230875048322], [-13.029785153916, 11.5446164614097], [-13.00781249767, 11.5446164614097], [-13.00781249767, 11.5230875048322], [-13.029785153916, 11.5230875048322]]]]}, "properties": {"taskId": 1774, "taskX": 7599, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.5015568988999], [-13.029785153916, 11.5230875048322], [-13.00781249767, 11.5230875048322], [-13.00781249767, 11.5015568988999], [-13.029785153916, 11.5015568988999]]]]}, "properties": {"taskId": 1773, "taskX": 7599, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.480024646527], [-13.029785153916, 11.5015568988999], [-13.00781249767, 11.5015568988999], [-13.00781249767, 11.480024646527], [-13.029785153916, 11.480024646527]]]]}, "properties": {"taskId": 1772, "taskX": 7599, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.4584907506287], [-13.029785153916, 11.480024646527], [-13.00781249767, 11.480024646527], [-13.00781249767, 11.4584907506287], [-13.029785153916, 11.4584907506287]]]]}, "properties": {"taskId": 1771, "taskX": 7599, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.4369552141218], [-13.029785153916, 11.4584907506287], [-13.00781249767, 11.4584907506287], [-13.00781249767, 11.4369552141218], [-13.029785153916, 11.4369552141218]]]]}, "properties": {"taskId": 1770, "taskX": 7599, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.4154180399237], [-13.029785153916, 11.4369552141218], [-13.00781249767, 11.4369552141218], [-13.00781249767, 11.4154180399237], [-13.029785153916, 11.4154180399237]]]]}, "properties": {"taskId": 1769, "taskX": 7599, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.3938792309534], [-13.029785153916, 11.4154180399237], [-13.00781249767, 11.4154180399237], [-13.00781249767, 11.3938792309534], [-13.029785153916, 11.3938792309534]]]]}, "properties": {"taskId": 1768, "taskX": 7599, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.3723387901308], [-13.029785153916, 11.3938792309534], [-13.00781249767, 11.3938792309534], [-13.00781249767, 11.3723387901308], [-13.029785153916, 11.3723387901308]]]]}, "properties": {"taskId": 1767, "taskX": 7599, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.3507967203771], [-13.029785153916, 11.3723387901308], [-13.00781249767, 11.3723387901308], [-13.00781249767, 11.3507967203771], [-13.029785153916, 11.3507967203771]]]]}, "properties": {"taskId": 1766, "taskX": 7599, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.3292530246144], [-13.029785153916, 11.3507967203771], [-13.00781249767, 11.3507967203771], [-13.00781249767, 11.3292530246144], [-13.029785153916, 11.3292530246144]]]]}, "properties": {"taskId": 1765, "taskX": 7599, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.3077077057662], [-13.029785153916, 11.3292530246144], [-13.00781249767, 11.3292530246144], [-13.00781249767, 11.3077077057662], [-13.029785153916, 11.3077077057662]]]]}, "properties": {"taskId": 1764, "taskX": 7599, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.2861607667571], [-13.029785153916, 11.3077077057662], [-13.00781249767, 11.3077077057662], [-13.00781249767, 11.2861607667571], [-13.029785153916, 11.2861607667571]]]]}, "properties": {"taskId": 1763, "taskX": 7599, "taskY": 8709, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.2646122105126], [-13.029785153916, 11.2861607667571], [-13.00781249767, 11.2861607667571], [-13.00781249767, 11.2646122105126], [-13.029785153916, 11.2646122105126]]]]}, "properties": {"taskId": 1762, "taskX": 7599, "taskY": 8708, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.2430620399597], [-13.029785153916, 11.2646122105126], [-13.00781249767, 11.2646122105126], [-13.00781249767, 11.2430620399597], [-13.029785153916, 11.2430620399597]]]]}, "properties": {"taskId": 1761, "taskX": 7599, "taskY": 8707, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.2215102580262], [-13.029785153916, 11.2430620399597], [-13.00781249767, 11.2430620399597], [-13.00781249767, 11.2215102580262], [-13.029785153916, 11.2215102580262]]]]}, "properties": {"taskId": 1760, "taskX": 7599, "taskY": 8706, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.1999568676412], [-13.029785153916, 11.2215102580262], [-13.00781249767, 11.2215102580262], [-13.00781249767, 11.1999568676412], [-13.029785153916, 11.1999568676412]]]]}, "properties": {"taskId": 1759, "taskX": 7599, "taskY": 8705, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.029785153916, 11.1784018717349], [-13.029785153916, 11.1999568676412], [-13.00781249767, 11.1999568676412], [-13.00781249767, 11.1784018717349], [-13.029785153916, 11.1784018717349]]]]}, "properties": {"taskId": 1758, "taskX": 7599, "taskY": 8704, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 12.0822958352314], [-13.0517578101621, 12.10378088951], [-13.029785153916, 12.10378088951], [-13.029785153916, 12.0822958352314], [-13.0517578101621, 12.0822958352314]]]]}, "properties": {"taskId": 1757, "taskX": 7598, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 12.0608090562388], [-13.0517578101621, 12.0822958352314], [-13.029785153916, 12.0822958352314], [-13.029785153916, 12.0608090562388], [-13.0517578101621, 12.0608090562388]]]]}, "properties": {"taskId": 1756, "taskX": 7598, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 12.0393205554158], [-13.0517578101621, 12.0608090562388], [-13.029785153916, 12.0608090562388], [-13.029785153916, 12.0393205554158], [-13.0517578101621, 12.0393205554158]]]]}, "properties": {"taskId": 1755, "taskX": 7598, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 12.0178303356471], [-13.0517578101621, 12.0393205554158], [-13.029785153916, 12.0393205554158], [-13.029785153916, 12.0178303356471], [-13.0517578101621, 12.0178303356471]]]]}, "properties": {"taskId": 1754, "taskX": 7598, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.9963383998188], [-13.0517578101621, 12.0178303356471], [-13.029785153916, 12.0178303356471], [-13.029785153916, 11.9963383998188], [-13.0517578101621, 11.9963383998188]]]]}, "properties": {"taskId": 1753, "taskX": 7598, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.9748447508181], [-13.0517578101621, 11.9963383998188], [-13.029785153916, 11.9963383998188], [-13.029785153916, 11.9748447508181], [-13.0517578101621, 11.9748447508181]]]]}, "properties": {"taskId": 1752, "taskX": 7598, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.9533493915333], [-13.0517578101621, 11.9748447508181], [-13.029785153916, 11.9748447508181], [-13.029785153916, 11.9533493915333], [-13.0517578101621, 11.9533493915333]]]]}, "properties": {"taskId": 1751, "taskX": 7598, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.9318523248542], [-13.0517578101621, 11.9533493915333], [-13.029785153916, 11.9533493915333], [-13.029785153916, 11.9318523248542], [-13.0517578101621, 11.9318523248542]]]]}, "properties": {"taskId": 1750, "taskX": 7598, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.9103535536714], [-13.0517578101621, 11.9318523248542], [-13.029785153916, 11.9318523248542], [-13.029785153916, 11.9103535536714], [-13.0517578101621, 11.9103535536714]]]]}, "properties": {"taskId": 1749, "taskX": 7598, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.888853080877], [-13.0517578101621, 11.9103535536714], [-13.029785153916, 11.9103535536714], [-13.029785153916, 11.888853080877], [-13.0517578101621, 11.888853080877]]]]}, "properties": {"taskId": 1748, "taskX": 7598, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.867350909364], [-13.0517578101621, 11.888853080877], [-13.029785153916, 11.888853080877], [-13.029785153916, 11.867350909364], [-13.0517578101621, 11.867350909364]]]]}, "properties": {"taskId": 1747, "taskX": 7598, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.8458470420268], [-13.0517578101621, 11.867350909364], [-13.029785153916, 11.867350909364], [-13.029785153916, 11.8458470420268], [-13.0517578101621, 11.8458470420268]]]]}, "properties": {"taskId": 1746, "taskX": 7598, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.8243414817611], [-13.0517578101621, 11.8458470420268], [-13.029785153916, 11.8458470420268], [-13.029785153916, 11.8243414817611], [-13.0517578101621, 11.8243414817611]]]]}, "properties": {"taskId": 1745, "taskX": 7598, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.8028342314634], [-13.0517578101621, 11.8243414817611], [-13.029785153916, 11.8243414817611], [-13.029785153916, 11.8028342314634], [-13.0517578101621, 11.8028342314634]]]]}, "properties": {"taskId": 1744, "taskX": 7598, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.7813252940317], [-13.0517578101621, 11.8028342314634], [-13.029785153916, 11.8028342314634], [-13.029785153916, 11.7813252940317], [-13.0517578101621, 11.7813252940317]]]]}, "properties": {"taskId": 1743, "taskX": 7598, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.759814672365], [-13.0517578101621, 11.7813252940317], [-13.029785153916, 11.7813252940317], [-13.029785153916, 11.759814672365], [-13.0517578101621, 11.759814672365]]]]}, "properties": {"taskId": 1742, "taskX": 7598, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.7383023693636], [-13.0517578101621, 11.759814672365], [-13.029785153916, 11.759814672365], [-13.029785153916, 11.7383023693636], [-13.0517578101621, 11.7383023693636]]]]}, "properties": {"taskId": 1741, "taskX": 7598, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.7167883879289], [-13.0517578101621, 11.7383023693636], [-13.029785153916, 11.7383023693636], [-13.029785153916, 11.7167883879289], [-13.0517578101621, 11.7167883879289]]]]}, "properties": {"taskId": 1740, "taskX": 7598, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.6952727309636], [-13.0517578101621, 11.7167883879289], [-13.029785153916, 11.7167883879289], [-13.029785153916, 11.6952727309636], [-13.0517578101621, 11.6952727309636]]]]}, "properties": {"taskId": 1739, "taskX": 7598, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.6737554013713], [-13.0517578101621, 11.6952727309636], [-13.029785153916, 11.6952727309636], [-13.029785153916, 11.6737554013713], [-13.0517578101621, 11.6737554013713]]]]}, "properties": {"taskId": 1738, "taskX": 7598, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.652236402057], [-13.0517578101621, 11.6737554013713], [-13.029785153916, 11.6737554013713], [-13.029785153916, 11.652236402057], [-13.0517578101621, 11.652236402057]]]]}, "properties": {"taskId": 1737, "taskX": 7598, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.6307157359267], [-13.0517578101621, 11.652236402057], [-13.029785153916, 11.652236402057], [-13.029785153916, 11.6307157359267], [-13.0517578101621, 11.6307157359267]]]]}, "properties": {"taskId": 1736, "taskX": 7598, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.6091934058879], [-13.0517578101621, 11.6307157359267], [-13.029785153916, 11.6307157359267], [-13.029785153916, 11.6091934058879], [-13.0517578101621, 11.6091934058879]]]]}, "properties": {"taskId": 1735, "taskX": 7598, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.5876694148488], [-13.0517578101621, 11.6091934058879], [-13.029785153916, 11.6091934058879], [-13.029785153916, 11.5876694148488], [-13.0517578101621, 11.5876694148488]]]]}, "properties": {"taskId": 1734, "taskX": 7598, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.5661437657192], [-13.0517578101621, 11.5876694148488], [-13.029785153916, 11.5876694148488], [-13.029785153916, 11.5661437657192], [-13.0517578101621, 11.5661437657192]]]]}, "properties": {"taskId": 1733, "taskX": 7598, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.5446164614097], [-13.0517578101621, 11.5661437657192], [-13.029785153916, 11.5661437657192], [-13.029785153916, 11.5446164614097], [-13.0517578101621, 11.5446164614097]]]]}, "properties": {"taskId": 1732, "taskX": 7598, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.5230875048322], [-13.0517578101621, 11.5446164614097], [-13.029785153916, 11.5446164614097], [-13.029785153916, 11.5230875048322], [-13.0517578101621, 11.5230875048322]]]]}, "properties": {"taskId": 1731, "taskX": 7598, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.5015568988999], [-13.0517578101621, 11.5230875048322], [-13.029785153916, 11.5230875048322], [-13.029785153916, 11.5015568988999], [-13.0517578101621, 11.5015568988999]]]]}, "properties": {"taskId": 1730, "taskX": 7598, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.480024646527], [-13.0517578101621, 11.5015568988999], [-13.029785153916, 11.5015568988999], [-13.029785153916, 11.480024646527], [-13.0517578101621, 11.480024646527]]]]}, "properties": {"taskId": 1729, "taskX": 7598, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.4584907506287], [-13.0517578101621, 11.480024646527], [-13.029785153916, 11.480024646527], [-13.029785153916, 11.4584907506287], [-13.0517578101621, 11.4584907506287]]]]}, "properties": {"taskId": 1728, "taskX": 7598, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.4369552141218], [-13.0517578101621, 11.4584907506287], [-13.029785153916, 11.4584907506287], [-13.029785153916, 11.4369552141218], [-13.0517578101621, 11.4369552141218]]]]}, "properties": {"taskId": 1727, "taskX": 7598, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.4154180399237], [-13.0517578101621, 11.4369552141218], [-13.029785153916, 11.4369552141218], [-13.029785153916, 11.4154180399237], [-13.0517578101621, 11.4154180399237]]]]}, "properties": {"taskId": 1726, "taskX": 7598, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.3938792309534], [-13.0517578101621, 11.4154180399237], [-13.029785153916, 11.4154180399237], [-13.029785153916, 11.3938792309534], [-13.0517578101621, 11.3938792309534]]]]}, "properties": {"taskId": 1725, "taskX": 7598, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.3723387901308], [-13.0517578101621, 11.3938792309534], [-13.029785153916, 11.3938792309534], [-13.029785153916, 11.3723387901308], [-13.0517578101621, 11.3723387901308]]]]}, "properties": {"taskId": 1724, "taskX": 7598, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.3507967203771], [-13.0517578101621, 11.3723387901308], [-13.029785153916, 11.3723387901308], [-13.029785153916, 11.3507967203771], [-13.0517578101621, 11.3507967203771]]]]}, "properties": {"taskId": 1723, "taskX": 7598, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.3292530246144], [-13.0517578101621, 11.3507967203771], [-13.029785153916, 11.3507967203771], [-13.029785153916, 11.3292530246144], [-13.0517578101621, 11.3292530246144]]]]}, "properties": {"taskId": 1722, "taskX": 7598, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.3077077057662], [-13.0517578101621, 11.3292530246144], [-13.029785153916, 11.3292530246144], [-13.029785153916, 11.3077077057662], [-13.0517578101621, 11.3077077057662]]]]}, "properties": {"taskId": 1721, "taskX": 7598, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.2861607667571], [-13.0517578101621, 11.3077077057662], [-13.029785153916, 11.3077077057662], [-13.029785153916, 11.2861607667571], [-13.0517578101621, 11.2861607667571]]]]}, "properties": {"taskId": 1720, "taskX": 7598, "taskY": 8709, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.2646122105126], [-13.0517578101621, 11.2861607667571], [-13.029785153916, 11.2861607667571], [-13.029785153916, 11.2646122105126], [-13.0517578101621, 11.2646122105126]]]]}, "properties": {"taskId": 1719, "taskX": 7598, "taskY": 8708, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.2430620399597], [-13.0517578101621, 11.2646122105126], [-13.029785153916, 11.2646122105126], [-13.029785153916, 11.2430620399597], [-13.0517578101621, 11.2430620399597]]]]}, "properties": {"taskId": 1718, "taskX": 7598, "taskY": 8707, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.2215102580262], [-13.0517578101621, 11.2430620399597], [-13.029785153916, 11.2430620399597], [-13.029785153916, 11.2215102580262], [-13.0517578101621, 11.2215102580262]]]]}, "properties": {"taskId": 1717, "taskX": 7598, "taskY": 8706, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.1999568676412], [-13.0517578101621, 11.2215102580262], [-13.029785153916, 11.2215102580262], [-13.029785153916, 11.1999568676412], [-13.0517578101621, 11.1999568676412]]]]}, "properties": {"taskId": 1716, "taskX": 7598, "taskY": 8705, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0517578101621, 11.1784018717349], [-13.0517578101621, 11.1999568676412], [-13.029785153916, 11.1999568676412], [-13.029785153916, 11.1784018717349], [-13.0517578101621, 11.1784018717349]]]]}, "properties": {"taskId": 1715, "taskX": 7598, "taskY": 8704, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 12.0822958352314], [-13.0737304664082, 12.10378088951], [-13.0517578101621, 12.10378088951], [-13.0517578101621, 12.0822958352314], [-13.0737304664082, 12.0822958352314]]]]}, "properties": {"taskId": 1714, "taskX": 7597, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 12.0608090562388], [-13.0737304664082, 12.0822958352314], [-13.0517578101621, 12.0822958352314], [-13.0517578101621, 12.0608090562388], [-13.0737304664082, 12.0608090562388]]]]}, "properties": {"taskId": 1713, "taskX": 7597, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 12.0393205554158], [-13.0737304664082, 12.0608090562388], [-13.0517578101621, 12.0608090562388], [-13.0517578101621, 12.0393205554158], [-13.0737304664082, 12.0393205554158]]]]}, "properties": {"taskId": 1712, "taskX": 7597, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 12.0178303356471], [-13.0737304664082, 12.0393205554158], [-13.0517578101621, 12.0393205554158], [-13.0517578101621, 12.0178303356471], [-13.0737304664082, 12.0178303356471]]]]}, "properties": {"taskId": 1711, "taskX": 7597, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.9963383998188], [-13.0737304664082, 12.0178303356471], [-13.0517578101621, 12.0178303356471], [-13.0517578101621, 11.9963383998188], [-13.0737304664082, 11.9963383998188]]]]}, "properties": {"taskId": 1710, "taskX": 7597, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.9748447508181], [-13.0737304664082, 11.9963383998188], [-13.0517578101621, 11.9963383998188], [-13.0517578101621, 11.9748447508181], [-13.0737304664082, 11.9748447508181]]]]}, "properties": {"taskId": 1709, "taskX": 7597, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.9533493915333], [-13.0737304664082, 11.9748447508181], [-13.0517578101621, 11.9748447508181], [-13.0517578101621, 11.9533493915333], [-13.0737304664082, 11.9533493915333]]]]}, "properties": {"taskId": 1708, "taskX": 7597, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.9318523248542], [-13.0737304664082, 11.9533493915333], [-13.0517578101621, 11.9533493915333], [-13.0517578101621, 11.9318523248542], [-13.0737304664082, 11.9318523248542]]]]}, "properties": {"taskId": 1707, "taskX": 7597, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.9103535536714], [-13.0737304664082, 11.9318523248542], [-13.0517578101621, 11.9318523248542], [-13.0517578101621, 11.9103535536714], [-13.0737304664082, 11.9103535536714]]]]}, "properties": {"taskId": 1706, "taskX": 7597, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.888853080877], [-13.0737304664082, 11.9103535536714], [-13.0517578101621, 11.9103535536714], [-13.0517578101621, 11.888853080877], [-13.0737304664082, 11.888853080877]]]]}, "properties": {"taskId": 1705, "taskX": 7597, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.867350909364], [-13.0737304664082, 11.888853080877], [-13.0517578101621, 11.888853080877], [-13.0517578101621, 11.867350909364], [-13.0737304664082, 11.867350909364]]]]}, "properties": {"taskId": 1704, "taskX": 7597, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.8028342314634], [-13.0737304664082, 11.8243414817611], [-13.0517578101621, 11.8243414817611], [-13.0517578101621, 11.8028342314634], [-13.0737304664082, 11.8028342314634]]]]}, "properties": {"taskId": 1701, "taskX": 7597, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.7813252940317], [-13.0737304664082, 11.8028342314634], [-13.0517578101621, 11.8028342314634], [-13.0517578101621, 11.7813252940317], [-13.0737304664082, 11.7813252940317]]]]}, "properties": {"taskId": 1700, "taskX": 7597, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.759814672365], [-13.0737304664082, 11.7813252940317], [-13.0517578101621, 11.7813252940317], [-13.0517578101621, 11.759814672365], [-13.0737304664082, 11.759814672365]]]]}, "properties": {"taskId": 1699, "taskX": 7597, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.7383023693636], [-13.0737304664082, 11.759814672365], [-13.0517578101621, 11.759814672365], [-13.0517578101621, 11.7383023693636], [-13.0737304664082, 11.7383023693636]]]]}, "properties": {"taskId": 1698, "taskX": 7597, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.7167883879289], [-13.0737304664082, 11.7383023693636], [-13.0517578101621, 11.7383023693636], [-13.0517578101621, 11.7167883879289], [-13.0737304664082, 11.7167883879289]]]]}, "properties": {"taskId": 1697, "taskX": 7597, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.6952727309636], [-13.0737304664082, 11.7167883879289], [-13.0517578101621, 11.7167883879289], [-13.0517578101621, 11.6952727309636], [-13.0737304664082, 11.6952727309636]]]]}, "properties": {"taskId": 1696, "taskX": 7597, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.6737554013713], [-13.0737304664082, 11.6952727309636], [-13.0517578101621, 11.6952727309636], [-13.0517578101621, 11.6737554013713], [-13.0737304664082, 11.6737554013713]]]]}, "properties": {"taskId": 1695, "taskX": 7597, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.652236402057], [-13.0737304664082, 11.6737554013713], [-13.0517578101621, 11.6737554013713], [-13.0517578101621, 11.652236402057], [-13.0737304664082, 11.652236402057]]]]}, "properties": {"taskId": 1694, "taskX": 7597, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.6307157359267], [-13.0737304664082, 11.652236402057], [-13.0517578101621, 11.652236402057], [-13.0517578101621, 11.6307157359267], [-13.0737304664082, 11.6307157359267]]]]}, "properties": {"taskId": 1693, "taskX": 7597, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.6091934058879], [-13.0737304664082, 11.6307157359267], [-13.0517578101621, 11.6307157359267], [-13.0517578101621, 11.6091934058879], [-13.0737304664082, 11.6091934058879]]]]}, "properties": {"taskId": 1692, "taskX": 7597, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.5876694148488], [-13.0737304664082, 11.6091934058879], [-13.0517578101621, 11.6091934058879], [-13.0517578101621, 11.5876694148488], [-13.0737304664082, 11.5876694148488]]]]}, "properties": {"taskId": 1691, "taskX": 7597, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.5661437657192], [-13.0737304664082, 11.5876694148488], [-13.0517578101621, 11.5876694148488], [-13.0517578101621, 11.5661437657192], [-13.0737304664082, 11.5661437657192]]]]}, "properties": {"taskId": 1690, "taskX": 7597, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.5446164614097], [-13.0737304664082, 11.5661437657192], [-13.0517578101621, 11.5661437657192], [-13.0517578101621, 11.5446164614097], [-13.0737304664082, 11.5446164614097]]]]}, "properties": {"taskId": 1689, "taskX": 7597, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.5230875048322], [-13.0737304664082, 11.5446164614097], [-13.0517578101621, 11.5446164614097], [-13.0517578101621, 11.5230875048322], [-13.0737304664082, 11.5230875048322]]]]}, "properties": {"taskId": 1688, "taskX": 7597, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.5015568988999], [-13.0737304664082, 11.5230875048322], [-13.0517578101621, 11.5230875048322], [-13.0517578101621, 11.5015568988999], [-13.0737304664082, 11.5015568988999]]]]}, "properties": {"taskId": 1687, "taskX": 7597, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.480024646527], [-13.0737304664082, 11.5015568988999], [-13.0517578101621, 11.5015568988999], [-13.0517578101621, 11.480024646527], [-13.0737304664082, 11.480024646527]]]]}, "properties": {"taskId": 1686, "taskX": 7597, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.4584907506287], [-13.0737304664082, 11.480024646527], [-13.0517578101621, 11.480024646527], [-13.0517578101621, 11.4584907506287], [-13.0737304664082, 11.4584907506287]]]]}, "properties": {"taskId": 1685, "taskX": 7597, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.4369552141218], [-13.0737304664082, 11.4584907506287], [-13.0517578101621, 11.4584907506287], [-13.0517578101621, 11.4369552141218], [-13.0737304664082, 11.4369552141218]]]]}, "properties": {"taskId": 1684, "taskX": 7597, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.4154180399237], [-13.0737304664082, 11.4369552141218], [-13.0517578101621, 11.4369552141218], [-13.0517578101621, 11.4154180399237], [-13.0737304664082, 11.4154180399237]]]]}, "properties": {"taskId": 1683, "taskX": 7597, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.3938792309534], [-13.0737304664082, 11.4154180399237], [-13.0517578101621, 11.4154180399237], [-13.0517578101621, 11.3938792309534], [-13.0737304664082, 11.3938792309534]]]]}, "properties": {"taskId": 1682, "taskX": 7597, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.3723387901308], [-13.0737304664082, 11.3938792309534], [-13.0517578101621, 11.3938792309534], [-13.0517578101621, 11.3723387901308], [-13.0737304664082, 11.3723387901308]]]]}, "properties": {"taskId": 1681, "taskX": 7597, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.3507967203771], [-13.0737304664082, 11.3723387901308], [-13.0517578101621, 11.3723387901308], [-13.0517578101621, 11.3507967203771], [-13.0737304664082, 11.3507967203771]]]]}, "properties": {"taskId": 1680, "taskX": 7597, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.9748447508181], [-12.8320312477014, 11.9963383998188], [-12.8100585914554, 11.9963383998188], [-12.8100585914554, 11.9748447508181], [-12.8320312477014, 11.9748447508181]]]]}, "properties": {"taskId": 2122, "taskX": 7608, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.9533493915333], [-12.8320312477014, 11.9748447508181], [-12.8100585914554, 11.9748447508181], [-12.8100585914554, 11.9533493915333], [-12.8320312477014, 11.9533493915333]]]]}, "properties": {"taskId": 2121, "taskX": 7608, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.9318523248542], [-12.8320312477014, 11.9533493915333], [-12.8100585914554, 11.9533493915333], [-12.8100585914554, 11.9318523248542], [-12.8320312477014, 11.9318523248542]]]]}, "properties": {"taskId": 2120, "taskX": 7608, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.9103535536714], [-12.8320312477014, 11.9318523248542], [-12.8100585914554, 11.9318523248542], [-12.8100585914554, 11.9103535536714], [-12.8320312477014, 11.9103535536714]]]]}, "properties": {"taskId": 2119, "taskX": 7608, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.867350909364], [-12.8320312477014, 11.888853080877], [-12.8100585914554, 11.888853080877], [-12.8100585914554, 11.867350909364], [-12.8320312477014, 11.867350909364]]]]}, "properties": {"taskId": 2117, "taskX": 7608, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.8458470420268], [-12.8320312477014, 11.867350909364], [-12.8100585914554, 11.867350909364], [-12.8100585914554, 11.8458470420268], [-12.8320312477014, 11.8458470420268]]]]}, "properties": {"taskId": 2116, "taskX": 7608, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.8028342314634], [-12.8320312477014, 11.8243414817611], [-12.8100585914554, 11.8243414817611], [-12.8100585914554, 11.8028342314634], [-12.8320312477014, 11.8028342314634]]]]}, "properties": {"taskId": 2114, "taskX": 7608, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.7813252940317], [-12.8320312477014, 11.8028342314634], [-12.8100585914554, 11.8028342314634], [-12.8100585914554, 11.7813252940317], [-12.8320312477014, 11.7813252940317]]]]}, "properties": {"taskId": 2113, "taskX": 7608, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.759814672365], [-12.8320312477014, 11.7813252940317], [-12.8100585914554, 11.7813252940317], [-12.8100585914554, 11.759814672365], [-12.8320312477014, 11.759814672365]]]]}, "properties": {"taskId": 2112, "taskX": 7608, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.7383023693636], [-12.8320312477014, 11.759814672365], [-12.8100585914554, 11.759814672365], [-12.8100585914554, 11.7383023693636], [-12.8320312477014, 11.7383023693636]]]]}, "properties": {"taskId": 2111, "taskX": 7608, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.6307157359267], [-12.8320312477014, 11.652236402057], [-12.8100585914554, 11.652236402057], [-12.8100585914554, 11.6307157359267], [-12.8320312477014, 11.6307157359267]]]]}, "properties": {"taskId": 2106, "taskX": 7608, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.5876694148488], [-12.8320312477014, 11.6091934058879], [-12.8100585914554, 11.6091934058879], [-12.8100585914554, 11.5876694148488], [-12.8320312477014, 11.5876694148488]]]]}, "properties": {"taskId": 2104, "taskX": 7608, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.5661437657192], [-12.8320312477014, 11.5876694148488], [-12.8100585914554, 11.5876694148488], [-12.8100585914554, 11.5661437657192], [-12.8320312477014, 11.5661437657192]]]]}, "properties": {"taskId": 2103, "taskX": 7608, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.5446164614097], [-12.8320312477014, 11.5661437657192], [-12.8100585914554, 11.5661437657192], [-12.8100585914554, 11.5446164614097], [-12.8320312477014, 11.5446164614097]]]]}, "properties": {"taskId": 2102, "taskX": 7608, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.5230875048322], [-12.8320312477014, 11.5446164614097], [-12.8100585914554, 11.5446164614097], [-12.8100585914554, 11.5230875048322], [-12.8320312477014, 11.5230875048322]]]]}, "properties": {"taskId": 2101, "taskX": 7608, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.5015568988999], [-12.8320312477014, 11.5230875048322], [-12.8100585914554, 11.5230875048322], [-12.8100585914554, 11.5015568988999], [-12.8320312477014, 11.5015568988999]]]]}, "properties": {"taskId": 2100, "taskX": 7608, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.480024646527], [-12.8320312477014, 11.5015568988999], [-12.8100585914554, 11.5015568988999], [-12.8100585914554, 11.480024646527], [-12.8320312477014, 11.480024646527]]]]}, "properties": {"taskId": 2099, "taskX": 7608, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.4584907506287], [-12.8320312477014, 11.480024646527], [-12.8100585914554, 11.480024646527], [-12.8100585914554, 11.4584907506287], [-12.8320312477014, 11.4584907506287]]]]}, "properties": {"taskId": 2098, "taskX": 7608, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8320312477014, 11.4369552141218], [-12.8320312477014, 11.4584907506287], [-12.8100585914554, 11.4584907506287], [-12.8100585914554, 11.4369552141218], [-12.8320312477014, 11.4369552141218]]]]}, "properties": {"taskId": 2097, "taskX": 7608, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 12.1252642161921], [-12.8540039039475, 12.1467458123965], [-12.8320312477014, 12.1467458123965], [-12.8320312477014, 12.1252642161921], [-12.8540039039475, 12.1252642161921]]]]}, "properties": {"taskId": 2095, "taskX": 7607, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 12.10378088951], [-12.8540039039475, 12.1252642161921], [-12.8320312477014, 12.1252642161921], [-12.8320312477014, 12.10378088951], [-12.8540039039475, 12.10378088951]]]]}, "properties": {"taskId": 2094, "taskX": 7607, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 12.0608090562388], [-12.8540039039475, 12.0822958352314], [-12.8320312477014, 12.0822958352314], [-12.8320312477014, 12.0608090562388], [-12.8540039039475, 12.0608090562388]]]]}, "properties": {"taskId": 2092, "taskX": 7607, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 12.0393205554158], [-12.8540039039475, 12.0608090562388], [-12.8320312477014, 12.0608090562388], [-12.8320312477014, 12.0393205554158], [-12.8540039039475, 12.0393205554158]]]]}, "properties": {"taskId": 2091, "taskX": 7607, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 12.0178303356471], [-12.8540039039475, 12.0393205554158], [-12.8320312477014, 12.0393205554158], [-12.8320312477014, 12.0178303356471], [-12.8540039039475, 12.0178303356471]]]]}, "properties": {"taskId": 2090, "taskX": 7607, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.9963383998188], [-12.8540039039475, 12.0178303356471], [-12.8320312477014, 12.0178303356471], [-12.8320312477014, 11.9963383998188], [-12.8540039039475, 11.9963383998188]]]]}, "properties": {"taskId": 2089, "taskX": 7607, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.9748447508181], [-12.8540039039475, 11.9963383998188], [-12.8320312477014, 11.9963383998188], [-12.8320312477014, 11.9748447508181], [-12.8540039039475, 11.9748447508181]]]]}, "properties": {"taskId": 2088, "taskX": 7607, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.9533493915333], [-12.8540039039475, 11.9748447508181], [-12.8320312477014, 11.9748447508181], [-12.8320312477014, 11.9533493915333], [-12.8540039039475, 11.9533493915333]]]]}, "properties": {"taskId": 2087, "taskX": 7607, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.9103535536714], [-12.8540039039475, 11.9318523248542], [-12.8320312477014, 11.9318523248542], [-12.8320312477014, 11.9103535536714], [-12.8540039039475, 11.9103535536714]]]]}, "properties": {"taskId": 2085, "taskX": 7607, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.888853080877], [-12.8540039039475, 11.9103535536714], [-12.8320312477014, 11.9103535536714], [-12.8320312477014, 11.888853080877], [-12.8540039039475, 11.888853080877]]]]}, "properties": {"taskId": 2084, "taskX": 7607, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.867350909364], [-12.8540039039475, 11.888853080877], [-12.8320312477014, 11.888853080877], [-12.8320312477014, 11.867350909364], [-12.8540039039475, 11.867350909364]]]]}, "properties": {"taskId": 2083, "taskX": 7607, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.8458470420268], [-12.8540039039475, 11.867350909364], [-12.8320312477014, 11.867350909364], [-12.8320312477014, 11.8458470420268], [-12.8540039039475, 11.8458470420268]]]]}, "properties": {"taskId": 2082, "taskX": 7607, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.8243414817611], [-12.8540039039475, 11.8458470420268], [-12.8320312477014, 11.8458470420268], [-12.8320312477014, 11.8243414817611], [-12.8540039039475, 11.8243414817611]]]]}, "properties": {"taskId": 2081, "taskX": 7607, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.8028342314634], [-12.8540039039475, 11.8243414817611], [-12.8320312477014, 11.8243414817611], [-12.8320312477014, 11.8028342314634], [-12.8540039039475, 11.8028342314634]]]]}, "properties": {"taskId": 2080, "taskX": 7607, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.7813252940317], [-12.8540039039475, 11.8028342314634], [-12.8320312477014, 11.8028342314634], [-12.8320312477014, 11.7813252940317], [-12.8540039039475, 11.7813252940317]]]]}, "properties": {"taskId": 2079, "taskX": 7607, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.759814672365], [-12.8540039039475, 11.7813252940317], [-12.8320312477014, 11.7813252940317], [-12.8320312477014, 11.759814672365], [-12.8540039039475, 11.759814672365]]]]}, "properties": {"taskId": 2078, "taskX": 7607, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.7383023693636], [-12.8540039039475, 11.759814672365], [-12.8320312477014, 11.759814672365], [-12.8320312477014, 11.7383023693636], [-12.8540039039475, 11.7383023693636]]]]}, "properties": {"taskId": 2077, "taskX": 7607, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.7167883879289], [-12.8540039039475, 11.7383023693636], [-12.8320312477014, 11.7383023693636], [-12.8320312477014, 11.7167883879289], [-12.8540039039475, 11.7167883879289]]]]}, "properties": {"taskId": 2076, "taskX": 7607, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.6952727309636], [-12.8540039039475, 11.7167883879289], [-12.8320312477014, 11.7167883879289], [-12.8320312477014, 11.6952727309636], [-12.8540039039475, 11.6952727309636]]]]}, "properties": {"taskId": 2075, "taskX": 7607, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.6737554013713], [-12.8540039039475, 11.6952727309636], [-12.8320312477014, 11.6952727309636], [-12.8320312477014, 11.6737554013713], [-12.8540039039475, 11.6737554013713]]]]}, "properties": {"taskId": 2074, "taskX": 7607, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.652236402057], [-12.8540039039475, 11.6737554013713], [-12.8320312477014, 11.6737554013713], [-12.8320312477014, 11.652236402057], [-12.8540039039475, 11.652236402057]]]]}, "properties": {"taskId": 2073, "taskX": 7607, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.6307157359267], [-12.8540039039475, 11.652236402057], [-12.8320312477014, 11.652236402057], [-12.8320312477014, 11.6307157359267], [-12.8540039039475, 11.6307157359267]]]]}, "properties": {"taskId": 2072, "taskX": 7607, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.6091934058879], [-12.8540039039475, 11.6307157359267], [-12.8320312477014, 11.6307157359267], [-12.8320312477014, 11.6091934058879], [-12.8540039039475, 11.6091934058879]]]]}, "properties": {"taskId": 2071, "taskX": 7607, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.5876694148488], [-12.8540039039475, 11.6091934058879], [-12.8320312477014, 11.6091934058879], [-12.8320312477014, 11.5876694148488], [-12.8540039039475, 11.5876694148488]]]]}, "properties": {"taskId": 2070, "taskX": 7607, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.5661437657192], [-12.8540039039475, 11.5876694148488], [-12.8320312477014, 11.5876694148488], [-12.8320312477014, 11.5661437657192], [-12.8540039039475, 11.5661437657192]]]]}, "properties": {"taskId": 2069, "taskX": 7607, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.5446164614097], [-12.8540039039475, 11.5661437657192], [-12.8320312477014, 11.5661437657192], [-12.8320312477014, 11.5446164614097], [-12.8540039039475, 11.5446164614097]]]]}, "properties": {"taskId": 2068, "taskX": 7607, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.5230875048322], [-12.8540039039475, 11.5446164614097], [-12.8320312477014, 11.5446164614097], [-12.8320312477014, 11.5230875048322], [-12.8540039039475, 11.5230875048322]]]]}, "properties": {"taskId": 2067, "taskX": 7607, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.5015568988999], [-12.8540039039475, 11.5230875048322], [-12.8320312477014, 11.5230875048322], [-12.8320312477014, 11.5015568988999], [-12.8540039039475, 11.5015568988999]]]]}, "properties": {"taskId": 2066, "taskX": 7607, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.480024646527], [-12.8540039039475, 11.5015568988999], [-12.8320312477014, 11.5015568988999], [-12.8320312477014, 11.480024646527], [-12.8540039039475, 11.480024646527]]]]}, "properties": {"taskId": 2065, "taskX": 7607, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.4584907506287], [-12.8540039039475, 11.480024646527], [-12.8320312477014, 11.480024646527], [-12.8320312477014, 11.4584907506287], [-12.8540039039475, 11.4584907506287]]]]}, "properties": {"taskId": 2064, "taskX": 7607, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8540039039475, 11.4369552141218], [-12.8540039039475, 11.4584907506287], [-12.8320312477014, 11.4584907506287], [-12.8320312477014, 11.4369552141218], [-12.8540039039475, 11.4369552141218]]]]}, "properties": {"taskId": 2063, "taskX": 7607, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 12.1467458123965], [-12.8759765601936, 12.1682256752432], [-12.8540039039475, 12.1682256752432], [-12.8540039039475, 12.1467458123965], [-12.8759765601936, 12.1467458123965]]]]}, "properties": {"taskId": 2062, "taskX": 7606, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 12.1252642161921], [-12.8759765601936, 12.1467458123965], [-12.8540039039475, 12.1467458123965], [-12.8540039039475, 12.1252642161921], [-12.8759765601936, 12.1252642161921]]]]}, "properties": {"taskId": 2061, "taskX": 7606, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 12.0822958352314], [-12.8759765601936, 12.10378088951], [-12.8540039039475, 12.10378088951], [-12.8540039039475, 12.0822958352314], [-12.8759765601936, 12.0822958352314]]]]}, "properties": {"taskId": 2059, "taskX": 7606, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 12.0608090562388], [-12.8759765601936, 12.0822958352314], [-12.8540039039475, 12.0822958352314], [-12.8540039039475, 12.0608090562388], [-12.8759765601936, 12.0608090562388]]]]}, "properties": {"taskId": 2058, "taskX": 7606, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 12.0393205554158], [-12.8759765601936, 12.0608090562388], [-12.8540039039475, 12.0608090562388], [-12.8540039039475, 12.0393205554158], [-12.8759765601936, 12.0393205554158]]]]}, "properties": {"taskId": 2057, "taskX": 7606, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 12.0178303356471], [-12.8759765601936, 12.0393205554158], [-12.8540039039475, 12.0393205554158], [-12.8540039039475, 12.0178303356471], [-12.8759765601936, 12.0178303356471]]]]}, "properties": {"taskId": 2056, "taskX": 7606, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-12.8759765601936, 11.9963383998188], [-12.8759765601936, 12.0178303356471], [-12.8540039039475, 12.0178303356471], [-12.8540039039475, 11.9963383998188], [-12.8759765601936, 11.9963383998188]]]]}, "properties": {"taskId": 2055, "taskX": 7606, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.3292530246144], [-13.0737304664082, 11.3507967203771], [-13.0517578101621, 11.3507967203771], [-13.0517578101621, 11.3292530246144], [-13.0737304664082, 11.3292530246144]]]]}, "properties": {"taskId": 1679, "taskX": 7597, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.3077077057662], [-13.0737304664082, 11.3292530246144], [-13.0517578101621, 11.3292530246144], [-13.0517578101621, 11.3077077057662], [-13.0737304664082, 11.3077077057662]]]]}, "properties": {"taskId": 1678, "taskX": 7597, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.2861607667571], [-13.0737304664082, 11.3077077057662], [-13.0517578101621, 11.3077077057662], [-13.0517578101621, 11.2861607667571], [-13.0737304664082, 11.2861607667571]]]]}, "properties": {"taskId": 1677, "taskX": 7597, "taskY": 8709, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.2430620399597], [-13.0737304664082, 11.2646122105126], [-13.0517578101621, 11.2646122105126], [-13.0517578101621, 11.2430620399597], [-13.0737304664082, 11.2430620399597]]]]}, "properties": {"taskId": 1675, "taskX": 7597, "taskY": 8707, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.2215102580262], [-13.0737304664082, 11.2430620399597], [-13.0517578101621, 11.2430620399597], [-13.0517578101621, 11.2215102580262], [-13.0737304664082, 11.2215102580262]]]]}, "properties": {"taskId": 1674, "taskX": 7597, "taskY": 8706, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.1999568676412], [-13.0737304664082, 11.2215102580262], [-13.0517578101621, 11.2215102580262], [-13.0517578101621, 11.1999568676412], [-13.0737304664082, 11.1999568676412]]]]}, "properties": {"taskId": 1673, "taskX": 7597, "taskY": 8705, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0737304664082, 11.1784018717349], [-13.0737304664082, 11.1999568676412], [-13.0517578101621, 11.1999568676412], [-13.0517578101621, 11.1784018717349], [-13.0737304664082, 11.1784018717349]]]]}, "properties": {"taskId": 1672, "taskX": 7597, "taskY": 8704, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 12.0822958352314], [-13.0957031226542, 12.10378088951], [-13.0737304664082, 12.10378088951], [-13.0737304664082, 12.0822958352314], [-13.0957031226542, 12.0822958352314]]]]}, "properties": {"taskId": 1671, "taskX": 7596, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 12.0393205554158], [-13.0957031226542, 12.0608090562388], [-13.0737304664082, 12.0608090562388], [-13.0737304664082, 12.0393205554158], [-13.0957031226542, 12.0393205554158]]]]}, "properties": {"taskId": 1669, "taskX": 7596, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 12.0178303356471], [-13.0957031226542, 12.0393205554158], [-13.0737304664082, 12.0393205554158], [-13.0737304664082, 12.0178303356471], [-13.0957031226542, 12.0178303356471]]]]}, "properties": {"taskId": 1668, "taskX": 7596, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.9748447508181], [-13.0957031226542, 11.9963383998188], [-13.0737304664082, 11.9963383998188], [-13.0737304664082, 11.9748447508181], [-13.0957031226542, 11.9748447508181]]]]}, "properties": {"taskId": 1666, "taskX": 7596, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.9533493915333], [-13.0957031226542, 11.9748447508181], [-13.0737304664082, 11.9748447508181], [-13.0737304664082, 11.9533493915333], [-13.0957031226542, 11.9533493915333]]]]}, "properties": {"taskId": 1665, "taskX": 7596, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.9318523248542], [-13.0957031226542, 11.9533493915333], [-13.0737304664082, 11.9533493915333], [-13.0737304664082, 11.9318523248542], [-13.0957031226542, 11.9318523248542]]]]}, "properties": {"taskId": 1664, "taskX": 7596, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.9103535536714], [-13.0957031226542, 11.9318523248542], [-13.0737304664082, 11.9318523248542], [-13.0737304664082, 11.9103535536714], [-13.0957031226542, 11.9103535536714]]]]}, "properties": {"taskId": 1663, "taskX": 7596, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.888853080877], [-13.0957031226542, 11.9103535536714], [-13.0737304664082, 11.9103535536714], [-13.0737304664082, 11.888853080877], [-13.0957031226542, 11.888853080877]]]]}, "properties": {"taskId": 1662, "taskX": 7596, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.867350909364], [-13.0957031226542, 11.888853080877], [-13.0737304664082, 11.888853080877], [-13.0737304664082, 11.867350909364], [-13.0957031226542, 11.867350909364]]]]}, "properties": {"taskId": 1661, "taskX": 7596, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.8458470420268], [-13.0957031226542, 11.867350909364], [-13.0737304664082, 11.867350909364], [-13.0737304664082, 11.8458470420268], [-13.0957031226542, 11.8458470420268]]]]}, "properties": {"taskId": 1660, "taskX": 7596, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.8243414817611], [-13.0957031226542, 11.8458470420268], [-13.0737304664082, 11.8458470420268], [-13.0737304664082, 11.8243414817611], [-13.0957031226542, 11.8243414817611]]]]}, "properties": {"taskId": 1659, "taskX": 7596, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.8028342314634], [-13.0957031226542, 11.8243414817611], [-13.0737304664082, 11.8243414817611], [-13.0737304664082, 11.8028342314634], [-13.0957031226542, 11.8028342314634]]]]}, "properties": {"taskId": 1658, "taskX": 7596, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.7813252940317], [-13.0957031226542, 11.8028342314634], [-13.0737304664082, 11.8028342314634], [-13.0737304664082, 11.7813252940317], [-13.0957031226542, 11.7813252940317]]]]}, "properties": {"taskId": 1657, "taskX": 7596, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.759814672365], [-13.0957031226542, 11.7813252940317], [-13.0737304664082, 11.7813252940317], [-13.0737304664082, 11.759814672365], [-13.0957031226542, 11.759814672365]]]]}, "properties": {"taskId": 1656, "taskX": 7596, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.7383023693636], [-13.0957031226542, 11.759814672365], [-13.0737304664082, 11.759814672365], [-13.0737304664082, 11.7383023693636], [-13.0957031226542, 11.7383023693636]]]]}, "properties": {"taskId": 1655, "taskX": 7596, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.7167883879289], [-13.0957031226542, 11.7383023693636], [-13.0737304664082, 11.7383023693636], [-13.0737304664082, 11.7167883879289], [-13.0957031226542, 11.7167883879289]]]]}, "properties": {"taskId": 1654, "taskX": 7596, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.6952727309636], [-13.0957031226542, 11.7167883879289], [-13.0737304664082, 11.7167883879289], [-13.0737304664082, 11.6952727309636], [-13.0957031226542, 11.6952727309636]]]]}, "properties": {"taskId": 1653, "taskX": 7596, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.6737554013713], [-13.0957031226542, 11.6952727309636], [-13.0737304664082, 11.6952727309636], [-13.0737304664082, 11.6737554013713], [-13.0957031226542, 11.6737554013713]]]]}, "properties": {"taskId": 1652, "taskX": 7596, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.652236402057], [-13.0957031226542, 11.6737554013713], [-13.0737304664082, 11.6737554013713], [-13.0737304664082, 11.652236402057], [-13.0957031226542, 11.652236402057]]]]}, "properties": {"taskId": 1651, "taskX": 7596, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.6307157359267], [-13.0957031226542, 11.652236402057], [-13.0737304664082, 11.652236402057], [-13.0737304664082, 11.6307157359267], [-13.0957031226542, 11.6307157359267]]]]}, "properties": {"taskId": 1650, "taskX": 7596, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.6091934058879], [-13.0957031226542, 11.6307157359267], [-13.0737304664082, 11.6307157359267], [-13.0737304664082, 11.6091934058879], [-13.0957031226542, 11.6091934058879]]]]}, "properties": {"taskId": 1649, "taskX": 7596, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.5661437657192], [-13.0957031226542, 11.5876694148488], [-13.0737304664082, 11.5876694148488], [-13.0737304664082, 11.5661437657192], [-13.0957031226542, 11.5661437657192]]]]}, "properties": {"taskId": 1647, "taskX": 7596, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.5446164614097], [-13.0957031226542, 11.5661437657192], [-13.0737304664082, 11.5661437657192], [-13.0737304664082, 11.5446164614097], [-13.0957031226542, 11.5446164614097]]]]}, "properties": {"taskId": 1646, "taskX": 7596, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.5230875048322], [-13.0957031226542, 11.5446164614097], [-13.0737304664082, 11.5446164614097], [-13.0737304664082, 11.5230875048322], [-13.0957031226542, 11.5230875048322]]]]}, "properties": {"taskId": 1645, "taskX": 7596, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.5015568988999], [-13.0957031226542, 11.5230875048322], [-13.0737304664082, 11.5230875048322], [-13.0737304664082, 11.5015568988999], [-13.0957031226542, 11.5015568988999]]]]}, "properties": {"taskId": 1644, "taskX": 7596, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.480024646527], [-13.0957031226542, 11.5015568988999], [-13.0737304664082, 11.5015568988999], [-13.0737304664082, 11.480024646527], [-13.0957031226542, 11.480024646527]]]]}, "properties": {"taskId": 1643, "taskX": 7596, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.4584907506287], [-13.0957031226542, 11.480024646527], [-13.0737304664082, 11.480024646527], [-13.0737304664082, 11.4584907506287], [-13.0957031226542, 11.4584907506287]]]]}, "properties": {"taskId": 1642, "taskX": 7596, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.4369552141218], [-13.0957031226542, 11.4584907506287], [-13.0737304664082, 11.4584907506287], [-13.0737304664082, 11.4369552141218], [-13.0957031226542, 11.4369552141218]]]]}, "properties": {"taskId": 1641, "taskX": 7596, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.4154180399237], [-13.0957031226542, 11.4369552141218], [-13.0737304664082, 11.4369552141218], [-13.0737304664082, 11.4154180399237], [-13.0957031226542, 11.4154180399237]]]]}, "properties": {"taskId": 1640, "taskX": 7596, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.3938792309534], [-13.0957031226542, 11.4154180399237], [-13.0737304664082, 11.4154180399237], [-13.0737304664082, 11.3938792309534], [-13.0957031226542, 11.3938792309534]]]]}, "properties": {"taskId": 1639, "taskX": 7596, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.3723387901308], [-13.0957031226542, 11.3938792309534], [-13.0737304664082, 11.3938792309534], [-13.0737304664082, 11.3723387901308], [-13.0957031226542, 11.3723387901308]]]]}, "properties": {"taskId": 1638, "taskX": 7596, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.3507967203771], [-13.0957031226542, 11.3723387901308], [-13.0737304664082, 11.3723387901308], [-13.0737304664082, 11.3507967203771], [-13.0957031226542, 11.3507967203771]]]]}, "properties": {"taskId": 1637, "taskX": 7596, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.3292530246144], [-13.0957031226542, 11.3507967203771], [-13.0737304664082, 11.3507967203771], [-13.0737304664082, 11.3292530246144], [-13.0957031226542, 11.3292530246144]]]]}, "properties": {"taskId": 1636, "taskX": 7596, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.3077077057662], [-13.0957031226542, 11.3292530246144], [-13.0737304664082, 11.3292530246144], [-13.0737304664082, 11.3077077057662], [-13.0957031226542, 11.3077077057662]]]]}, "properties": {"taskId": 1635, "taskX": 7596, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.2861607667571], [-13.0957031226542, 11.3077077057662], [-13.0737304664082, 11.3077077057662], [-13.0737304664082, 11.2861607667571], [-13.0957031226542, 11.2861607667571]]]]}, "properties": {"taskId": 1634, "taskX": 7596, "taskY": 8709, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.2646122105126], [-13.0957031226542, 11.2861607667571], [-13.0737304664082, 11.2861607667571], [-13.0737304664082, 11.2646122105126], [-13.0957031226542, 11.2646122105126]]]]}, "properties": {"taskId": 1633, "taskX": 7596, "taskY": 8708, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.2430620399597], [-13.0957031226542, 11.2646122105126], [-13.0737304664082, 11.2646122105126], [-13.0737304664082, 11.2430620399597], [-13.0957031226542, 11.2430620399597]]]]}, "properties": {"taskId": 1632, "taskX": 7596, "taskY": 8707, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.2215102580262], [-13.0957031226542, 11.2430620399597], [-13.0737304664082, 11.2430620399597], [-13.0737304664082, 11.2215102580262], [-13.0957031226542, 11.2215102580262]]]]}, "properties": {"taskId": 1631, "taskX": 7596, "taskY": 8706, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.1999568676412], [-13.0957031226542, 11.2215102580262], [-13.0737304664082, 11.2215102580262], [-13.0737304664082, 11.1999568676412], [-13.0957031226542, 11.1999568676412]]]]}, "properties": {"taskId": 1630, "taskX": 7596, "taskY": 8705, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.1784018717349], [-13.0957031226542, 11.1999568676412], [-13.0737304664082, 11.1999568676412], [-13.0737304664082, 11.1784018717349], [-13.0957031226542, 11.1784018717349]]]]}, "properties": {"taskId": 1629, "taskX": 7596, "taskY": 8704, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.0957031226542, 11.1568452732386], [-13.0957031226542, 11.1784018717349], [-13.0737304664082, 11.1784018717349], [-13.0737304664082, 11.1568452732386], [-13.0957031226542, 11.1568452732386]]]]}, "properties": {"taskId": 1628, "taskX": 7596, "taskY": 8703, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 12.0393205554158], [-13.1176757789003, 12.0608090562388], [-13.0957031226542, 12.0608090562388], [-13.0957031226542, 12.0393205554158], [-13.1176757789003, 12.0393205554158]]]]}, "properties": {"taskId": 1627, "taskX": 7595, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 12.0178303356471], [-13.1176757789003, 12.0393205554158], [-13.0957031226542, 12.0393205554158], [-13.0957031226542, 12.0178303356471], [-13.1176757789003, 12.0178303356471]]]]}, "properties": {"taskId": 1626, "taskX": 7595, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.9963383998188], [-13.1176757789003, 12.0178303356471], [-13.0957031226542, 12.0178303356471], [-13.0957031226542, 11.9963383998188], [-13.1176757789003, 11.9963383998188]]]]}, "properties": {"taskId": 1625, "taskX": 7595, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.9748447508181], [-13.1176757789003, 11.9963383998188], [-13.0957031226542, 11.9963383998188], [-13.0957031226542, 11.9748447508181], [-13.1176757789003, 11.9748447508181]]]]}, "properties": {"taskId": 1624, "taskX": 7595, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.9533493915333], [-13.1176757789003, 11.9748447508181], [-13.0957031226542, 11.9748447508181], [-13.0957031226542, 11.9533493915333], [-13.1176757789003, 11.9533493915333]]]]}, "properties": {"taskId": 1623, "taskX": 7595, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.9318523248542], [-13.1176757789003, 11.9533493915333], [-13.0957031226542, 11.9533493915333], [-13.0957031226542, 11.9318523248542], [-13.1176757789003, 11.9318523248542]]]]}, "properties": {"taskId": 1622, "taskX": 7595, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.9103535536714], [-13.1176757789003, 11.9318523248542], [-13.0957031226542, 11.9318523248542], [-13.0957031226542, 11.9103535536714], [-13.1176757789003, 11.9103535536714]]]]}, "properties": {"taskId": 1621, "taskX": 7595, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.888853080877], [-13.1176757789003, 11.9103535536714], [-13.0957031226542, 11.9103535536714], [-13.0957031226542, 11.888853080877], [-13.1176757789003, 11.888853080877]]]]}, "properties": {"taskId": 1620, "taskX": 7595, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.8458470420268], [-13.1176757789003, 11.867350909364], [-13.0957031226542, 11.867350909364], [-13.0957031226542, 11.8458470420268], [-13.1176757789003, 11.8458470420268]]]]}, "properties": {"taskId": 1618, "taskX": 7595, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.8028342314634], [-13.1176757789003, 11.8243414817611], [-13.0957031226542, 11.8243414817611], [-13.0957031226542, 11.8028342314634], [-13.1176757789003, 11.8028342314634]]]]}, "properties": {"taskId": 1616, "taskX": 7595, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.759814672365], [-13.1176757789003, 11.7813252940317], [-13.0957031226542, 11.7813252940317], [-13.0957031226542, 11.759814672365], [-13.1176757789003, 11.759814672365]]]]}, "properties": {"taskId": 1614, "taskX": 7595, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.7383023693636], [-13.1176757789003, 11.759814672365], [-13.0957031226542, 11.759814672365], [-13.0957031226542, 11.7383023693636], [-13.1176757789003, 11.7383023693636]]]]}, "properties": {"taskId": 1613, "taskX": 7595, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.7167883879289], [-13.1176757789003, 11.7383023693636], [-13.0957031226542, 11.7383023693636], [-13.0957031226542, 11.7167883879289], [-13.1176757789003, 11.7167883879289]]]]}, "properties": {"taskId": 1612, "taskX": 7595, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.6952727309636], [-13.1176757789003, 11.7167883879289], [-13.0957031226542, 11.7167883879289], [-13.0957031226542, 11.6952727309636], [-13.1176757789003, 11.6952727309636]]]]}, "properties": {"taskId": 1611, "taskX": 7595, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.6737554013713], [-13.1176757789003, 11.6952727309636], [-13.0957031226542, 11.6952727309636], [-13.0957031226542, 11.6737554013713], [-13.1176757789003, 11.6737554013713]]]]}, "properties": {"taskId": 1610, "taskX": 7595, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.652236402057], [-13.1176757789003, 11.6737554013713], [-13.0957031226542, 11.6737554013713], [-13.0957031226542, 11.652236402057], [-13.1176757789003, 11.652236402057]]]]}, "properties": {"taskId": 1609, "taskX": 7595, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.6091934058879], [-13.1176757789003, 11.6307157359267], [-13.0957031226542, 11.6307157359267], [-13.0957031226542, 11.6091934058879], [-13.1176757789003, 11.6091934058879]]]]}, "properties": {"taskId": 1607, "taskX": 7595, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.5876694148488], [-13.1176757789003, 11.6091934058879], [-13.0957031226542, 11.6091934058879], [-13.0957031226542, 11.5876694148488], [-13.1176757789003, 11.5876694148488]]]]}, "properties": {"taskId": 1606, "taskX": 7595, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.5661437657192], [-13.1176757789003, 11.5876694148488], [-13.0957031226542, 11.5876694148488], [-13.0957031226542, 11.5661437657192], [-13.1176757789003, 11.5661437657192]]]]}, "properties": {"taskId": 1605, "taskX": 7595, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.5446164614097], [-13.1176757789003, 11.5661437657192], [-13.0957031226542, 11.5661437657192], [-13.0957031226542, 11.5446164614097], [-13.1176757789003, 11.5446164614097]]]]}, "properties": {"taskId": 1604, "taskX": 7595, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.5230875048322], [-13.1176757789003, 11.5446164614097], [-13.0957031226542, 11.5446164614097], [-13.0957031226542, 11.5230875048322], [-13.1176757789003, 11.5230875048322]]]]}, "properties": {"taskId": 1603, "taskX": 7595, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.5015568988999], [-13.1176757789003, 11.5230875048322], [-13.0957031226542, 11.5230875048322], [-13.0957031226542, 11.5015568988999], [-13.1176757789003, 11.5015568988999]]]]}, "properties": {"taskId": 1602, "taskX": 7595, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.480024646527], [-13.1176757789003, 11.5015568988999], [-13.0957031226542, 11.5015568988999], [-13.0957031226542, 11.480024646527], [-13.1176757789003, 11.480024646527]]]]}, "properties": {"taskId": 1601, "taskX": 7595, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.4584907506287], [-13.1176757789003, 11.480024646527], [-13.0957031226542, 11.480024646527], [-13.0957031226542, 11.4584907506287], [-13.1176757789003, 11.4584907506287]]]]}, "properties": {"taskId": 1600, "taskX": 7595, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.4154180399237], [-13.1176757789003, 11.4369552141218], [-13.0957031226542, 11.4369552141218], [-13.0957031226542, 11.4154180399237], [-13.1176757789003, 11.4154180399237]]]]}, "properties": {"taskId": 1598, "taskX": 7595, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.3938792309534], [-13.1176757789003, 11.4154180399237], [-13.0957031226542, 11.4154180399237], [-13.0957031226542, 11.3938792309534], [-13.1176757789003, 11.3938792309534]]]]}, "properties": {"taskId": 1597, "taskX": 7595, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.3723387901308], [-13.1176757789003, 11.3938792309534], [-13.0957031226542, 11.3938792309534], [-13.0957031226542, 11.3723387901308], [-13.1176757789003, 11.3723387901308]]]]}, "properties": {"taskId": 1596, "taskX": 7595, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.3507967203771], [-13.1176757789003, 11.3723387901308], [-13.0957031226542, 11.3723387901308], [-13.0957031226542, 11.3507967203771], [-13.1176757789003, 11.3507967203771]]]]}, "properties": {"taskId": 1595, "taskX": 7595, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.3292530246144], [-13.1176757789003, 11.3507967203771], [-13.0957031226542, 11.3507967203771], [-13.0957031226542, 11.3292530246144], [-13.1176757789003, 11.3292530246144]]]]}, "properties": {"taskId": 1594, "taskX": 7595, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.3077077057662], [-13.1176757789003, 11.3292530246144], [-13.0957031226542, 11.3292530246144], [-13.0957031226542, 11.3077077057662], [-13.1176757789003, 11.3077077057662]]]]}, "properties": {"taskId": 1593, "taskX": 7595, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.2861607667571], [-13.1176757789003, 11.3077077057662], [-13.0957031226542, 11.3077077057662], [-13.0957031226542, 11.2861607667571], [-13.1176757789003, 11.2861607667571]]]]}, "properties": {"taskId": 1592, "taskX": 7595, "taskY": 8709, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.2646122105126], [-13.1176757789003, 11.2861607667571], [-13.0957031226542, 11.2861607667571], [-13.0957031226542, 11.2646122105126], [-13.1176757789003, 11.2646122105126]]]]}, "properties": {"taskId": 1591, "taskX": 7595, "taskY": 8708, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.2430620399597], [-13.1176757789003, 11.2646122105126], [-13.0957031226542, 11.2646122105126], [-13.0957031226542, 11.2430620399597], [-13.1176757789003, 11.2430620399597]]]]}, "properties": {"taskId": 1590, "taskX": 7595, "taskY": 8707, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.2215102580262], [-13.1176757789003, 11.2430620399597], [-13.0957031226542, 11.2430620399597], [-13.0957031226542, 11.2215102580262], [-13.1176757789003, 11.2215102580262]]]]}, "properties": {"taskId": 1589, "taskX": 7595, "taskY": 8706, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.1999568676412], [-13.1176757789003, 11.2215102580262], [-13.0957031226542, 11.2215102580262], [-13.0957031226542, 11.1999568676412], [-13.1176757789003, 11.1999568676412]]]]}, "properties": {"taskId": 1588, "taskX": 7595, "taskY": 8705, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.9963383998188], [-13.2495117163767, 12.0178303356471], [-13.2275390601306, 12.0178303356471], [-13.2275390601306, 11.9963383998188], [-13.2495117163767, 11.9963383998188]]]]}, "properties": {"taskId": 1368, "taskX": 7589, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.9748447508181], [-13.2495117163767, 11.9963383998188], [-13.2275390601306, 11.9963383998188], [-13.2275390601306, 11.9748447508181], [-13.2495117163767, 11.9748447508181]]]]}, "properties": {"taskId": 1367, "taskX": 7589, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.9533493915333], [-13.2495117163767, 11.9748447508181], [-13.2275390601306, 11.9748447508181], [-13.2275390601306, 11.9533493915333], [-13.2495117163767, 11.9533493915333]]]]}, "properties": {"taskId": 1366, "taskX": 7589, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.9318523248542], [-13.2495117163767, 11.9533493915333], [-13.2275390601306, 11.9533493915333], [-13.2275390601306, 11.9318523248542], [-13.2495117163767, 11.9318523248542]]]]}, "properties": {"taskId": 1365, "taskX": 7589, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.9103535536714], [-13.2495117163767, 11.9318523248542], [-13.2275390601306, 11.9318523248542], [-13.2275390601306, 11.9103535536714], [-13.2495117163767, 11.9103535536714]]]]}, "properties": {"taskId": 1364, "taskX": 7589, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.888853080877], [-13.2495117163767, 11.9103535536714], [-13.2275390601306, 11.9103535536714], [-13.2275390601306, 11.888853080877], [-13.2495117163767, 11.888853080877]]]]}, "properties": {"taskId": 1363, "taskX": 7589, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.867350909364], [-13.2495117163767, 11.888853080877], [-13.2275390601306, 11.888853080877], [-13.2275390601306, 11.867350909364], [-13.2495117163767, 11.867350909364]]]]}, "properties": {"taskId": 1362, "taskX": 7589, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.8458470420268], [-13.2495117163767, 11.867350909364], [-13.2275390601306, 11.867350909364], [-13.2275390601306, 11.8458470420268], [-13.2495117163767, 11.8458470420268]]]]}, "properties": {"taskId": 1361, "taskX": 7589, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.8243414817611], [-13.2495117163767, 11.8458470420268], [-13.2275390601306, 11.8458470420268], [-13.2275390601306, 11.8243414817611], [-13.2495117163767, 11.8243414817611]]]]}, "properties": {"taskId": 1360, "taskX": 7589, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.8028342314634], [-13.2495117163767, 11.8243414817611], [-13.2275390601306, 11.8243414817611], [-13.2275390601306, 11.8028342314634], [-13.2495117163767, 11.8028342314634]]]]}, "properties": {"taskId": 1359, "taskX": 7589, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.7813252940317], [-13.2495117163767, 11.8028342314634], [-13.2275390601306, 11.8028342314634], [-13.2275390601306, 11.7813252940317], [-13.2495117163767, 11.7813252940317]]]]}, "properties": {"taskId": 1358, "taskX": 7589, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.759814672365], [-13.2495117163767, 11.7813252940317], [-13.2275390601306, 11.7813252940317], [-13.2275390601306, 11.759814672365], [-13.2495117163767, 11.759814672365]]]]}, "properties": {"taskId": 1357, "taskX": 7589, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.7383023693636], [-13.2495117163767, 11.759814672365], [-13.2275390601306, 11.759814672365], [-13.2275390601306, 11.7383023693636], [-13.2495117163767, 11.7383023693636]]]]}, "properties": {"taskId": 1356, "taskX": 7589, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.7167883879289], [-13.2495117163767, 11.7383023693636], [-13.2275390601306, 11.7383023693636], [-13.2275390601306, 11.7167883879289], [-13.2495117163767, 11.7167883879289]]]]}, "properties": {"taskId": 1355, "taskX": 7589, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.6952727309636], [-13.2495117163767, 11.7167883879289], [-13.2275390601306, 11.7167883879289], [-13.2275390601306, 11.6952727309636], [-13.2495117163767, 11.6952727309636]]]]}, "properties": {"taskId": 1354, "taskX": 7589, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.6737554013713], [-13.2495117163767, 11.6952727309636], [-13.2275390601306, 11.6952727309636], [-13.2275390601306, 11.6737554013713], [-13.2495117163767, 11.6737554013713]]]]}, "properties": {"taskId": 1353, "taskX": 7589, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.652236402057], [-13.2495117163767, 11.6737554013713], [-13.2275390601306, 11.6737554013713], [-13.2275390601306, 11.652236402057], [-13.2495117163767, 11.652236402057]]]]}, "properties": {"taskId": 1352, "taskX": 7589, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.6307157359267], [-13.2495117163767, 11.652236402057], [-13.2275390601306, 11.652236402057], [-13.2275390601306, 11.6307157359267], [-13.2495117163767, 11.6307157359267]]]]}, "properties": {"taskId": 1351, "taskX": 7589, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.6091934058879], [-13.2495117163767, 11.6307157359267], [-13.2275390601306, 11.6307157359267], [-13.2275390601306, 11.6091934058879], [-13.2495117163767, 11.6091934058879]]]]}, "properties": {"taskId": 1350, "taskX": 7589, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.5876694148488], [-13.2495117163767, 11.6091934058879], [-13.2275390601306, 11.6091934058879], [-13.2275390601306, 11.5876694148488], [-13.2495117163767, 11.5876694148488]]]]}, "properties": {"taskId": 1349, "taskX": 7589, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.5661437657192], [-13.2495117163767, 11.5876694148488], [-13.2275390601306, 11.5876694148488], [-13.2275390601306, 11.5661437657192], [-13.2495117163767, 11.5661437657192]]]]}, "properties": {"taskId": 1348, "taskX": 7589, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.5230875048322], [-13.2495117163767, 11.5446164614097], [-13.2275390601306, 11.5446164614097], [-13.2275390601306, 11.5230875048322], [-13.2495117163767, 11.5230875048322]]]]}, "properties": {"taskId": 1346, "taskX": 7589, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.5015568988999], [-13.2495117163767, 11.5230875048322], [-13.2275390601306, 11.5230875048322], [-13.2275390601306, 11.5015568988999], [-13.2495117163767, 11.5015568988999]]]]}, "properties": {"taskId": 1345, "taskX": 7589, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.480024646527], [-13.2495117163767, 11.5015568988999], [-13.2275390601306, 11.5015568988999], [-13.2275390601306, 11.480024646527], [-13.2495117163767, 11.480024646527]]]]}, "properties": {"taskId": 1344, "taskX": 7589, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.4584907506287], [-13.2495117163767, 11.480024646527], [-13.2275390601306, 11.480024646527], [-13.2275390601306, 11.4584907506287], [-13.2495117163767, 11.4584907506287]]]]}, "properties": {"taskId": 1343, "taskX": 7589, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.4369552141218], [-13.2495117163767, 11.4584907506287], [-13.2275390601306, 11.4584907506287], [-13.2275390601306, 11.4369552141218], [-13.2495117163767, 11.4369552141218]]]]}, "properties": {"taskId": 1342, "taskX": 7589, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.4154180399237], [-13.2495117163767, 11.4369552141218], [-13.2275390601306, 11.4369552141218], [-13.2275390601306, 11.4154180399237], [-13.2495117163767, 11.4154180399237]]]]}, "properties": {"taskId": 1341, "taskX": 7589, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.3938792309534], [-13.2495117163767, 11.4154180399237], [-13.2275390601306, 11.4154180399237], [-13.2275390601306, 11.3938792309534], [-13.2495117163767, 11.3938792309534]]]]}, "properties": {"taskId": 1340, "taskX": 7589, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.3723387901308], [-13.2495117163767, 11.3938792309534], [-13.2275390601306, 11.3938792309534], [-13.2275390601306, 11.3723387901308], [-13.2495117163767, 11.3723387901308]]]]}, "properties": {"taskId": 1339, "taskX": 7589, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.3507967203771], [-13.2495117163767, 11.3723387901308], [-13.2275390601306, 11.3723387901308], [-13.2275390601306, 11.3507967203771], [-13.2495117163767, 11.3507967203771]]]]}, "properties": {"taskId": 1338, "taskX": 7589, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.3292530246144], [-13.2495117163767, 11.3507967203771], [-13.2275390601306, 11.3507967203771], [-13.2275390601306, 11.3292530246144], [-13.2495117163767, 11.3292530246144]]]]}, "properties": {"taskId": 1337, "taskX": 7589, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.3077077057662], [-13.2495117163767, 11.3292530246144], [-13.2275390601306, 11.3292530246144], [-13.2275390601306, 11.3077077057662], [-13.2495117163767, 11.3077077057662]]]]}, "properties": {"taskId": 1336, "taskX": 7589, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.2861607667571], [-13.2495117163767, 11.3077077057662], [-13.2275390601306, 11.3077077057662], [-13.2275390601306, 11.2861607667571], [-13.2495117163767, 11.2861607667571]]]]}, "properties": {"taskId": 1335, "taskX": 7589, "taskY": 8709, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.2646122105126], [-13.2495117163767, 11.2861607667571], [-13.2275390601306, 11.2861607667571], [-13.2275390601306, 11.2646122105126], [-13.2495117163767, 11.2646122105126]]]]}, "properties": {"taskId": 1334, "taskX": 7589, "taskY": 8708, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.2430620399597], [-13.2495117163767, 11.2646122105126], [-13.2275390601306, 11.2646122105126], [-13.2275390601306, 11.2430620399597], [-13.2495117163767, 11.2430620399597]]]]}, "properties": {"taskId": 1333, "taskX": 7589, "taskY": 8707, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.2215102580262], [-13.2495117163767, 11.2430620399597], [-13.2275390601306, 11.2430620399597], [-13.2275390601306, 11.2215102580262], [-13.2495117163767, 11.2215102580262]]]]}, "properties": {"taskId": 1332, "taskX": 7589, "taskY": 8706, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.1999568676412], [-13.2495117163767, 11.2215102580262], [-13.2275390601306, 11.2215102580262], [-13.2275390601306, 11.1999568676412], [-13.2495117163767, 11.1999568676412]]]]}, "properties": {"taskId": 1331, "taskX": 7589, "taskY": 8705, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.1784018717349], [-13.2495117163767, 11.1999568676412], [-13.2275390601306, 11.1999568676412], [-13.2275390601306, 11.1784018717349], [-13.2495117163767, 11.1784018717349]]]]}, "properties": {"taskId": 1330, "taskX": 7589, "taskY": 8704, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.1568452732386], [-13.2495117163767, 11.1784018717349], [-13.2275390601306, 11.1784018717349], [-13.2275390601306, 11.1568452732386], [-13.2495117163767, 11.1568452732386]]]]}, "properties": {"taskId": 1329, "taskX": 7589, "taskY": 8703, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.1352870750847], [-13.2495117163767, 11.1568452732386], [-13.2275390601306, 11.1568452732386], [-13.2275390601306, 11.1352870750847], [-13.2495117163767, 11.1352870750847]]]]}, "properties": {"taskId": 1328, "taskX": 7589, "taskY": 8702, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.113727280207], [-13.2495117163767, 11.1352870750847], [-13.2275390601306, 11.1352870750847], [-13.2275390601306, 11.113727280207], [-13.2495117163767, 11.113727280207]]]]}, "properties": {"taskId": 1327, "taskX": 7589, "taskY": 8701, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.0921658915399], [-13.2495117163767, 11.113727280207], [-13.2275390601306, 11.113727280207], [-13.2275390601306, 11.0921658915399], [-13.2495117163767, 11.0921658915399]]]]}, "properties": {"taskId": 1326, "taskX": 7589, "taskY": 8700, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2495117163767, 11.0706029120195], [-13.2495117163767, 11.0921658915399], [-13.2275390601306, 11.0921658915399], [-13.2275390601306, 11.0706029120195], [-13.2495117163767, 11.0706029120195]]]]}, "properties": {"taskId": 1325, "taskX": 7589, "taskY": 8699, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 12.0822958352314], [-13.2714843726227, 12.10378088951], [-13.2495117163767, 12.10378088951], [-13.2495117163767, 12.0822958352314], [-13.2714843726227, 12.0822958352314]]]]}, "properties": {"taskId": 1324, "taskX": 7588, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 12.0608090562388], [-13.2714843726227, 12.0822958352314], [-13.2495117163767, 12.0822958352314], [-13.2495117163767, 12.0608090562388], [-13.2714843726227, 12.0608090562388]]]]}, "properties": {"taskId": 1323, "taskX": 7588, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 12.0393205554158], [-13.2714843726227, 12.0608090562388], [-13.2495117163767, 12.0608090562388], [-13.2495117163767, 12.0393205554158], [-13.2714843726227, 12.0393205554158]]]]}, "properties": {"taskId": 1322, "taskX": 7588, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 12.0178303356471], [-13.2714843726227, 12.0393205554158], [-13.2495117163767, 12.0393205554158], [-13.2495117163767, 12.0178303356471], [-13.2714843726227, 12.0178303356471]]]]}, "properties": {"taskId": 1321, "taskX": 7588, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.9963383998188], [-13.2714843726227, 12.0178303356471], [-13.2495117163767, 12.0178303356471], [-13.2495117163767, 11.9963383998188], [-13.2714843726227, 11.9963383998188]]]]}, "properties": {"taskId": 1320, "taskX": 7588, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.9748447508181], [-13.2714843726227, 11.9963383998188], [-13.2495117163767, 11.9963383998188], [-13.2495117163767, 11.9748447508181], [-13.2714843726227, 11.9748447508181]]]]}, "properties": {"taskId": 1319, "taskX": 7588, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.9533493915333], [-13.2714843726227, 11.9748447508181], [-13.2495117163767, 11.9748447508181], [-13.2495117163767, 11.9533493915333], [-13.2714843726227, 11.9533493915333]]]]}, "properties": {"taskId": 1318, "taskX": 7588, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.9318523248542], [-13.2714843726227, 11.9533493915333], [-13.2495117163767, 11.9533493915333], [-13.2495117163767, 11.9318523248542], [-13.2714843726227, 11.9318523248542]]]]}, "properties": {"taskId": 1317, "taskX": 7588, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.9103535536714], [-13.2714843726227, 11.9318523248542], [-13.2495117163767, 11.9318523248542], [-13.2495117163767, 11.9103535536714], [-13.2714843726227, 11.9103535536714]]]]}, "properties": {"taskId": 1316, "taskX": 7588, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.888853080877], [-13.2714843726227, 11.9103535536714], [-13.2495117163767, 11.9103535536714], [-13.2495117163767, 11.888853080877], [-13.2714843726227, 11.888853080877]]]]}, "properties": {"taskId": 1315, "taskX": 7588, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.867350909364], [-13.2714843726227, 11.888853080877], [-13.2495117163767, 11.888853080877], [-13.2495117163767, 11.867350909364], [-13.2714843726227, 11.867350909364]]]]}, "properties": {"taskId": 1314, "taskX": 7588, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.8458470420268], [-13.2714843726227, 11.867350909364], [-13.2495117163767, 11.867350909364], [-13.2495117163767, 11.8458470420268], [-13.2714843726227, 11.8458470420268]]]]}, "properties": {"taskId": 1313, "taskX": 7588, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.8243414817611], [-13.2714843726227, 11.8458470420268], [-13.2495117163767, 11.8458470420268], [-13.2495117163767, 11.8243414817611], [-13.2714843726227, 11.8243414817611]]]]}, "properties": {"taskId": 1312, "taskX": 7588, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.8028342314634], [-13.2714843726227, 11.8243414817611], [-13.2495117163767, 11.8243414817611], [-13.2495117163767, 11.8028342314634], [-13.2714843726227, 11.8028342314634]]]]}, "properties": {"taskId": 1311, "taskX": 7588, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.7383023693636], [-13.2714843726227, 11.759814672365], [-13.2495117163767, 11.759814672365], [-13.2495117163767, 11.7383023693636], [-13.2714843726227, 11.7383023693636]]]]}, "properties": {"taskId": 1308, "taskX": 7588, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.7167883879289], [-13.2714843726227, 11.7383023693636], [-13.2495117163767, 11.7383023693636], [-13.2495117163767, 11.7167883879289], [-13.2714843726227, 11.7167883879289]]]]}, "properties": {"taskId": 1307, "taskX": 7588, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.6737554013713], [-13.2714843726227, 11.6952727309636], [-13.2495117163767, 11.6952727309636], [-13.2495117163767, 11.6737554013713], [-13.2714843726227, 11.6737554013713]]]]}, "properties": {"taskId": 1305, "taskX": 7588, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.652236402057], [-13.2714843726227, 11.6737554013713], [-13.2495117163767, 11.6737554013713], [-13.2495117163767, 11.652236402057], [-13.2714843726227, 11.652236402057]]]]}, "properties": {"taskId": 1304, "taskX": 7588, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.6307157359267], [-13.2714843726227, 11.652236402057], [-13.2495117163767, 11.652236402057], [-13.2495117163767, 11.6307157359267], [-13.2714843726227, 11.6307157359267]]]]}, "properties": {"taskId": 1303, "taskX": 7588, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.6091934058879], [-13.2714843726227, 11.6307157359267], [-13.2495117163767, 11.6307157359267], [-13.2495117163767, 11.6091934058879], [-13.2714843726227, 11.6091934058879]]]]}, "properties": {"taskId": 1302, "taskX": 7588, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.5876694148488], [-13.2714843726227, 11.6091934058879], [-13.2495117163767, 11.6091934058879], [-13.2495117163767, 11.5876694148488], [-13.2714843726227, 11.5876694148488]]]]}, "properties": {"taskId": 1301, "taskX": 7588, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.5661437657192], [-13.2714843726227, 11.5876694148488], [-13.2495117163767, 11.5876694148488], [-13.2495117163767, 11.5661437657192], [-13.2714843726227, 11.5661437657192]]]]}, "properties": {"taskId": 1300, "taskX": 7588, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.5446164614097], [-13.2714843726227, 11.5661437657192], [-13.2495117163767, 11.5661437657192], [-13.2495117163767, 11.5446164614097], [-13.2714843726227, 11.5446164614097]]]]}, "properties": {"taskId": 1299, "taskX": 7588, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.5230875048322], [-13.2714843726227, 11.5446164614097], [-13.2495117163767, 11.5446164614097], [-13.2495117163767, 11.5230875048322], [-13.2714843726227, 11.5230875048322]]]]}, "properties": {"taskId": 1298, "taskX": 7588, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.5015568988999], [-13.2714843726227, 11.5230875048322], [-13.2495117163767, 11.5230875048322], [-13.2495117163767, 11.5015568988999], [-13.2714843726227, 11.5015568988999]]]]}, "properties": {"taskId": 1297, "taskX": 7588, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.480024646527], [-13.2714843726227, 11.5015568988999], [-13.2495117163767, 11.5015568988999], [-13.2495117163767, 11.480024646527], [-13.2714843726227, 11.480024646527]]]]}, "properties": {"taskId": 1296, "taskX": 7588, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.4584907506287], [-13.2714843726227, 11.480024646527], [-13.2495117163767, 11.480024646527], [-13.2495117163767, 11.4584907506287], [-13.2714843726227, 11.4584907506287]]]]}, "properties": {"taskId": 1295, "taskX": 7588, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.4369552141218], [-13.2714843726227, 11.4584907506287], [-13.2495117163767, 11.4584907506287], [-13.2495117163767, 11.4369552141218], [-13.2714843726227, 11.4369552141218]]]]}, "properties": {"taskId": 1294, "taskX": 7588, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.4154180399237], [-13.2714843726227, 11.4369552141218], [-13.2495117163767, 11.4369552141218], [-13.2495117163767, 11.4154180399237], [-13.2714843726227, 11.4154180399237]]]]}, "properties": {"taskId": 1293, "taskX": 7588, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.3938792309534], [-13.2714843726227, 11.4154180399237], [-13.2495117163767, 11.4154180399237], [-13.2495117163767, 11.3938792309534], [-13.2714843726227, 11.3938792309534]]]]}, "properties": {"taskId": 1292, "taskX": 7588, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.3723387901308], [-13.2714843726227, 11.3938792309534], [-13.2495117163767, 11.3938792309534], [-13.2495117163767, 11.3723387901308], [-13.2714843726227, 11.3723387901308]]]]}, "properties": {"taskId": 1291, "taskX": 7588, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.3292530246144], [-13.2714843726227, 11.3507967203771], [-13.2495117163767, 11.3507967203771], [-13.2495117163767, 11.3292530246144], [-13.2714843726227, 11.3292530246144]]]]}, "properties": {"taskId": 1289, "taskX": 7588, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.3077077057662], [-13.2714843726227, 11.3292530246144], [-13.2495117163767, 11.3292530246144], [-13.2495117163767, 11.3077077057662], [-13.2714843726227, 11.3077077057662]]]]}, "properties": {"taskId": 1288, "taskX": 7588, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.2861607667571], [-13.2714843726227, 11.3077077057662], [-13.2495117163767, 11.3077077057662], [-13.2495117163767, 11.2861607667571], [-13.2714843726227, 11.2861607667571]]]]}, "properties": {"taskId": 1287, "taskX": 7588, "taskY": 8709, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.2646122105126], [-13.2714843726227, 11.2861607667571], [-13.2495117163767, 11.2861607667571], [-13.2495117163767, 11.2646122105126], [-13.2714843726227, 11.2646122105126]]]]}, "properties": {"taskId": 1286, "taskX": 7588, "taskY": 8708, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.2430620399597], [-13.2714843726227, 11.2646122105126], [-13.2495117163767, 11.2646122105126], [-13.2495117163767, 11.2430620399597], [-13.2714843726227, 11.2430620399597]]]]}, "properties": {"taskId": 1285, "taskX": 7588, "taskY": 8707, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.2215102580262], [-13.2714843726227, 11.2430620399597], [-13.2495117163767, 11.2430620399597], [-13.2495117163767, 11.2215102580262], [-13.2714843726227, 11.2215102580262]]]]}, "properties": {"taskId": 1284, "taskX": 7588, "taskY": 8706, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.1568452732386], [-13.2714843726227, 11.1784018717349], [-13.2495117163767, 11.1784018717349], [-13.2495117163767, 11.1568452732386], [-13.2714843726227, 11.1568452732386]]]]}, "properties": {"taskId": 1281, "taskX": 7588, "taskY": 8703, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2714843726227, 11.1352870750847], [-13.2714843726227, 11.1568452732386], [-13.2495117163767, 11.1568452732386], [-13.2495117163767, 11.1352870750847], [-13.2714843726227, 11.1352870750847]]]]}, "properties": {"taskId": 1280, "taskX": 7588, "taskY": 8702, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 12.0822958352314], [-13.2934570288688, 12.10378088951], [-13.2714843726227, 12.10378088951], [-13.2714843726227, 12.0822958352314], [-13.2934570288688, 12.0822958352314]]]]}, "properties": {"taskId": 1279, "taskX": 7587, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 12.0393205554158], [-13.2934570288688, 12.0608090562388], [-13.2714843726227, 12.0608090562388], [-13.2714843726227, 12.0393205554158], [-13.2934570288688, 12.0393205554158]]]]}, "properties": {"taskId": 1277, "taskX": 7587, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 12.0178303356471], [-13.2934570288688, 12.0393205554158], [-13.2714843726227, 12.0393205554158], [-13.2714843726227, 12.0178303356471], [-13.2934570288688, 12.0178303356471]]]]}, "properties": {"taskId": 1276, "taskX": 7587, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.9963383998188], [-13.2934570288688, 12.0178303356471], [-13.2714843726227, 12.0178303356471], [-13.2714843726227, 11.9963383998188], [-13.2934570288688, 11.9963383998188]]]]}, "properties": {"taskId": 1275, "taskX": 7587, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.9533493915333], [-13.2934570288688, 11.9748447508181], [-13.2714843726227, 11.9748447508181], [-13.2714843726227, 11.9533493915333], [-13.2934570288688, 11.9533493915333]]]]}, "properties": {"taskId": 1273, "taskX": 7587, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.9318523248542], [-13.2934570288688, 11.9533493915333], [-13.2714843726227, 11.9533493915333], [-13.2714843726227, 11.9318523248542], [-13.2934570288688, 11.9318523248542]]]]}, "properties": {"taskId": 1272, "taskX": 7587, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.9103535536714], [-13.2934570288688, 11.9318523248542], [-13.2714843726227, 11.9318523248542], [-13.2714843726227, 11.9103535536714], [-13.2934570288688, 11.9103535536714]]]]}, "properties": {"taskId": 1271, "taskX": 7587, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.888853080877], [-13.2934570288688, 11.9103535536714], [-13.2714843726227, 11.9103535536714], [-13.2714843726227, 11.888853080877], [-13.2934570288688, 11.888853080877]]]]}, "properties": {"taskId": 1270, "taskX": 7587, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.867350909364], [-13.2934570288688, 11.888853080877], [-13.2714843726227, 11.888853080877], [-13.2714843726227, 11.867350909364], [-13.2934570288688, 11.867350909364]]]]}, "properties": {"taskId": 1269, "taskX": 7587, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.8028342314634], [-13.2934570288688, 11.8243414817611], [-13.2714843726227, 11.8243414817611], [-13.2714843726227, 11.8028342314634], [-13.2934570288688, 11.8028342314634]]]]}, "properties": {"taskId": 1266, "taskX": 7587, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.7813252940317], [-13.2934570288688, 11.8028342314634], [-13.2714843726227, 11.8028342314634], [-13.2714843726227, 11.7813252940317], [-13.2934570288688, 11.7813252940317]]]]}, "properties": {"taskId": 1265, "taskX": 7587, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.7383023693636], [-13.2934570288688, 11.759814672365], [-13.2714843726227, 11.759814672365], [-13.2714843726227, 11.7383023693636], [-13.2934570288688, 11.7383023693636]]]]}, "properties": {"taskId": 1263, "taskX": 7587, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.7167883879289], [-13.2934570288688, 11.7383023693636], [-13.2714843726227, 11.7383023693636], [-13.2714843726227, 11.7167883879289], [-13.2934570288688, 11.7167883879289]]]]}, "properties": {"taskId": 1262, "taskX": 7587, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.6952727309636], [-13.2934570288688, 11.7167883879289], [-13.2714843726227, 11.7167883879289], [-13.2714843726227, 11.6952727309636], [-13.2934570288688, 11.6952727309636]]]]}, "properties": {"taskId": 1261, "taskX": 7587, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.6737554013713], [-13.2934570288688, 11.6952727309636], [-13.2714843726227, 11.6952727309636], [-13.2714843726227, 11.6737554013713], [-13.2934570288688, 11.6737554013713]]]]}, "properties": {"taskId": 1260, "taskX": 7587, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.652236402057], [-13.2934570288688, 11.6737554013713], [-13.2714843726227, 11.6737554013713], [-13.2714843726227, 11.652236402057], [-13.2934570288688, 11.652236402057]]]]}, "properties": {"taskId": 1259, "taskX": 7587, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.6307157359267], [-13.2934570288688, 11.652236402057], [-13.2714843726227, 11.652236402057], [-13.2714843726227, 11.6307157359267], [-13.2934570288688, 11.6307157359267]]]]}, "properties": {"taskId": 1258, "taskX": 7587, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.5876694148488], [-13.2934570288688, 11.6091934058879], [-13.2714843726227, 11.6091934058879], [-13.2714843726227, 11.5876694148488], [-13.2934570288688, 11.5876694148488]]]]}, "properties": {"taskId": 1256, "taskX": 7587, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.4584907506287], [-13.2934570288688, 11.480024646527], [-13.2714843726227, 11.480024646527], [-13.2714843726227, 11.4584907506287], [-13.2934570288688, 11.4584907506287]]]]}, "properties": {"taskId": 1250, "taskX": 7587, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.4369552141218], [-13.2934570288688, 11.4584907506287], [-13.2714843726227, 11.4584907506287], [-13.2714843726227, 11.4369552141218], [-13.2934570288688, 11.4369552141218]]]]}, "properties": {"taskId": 1249, "taskX": 7587, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.4154180399237], [-13.2934570288688, 11.4369552141218], [-13.2714843726227, 11.4369552141218], [-13.2714843726227, 11.4154180399237], [-13.2934570288688, 11.4154180399237]]]]}, "properties": {"taskId": 1248, "taskX": 7587, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.3938792309534], [-13.2934570288688, 11.4154180399237], [-13.2714843726227, 11.4154180399237], [-13.2714843726227, 11.3938792309534], [-13.2934570288688, 11.3938792309534]]]]}, "properties": {"taskId": 1247, "taskX": 7587, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.3723387901308], [-13.2934570288688, 11.3938792309534], [-13.2714843726227, 11.3938792309534], [-13.2714843726227, 11.3723387901308], [-13.2934570288688, 11.3723387901308]]]]}, "properties": {"taskId": 1246, "taskX": 7587, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.3507967203771], [-13.2934570288688, 11.3723387901308], [-13.2714843726227, 11.3723387901308], [-13.2714843726227, 11.3507967203771], [-13.2934570288688, 11.3507967203771]]]]}, "properties": {"taskId": 1245, "taskX": 7587, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.9748447508181], [-13.00781249767, 11.9963383998188], [-12.9858398414239, 11.9963383998188], [-12.9858398414239, 11.9748447508181], [-13.00781249767, 11.9748447508181]]]]}, "properties": {"taskId": 1838, "taskX": 7600, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.9533493915333], [-13.00781249767, 11.9748447508181], [-12.9858398414239, 11.9748447508181], [-12.9858398414239, 11.9533493915333], [-13.00781249767, 11.9533493915333]]]]}, "properties": {"taskId": 1837, "taskX": 7600, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.9318523248542], [-13.00781249767, 11.9533493915333], [-12.9858398414239, 11.9533493915333], [-12.9858398414239, 11.9318523248542], [-13.00781249767, 11.9318523248542]]]]}, "properties": {"taskId": 1836, "taskX": 7600, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.9103535536714], [-13.00781249767, 11.9318523248542], [-12.9858398414239, 11.9318523248542], [-12.9858398414239, 11.9103535536714], [-13.00781249767, 11.9103535536714]]]]}, "properties": {"taskId": 1835, "taskX": 7600, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.888853080877], [-13.00781249767, 11.9103535536714], [-12.9858398414239, 11.9103535536714], [-12.9858398414239, 11.888853080877], [-13.00781249767, 11.888853080877]]]]}, "properties": {"taskId": 1834, "taskX": 7600, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.8458470420268], [-13.00781249767, 11.867350909364], [-12.9858398414239, 11.867350909364], [-12.9858398414239, 11.8458470420268], [-13.00781249767, 11.8458470420268]]]]}, "properties": {"taskId": 1832, "taskX": 7600, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.8243414817611], [-13.00781249767, 11.8458470420268], [-12.9858398414239, 11.8458470420268], [-12.9858398414239, 11.8243414817611], [-13.00781249767, 11.8243414817611]]]]}, "properties": {"taskId": 1831, "taskX": 7600, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.8028342314634], [-13.00781249767, 11.8243414817611], [-12.9858398414239, 11.8243414817611], [-12.9858398414239, 11.8028342314634], [-13.00781249767, 11.8028342314634]]]]}, "properties": {"taskId": 1830, "taskX": 7600, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.7813252940317], [-13.00781249767, 11.8028342314634], [-12.9858398414239, 11.8028342314634], [-12.9858398414239, 11.7813252940317], [-13.00781249767, 11.7813252940317]]]]}, "properties": {"taskId": 1829, "taskX": 7600, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.7383023693636], [-13.00781249767, 11.759814672365], [-12.9858398414239, 11.759814672365], [-12.9858398414239, 11.7383023693636], [-13.00781249767, 11.7383023693636]]]]}, "properties": {"taskId": 1827, "taskX": 7600, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.652236402057], [-13.00781249767, 11.6737554013713], [-12.9858398414239, 11.6737554013713], [-12.9858398414239, 11.652236402057], [-13.00781249767, 11.652236402057]]]]}, "properties": {"taskId": 1823, "taskX": 7600, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.6307157359267], [-13.00781249767, 11.652236402057], [-12.9858398414239, 11.652236402057], [-12.9858398414239, 11.6307157359267], [-13.00781249767, 11.6307157359267]]]]}, "properties": {"taskId": 1822, "taskX": 7600, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.6091934058879], [-13.00781249767, 11.6307157359267], [-12.9858398414239, 11.6307157359267], [-12.9858398414239, 11.6091934058879], [-13.00781249767, 11.6091934058879]]]]}, "properties": {"taskId": 1821, "taskX": 7600, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.5876694148488], [-13.00781249767, 11.6091934058879], [-12.9858398414239, 11.6091934058879], [-12.9858398414239, 11.5876694148488], [-13.00781249767, 11.5876694148488]]]]}, "properties": {"taskId": 1820, "taskX": 7600, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.5661437657192], [-13.00781249767, 11.5876694148488], [-12.9858398414239, 11.5876694148488], [-12.9858398414239, 11.5661437657192], [-13.00781249767, 11.5661437657192]]]]}, "properties": {"taskId": 1819, "taskX": 7600, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.5446164614097], [-13.00781249767, 11.5661437657192], [-12.9858398414239, 11.5661437657192], [-12.9858398414239, 11.5446164614097], [-13.00781249767, 11.5446164614097]]]]}, "properties": {"taskId": 1818, "taskX": 7600, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.5230875048322], [-13.00781249767, 11.5446164614097], [-12.9858398414239, 11.5446164614097], [-12.9858398414239, 11.5230875048322], [-13.00781249767, 11.5230875048322]]]]}, "properties": {"taskId": 1817, "taskX": 7600, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.5015568988999], [-13.00781249767, 11.5230875048322], [-12.9858398414239, 11.5230875048322], [-12.9858398414239, 11.5015568988999], [-13.00781249767, 11.5015568988999]]]]}, "properties": {"taskId": 1816, "taskX": 7600, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.480024646527], [-13.00781249767, 11.5015568988999], [-12.9858398414239, 11.5015568988999], [-12.9858398414239, 11.480024646527], [-13.00781249767, 11.480024646527]]]]}, "properties": {"taskId": 1815, "taskX": 7600, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.4584907506287], [-13.00781249767, 11.480024646527], [-12.9858398414239, 11.480024646527], [-12.9858398414239, 11.4584907506287], [-13.00781249767, 11.4584907506287]]]]}, "properties": {"taskId": 1814, "taskX": 7600, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.4369552141218], [-13.00781249767, 11.4584907506287], [-12.9858398414239, 11.4584907506287], [-12.9858398414239, 11.4369552141218], [-13.00781249767, 11.4369552141218]]]]}, "properties": {"taskId": 1813, "taskX": 7600, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.4154180399237], [-13.00781249767, 11.4369552141218], [-12.9858398414239, 11.4369552141218], [-12.9858398414239, 11.4154180399237], [-13.00781249767, 11.4154180399237]]]]}, "properties": {"taskId": 1812, "taskX": 7600, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.3938792309534], [-13.00781249767, 11.4154180399237], [-12.9858398414239, 11.4154180399237], [-12.9858398414239, 11.3938792309534], [-13.00781249767, 11.3938792309534]]]]}, "properties": {"taskId": 1811, "taskX": 7600, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.3723387901308], [-13.00781249767, 11.3938792309534], [-12.9858398414239, 11.3938792309534], [-12.9858398414239, 11.3723387901308], [-13.00781249767, 11.3723387901308]]]]}, "properties": {"taskId": 1810, "taskX": 7600, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.3507967203771], [-13.00781249767, 11.3723387901308], [-12.9858398414239, 11.3723387901308], [-12.9858398414239, 11.3507967203771], [-13.00781249767, 11.3507967203771]]]]}, "properties": {"taskId": 1809, "taskX": 7600, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.3292530246144], [-13.00781249767, 11.3507967203771], [-12.9858398414239, 11.3507967203771], [-12.9858398414239, 11.3292530246144], [-13.00781249767, 11.3292530246144]]]]}, "properties": {"taskId": 1808, "taskX": 7600, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.3077077057662], [-13.00781249767, 11.3292530246144], [-12.9858398414239, 11.3292530246144], [-12.9858398414239, 11.3077077057662], [-13.00781249767, 11.3077077057662]]]]}, "properties": {"taskId": 1807, "taskX": 7600, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.2861607667571], [-13.00781249767, 11.3077077057662], [-12.9858398414239, 11.3077077057662], [-12.9858398414239, 11.2861607667571], [-13.00781249767, 11.2861607667571]]]]}, "properties": {"taskId": 1806, "taskX": 7600, "taskY": 8709, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.2646122105126], [-13.00781249767, 11.2861607667571], [-12.9858398414239, 11.2861607667571], [-12.9858398414239, 11.2646122105126], [-13.00781249767, 11.2646122105126]]]]}, "properties": {"taskId": 1805, "taskX": 7600, "taskY": 8708, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.00781249767, 11.2430620399597], [-13.00781249767, 11.2646122105126], [-12.9858398414239, 11.2646122105126], [-12.9858398414239, 11.2430620399597], [-13.00781249767, 11.2430620399597]]]]}, "properties": {"taskId": 1804, "taskX": 7600, "taskY": 8707, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.3292530246144], [-13.2934570288688, 11.3507967203771], [-13.2714843726227, 11.3507967203771], [-13.2714843726227, 11.3292530246144], [-13.2934570288688, 11.3292530246144]]]]}, "properties": {"taskId": 1244, "taskX": 7587, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.3077077057662], [-13.2934570288688, 11.3292530246144], [-13.2714843726227, 11.3292530246144], [-13.2714843726227, 11.3077077057662], [-13.2934570288688, 11.3077077057662]]]]}, "properties": {"taskId": 1243, "taskX": 7587, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.2861607667571], [-13.2934570288688, 11.3077077057662], [-13.2714843726227, 11.3077077057662], [-13.2714843726227, 11.2861607667571], [-13.2934570288688, 11.2861607667571]]]]}, "properties": {"taskId": 1242, "taskX": 7587, "taskY": 8709, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.2646122105126], [-13.2934570288688, 11.2861607667571], [-13.2714843726227, 11.2861607667571], [-13.2714843726227, 11.2646122105126], [-13.2934570288688, 11.2646122105126]]]]}, "properties": {"taskId": 1241, "taskX": 7587, "taskY": 8708, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.2430620399597], [-13.2934570288688, 11.2646122105126], [-13.2714843726227, 11.2646122105126], [-13.2714843726227, 11.2430620399597], [-13.2934570288688, 11.2430620399597]]]]}, "properties": {"taskId": 1240, "taskX": 7587, "taskY": 8707, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2934570288688, 11.2215102580262], [-13.2934570288688, 11.2430620399597], [-13.2714843726227, 11.2430620399597], [-13.2714843726227, 11.2215102580262], [-13.2934570288688, 11.2215102580262]]]]}, "properties": {"taskId": 1239, "taskX": 7587, "taskY": 8706, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 12.0822958352314], [-13.3154296851149, 12.10378088951], [-13.2934570288688, 12.10378088951], [-13.2934570288688, 12.0822958352314], [-13.3154296851149, 12.0822958352314]]]]}, "properties": {"taskId": 1238, "taskX": 7586, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 12.0608090562388], [-13.3154296851149, 12.0822958352314], [-13.2934570288688, 12.0822958352314], [-13.2934570288688, 12.0608090562388], [-13.3154296851149, 12.0608090562388]]]]}, "properties": {"taskId": 1237, "taskX": 7586, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 12.0393205554158], [-13.3154296851149, 12.0608090562388], [-13.2934570288688, 12.0608090562388], [-13.2934570288688, 12.0393205554158], [-13.3154296851149, 12.0393205554158]]]]}, "properties": {"taskId": 1236, "taskX": 7586, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 12.0178303356471], [-13.3154296851149, 12.0393205554158], [-13.2934570288688, 12.0393205554158], [-13.2934570288688, 12.0178303356471], [-13.3154296851149, 12.0178303356471]]]]}, "properties": {"taskId": 1235, "taskX": 7586, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.9963383998188], [-13.3154296851149, 12.0178303356471], [-13.2934570288688, 12.0178303356471], [-13.2934570288688, 11.9963383998188], [-13.3154296851149, 11.9963383998188]]]]}, "properties": {"taskId": 1234, "taskX": 7586, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.9748447508181], [-13.3154296851149, 11.9963383998188], [-13.2934570288688, 11.9963383998188], [-13.2934570288688, 11.9748447508181], [-13.3154296851149, 11.9748447508181]]]]}, "properties": {"taskId": 1233, "taskX": 7586, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.9533493915333], [-13.3154296851149, 11.9748447508181], [-13.2934570288688, 11.9748447508181], [-13.2934570288688, 11.9533493915333], [-13.3154296851149, 11.9533493915333]]]]}, "properties": {"taskId": 1232, "taskX": 7586, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.9318523248542], [-13.3154296851149, 11.9533493915333], [-13.2934570288688, 11.9533493915333], [-13.2934570288688, 11.9318523248542], [-13.3154296851149, 11.9318523248542]]]]}, "properties": {"taskId": 1231, "taskX": 7586, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.9103535536714], [-13.3154296851149, 11.9318523248542], [-13.2934570288688, 11.9318523248542], [-13.2934570288688, 11.9103535536714], [-13.3154296851149, 11.9103535536714]]]]}, "properties": {"taskId": 1230, "taskX": 7586, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.888853080877], [-13.3154296851149, 11.9103535536714], [-13.2934570288688, 11.9103535536714], [-13.2934570288688, 11.888853080877], [-13.3154296851149, 11.888853080877]]]]}, "properties": {"taskId": 1229, "taskX": 7586, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.867350909364], [-13.3154296851149, 11.888853080877], [-13.2934570288688, 11.888853080877], [-13.2934570288688, 11.867350909364], [-13.3154296851149, 11.867350909364]]]]}, "properties": {"taskId": 1228, "taskX": 7586, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.8458470420268], [-13.3154296851149, 11.867350909364], [-13.2934570288688, 11.867350909364], [-13.2934570288688, 11.8458470420268], [-13.3154296851149, 11.8458470420268]]]]}, "properties": {"taskId": 1227, "taskX": 7586, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.8243414817611], [-13.3154296851149, 11.8458470420268], [-13.2934570288688, 11.8458470420268], [-13.2934570288688, 11.8243414817611], [-13.3154296851149, 11.8243414817611]]]]}, "properties": {"taskId": 1226, "taskX": 7586, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.8028342314634], [-13.3154296851149, 11.8243414817611], [-13.2934570288688, 11.8243414817611], [-13.2934570288688, 11.8028342314634], [-13.3154296851149, 11.8028342314634]]]]}, "properties": {"taskId": 1225, "taskX": 7586, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.7813252940317], [-13.3154296851149, 11.8028342314634], [-13.2934570288688, 11.8028342314634], [-13.2934570288688, 11.7813252940317], [-13.3154296851149, 11.7813252940317]]]]}, "properties": {"taskId": 1224, "taskX": 7586, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.759814672365], [-13.3154296851149, 11.7813252940317], [-13.2934570288688, 11.7813252940317], [-13.2934570288688, 11.759814672365], [-13.3154296851149, 11.759814672365]]]]}, "properties": {"taskId": 1223, "taskX": 7586, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.7167883879289], [-13.3154296851149, 11.7383023693636], [-13.2934570288688, 11.7383023693636], [-13.2934570288688, 11.7167883879289], [-13.3154296851149, 11.7167883879289]]]]}, "properties": {"taskId": 1221, "taskX": 7586, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.6952727309636], [-13.3154296851149, 11.7167883879289], [-13.2934570288688, 11.7167883879289], [-13.2934570288688, 11.6952727309636], [-13.3154296851149, 11.6952727309636]]]]}, "properties": {"taskId": 1220, "taskX": 7586, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.6737554013713], [-13.3154296851149, 11.6952727309636], [-13.2934570288688, 11.6952727309636], [-13.2934570288688, 11.6737554013713], [-13.3154296851149, 11.6737554013713]]]]}, "properties": {"taskId": 1219, "taskX": 7586, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.652236402057], [-13.3154296851149, 11.6737554013713], [-13.2934570288688, 11.6737554013713], [-13.2934570288688, 11.652236402057], [-13.3154296851149, 11.652236402057]]]]}, "properties": {"taskId": 1218, "taskX": 7586, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.6307157359267], [-13.3154296851149, 11.652236402057], [-13.2934570288688, 11.652236402057], [-13.2934570288688, 11.6307157359267], [-13.3154296851149, 11.6307157359267]]]]}, "properties": {"taskId": 1217, "taskX": 7586, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.5876694148488], [-13.3154296851149, 11.6091934058879], [-13.2934570288688, 11.6091934058879], [-13.2934570288688, 11.5876694148488], [-13.3154296851149, 11.5876694148488]]]]}, "properties": {"taskId": 1215, "taskX": 7586, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.5661437657192], [-13.3154296851149, 11.5876694148488], [-13.2934570288688, 11.5876694148488], [-13.2934570288688, 11.5661437657192], [-13.3154296851149, 11.5661437657192]]]]}, "properties": {"taskId": 1214, "taskX": 7586, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.5015568988999], [-13.3154296851149, 11.5230875048322], [-13.2934570288688, 11.5230875048322], [-13.2934570288688, 11.5015568988999], [-13.3154296851149, 11.5015568988999]]]]}, "properties": {"taskId": 1211, "taskX": 7586, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.480024646527], [-13.3154296851149, 11.5015568988999], [-13.2934570288688, 11.5015568988999], [-13.2934570288688, 11.480024646527], [-13.3154296851149, 11.480024646527]]]]}, "properties": {"taskId": 1210, "taskX": 7586, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.4584907506287], [-13.3154296851149, 11.480024646527], [-13.2934570288688, 11.480024646527], [-13.2934570288688, 11.4584907506287], [-13.3154296851149, 11.4584907506287]]]]}, "properties": {"taskId": 1209, "taskX": 7586, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.4369552141218], [-13.3154296851149, 11.4584907506287], [-13.2934570288688, 11.4584907506287], [-13.2934570288688, 11.4369552141218], [-13.3154296851149, 11.4369552141218]]]]}, "properties": {"taskId": 1208, "taskX": 7586, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.4154180399237], [-13.3154296851149, 11.4369552141218], [-13.2934570288688, 11.4369552141218], [-13.2934570288688, 11.4154180399237], [-13.3154296851149, 11.4154180399237]]]]}, "properties": {"taskId": 1207, "taskX": 7586, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.3938792309534], [-13.3154296851149, 11.4154180399237], [-13.2934570288688, 11.4154180399237], [-13.2934570288688, 11.3938792309534], [-13.3154296851149, 11.3938792309534]]]]}, "properties": {"taskId": 1206, "taskX": 7586, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.3723387901308], [-13.3154296851149, 11.3938792309534], [-13.2934570288688, 11.3938792309534], [-13.2934570288688, 11.3723387901308], [-13.3154296851149, 11.3723387901308]]]]}, "properties": {"taskId": 1205, "taskX": 7586, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.3507967203771], [-13.3154296851149, 11.3723387901308], [-13.2934570288688, 11.3723387901308], [-13.2934570288688, 11.3507967203771], [-13.3154296851149, 11.3507967203771]]]]}, "properties": {"taskId": 1204, "taskX": 7586, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3154296851149, 11.3292530246144], [-13.3154296851149, 11.3507967203771], [-13.2934570288688, 11.3507967203771], [-13.2934570288688, 11.3292530246144], [-13.3154296851149, 11.3292530246144]]]]}, "properties": {"taskId": 1203, "taskX": 7586, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 12.1252642161921], [-13.3374023413609, 12.1467458123965], [-13.3154296851149, 12.1467458123965], [-13.3154296851149, 12.1252642161921], [-13.3374023413609, 12.1252642161921]]]]}, "properties": {"taskId": 1202, "taskX": 7585, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 12.0822958352314], [-13.3374023413609, 12.10378088951], [-13.3154296851149, 12.10378088951], [-13.3154296851149, 12.0822958352314], [-13.3374023413609, 12.0822958352314]]]]}, "properties": {"taskId": 1201, "taskX": 7585, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 12.0608090562388], [-13.3374023413609, 12.0822958352314], [-13.3154296851149, 12.0822958352314], [-13.3154296851149, 12.0608090562388], [-13.3374023413609, 12.0608090562388]]]]}, "properties": {"taskId": 1200, "taskX": 7585, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 12.0393205554158], [-13.3374023413609, 12.0608090562388], [-13.3154296851149, 12.0608090562388], [-13.3154296851149, 12.0393205554158], [-13.3374023413609, 12.0393205554158]]]]}, "properties": {"taskId": 1199, "taskX": 7585, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 12.0178303356471], [-13.3374023413609, 12.0393205554158], [-13.3154296851149, 12.0393205554158], [-13.3154296851149, 12.0178303356471], [-13.3374023413609, 12.0178303356471]]]]}, "properties": {"taskId": 1198, "taskX": 7585, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.9963383998188], [-13.3374023413609, 12.0178303356471], [-13.3154296851149, 12.0178303356471], [-13.3154296851149, 11.9963383998188], [-13.3374023413609, 11.9963383998188]]]]}, "properties": {"taskId": 1197, "taskX": 7585, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.9533493915333], [-13.3374023413609, 11.9748447508181], [-13.3154296851149, 11.9748447508181], [-13.3154296851149, 11.9533493915333], [-13.3374023413609, 11.9533493915333]]]]}, "properties": {"taskId": 1195, "taskX": 7585, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.9318523248542], [-13.3374023413609, 11.9533493915333], [-13.3154296851149, 11.9533493915333], [-13.3154296851149, 11.9318523248542], [-13.3374023413609, 11.9318523248542]]]]}, "properties": {"taskId": 1194, "taskX": 7585, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.9103535536714], [-13.3374023413609, 11.9318523248542], [-13.3154296851149, 11.9318523248542], [-13.3154296851149, 11.9103535536714], [-13.3374023413609, 11.9103535536714]]]]}, "properties": {"taskId": 1193, "taskX": 7585, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.888853080877], [-13.3374023413609, 11.9103535536714], [-13.3154296851149, 11.9103535536714], [-13.3154296851149, 11.888853080877], [-13.3374023413609, 11.888853080877]]]]}, "properties": {"taskId": 1192, "taskX": 7585, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.867350909364], [-13.3374023413609, 11.888853080877], [-13.3154296851149, 11.888853080877], [-13.3154296851149, 11.867350909364], [-13.3374023413609, 11.867350909364]]]]}, "properties": {"taskId": 1191, "taskX": 7585, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.8458470420268], [-13.3374023413609, 11.867350909364], [-13.3154296851149, 11.867350909364], [-13.3154296851149, 11.8458470420268], [-13.3374023413609, 11.8458470420268]]]]}, "properties": {"taskId": 1190, "taskX": 7585, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.8243414817611], [-13.3374023413609, 11.8458470420268], [-13.3154296851149, 11.8458470420268], [-13.3154296851149, 11.8243414817611], [-13.3374023413609, 11.8243414817611]]]]}, "properties": {"taskId": 1189, "taskX": 7585, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.8028342314634], [-13.3374023413609, 11.8243414817611], [-13.3154296851149, 11.8243414817611], [-13.3154296851149, 11.8028342314634], [-13.3374023413609, 11.8028342314634]]]]}, "properties": {"taskId": 1188, "taskX": 7585, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.7167883879289], [-13.3374023413609, 11.7383023693636], [-13.3154296851149, 11.7383023693636], [-13.3154296851149, 11.7167883879289], [-13.3374023413609, 11.7167883879289]]]]}, "properties": {"taskId": 1184, "taskX": 7585, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.6737554013713], [-13.3374023413609, 11.6952727309636], [-13.3154296851149, 11.6952727309636], [-13.3154296851149, 11.6737554013713], [-13.3374023413609, 11.6737554013713]]]]}, "properties": {"taskId": 1182, "taskX": 7585, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.652236402057], [-13.3374023413609, 11.6737554013713], [-13.3154296851149, 11.6737554013713], [-13.3154296851149, 11.652236402057], [-13.3374023413609, 11.652236402057]]]]}, "properties": {"taskId": 1181, "taskX": 7585, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.6307157359267], [-13.3374023413609, 11.652236402057], [-13.3154296851149, 11.652236402057], [-13.3154296851149, 11.6307157359267], [-13.3374023413609, 11.6307157359267]]]]}, "properties": {"taskId": 1180, "taskX": 7585, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.6091934058879], [-13.3374023413609, 11.6307157359267], [-13.3154296851149, 11.6307157359267], [-13.3154296851149, 11.6091934058879], [-13.3374023413609, 11.6091934058879]]]]}, "properties": {"taskId": 1179, "taskX": 7585, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.5876694148488], [-13.3374023413609, 11.6091934058879], [-13.3154296851149, 11.6091934058879], [-13.3154296851149, 11.5876694148488], [-13.3374023413609, 11.5876694148488]]]]}, "properties": {"taskId": 1178, "taskX": 7585, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.5661437657192], [-13.3374023413609, 11.5876694148488], [-13.3154296851149, 11.5876694148488], [-13.3154296851149, 11.5661437657192], [-13.3374023413609, 11.5661437657192]]]]}, "properties": {"taskId": 1177, "taskX": 7585, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.5446164614097], [-13.3374023413609, 11.5661437657192], [-13.3154296851149, 11.5661437657192], [-13.3154296851149, 11.5446164614097], [-13.3374023413609, 11.5446164614097]]]]}, "properties": {"taskId": 1176, "taskX": 7585, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.5230875048322], [-13.3374023413609, 11.5446164614097], [-13.3154296851149, 11.5446164614097], [-13.3154296851149, 11.5230875048322], [-13.3374023413609, 11.5230875048322]]]]}, "properties": {"taskId": 1175, "taskX": 7585, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.5015568988999], [-13.3374023413609, 11.5230875048322], [-13.3154296851149, 11.5230875048322], [-13.3154296851149, 11.5015568988999], [-13.3374023413609, 11.5015568988999]]]]}, "properties": {"taskId": 1174, "taskX": 7585, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.480024646527], [-13.3374023413609, 11.5015568988999], [-13.3154296851149, 11.5015568988999], [-13.3154296851149, 11.480024646527], [-13.3374023413609, 11.480024646527]]]]}, "properties": {"taskId": 1173, "taskX": 7585, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.4584907506287], [-13.3374023413609, 11.480024646527], [-13.3154296851149, 11.480024646527], [-13.3154296851149, 11.4584907506287], [-13.3374023413609, 11.4584907506287]]]]}, "properties": {"taskId": 1172, "taskX": 7585, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.4369552141218], [-13.3374023413609, 11.4584907506287], [-13.3154296851149, 11.4584907506287], [-13.3154296851149, 11.4369552141218], [-13.3374023413609, 11.4369552141218]]]]}, "properties": {"taskId": 1171, "taskX": 7585, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.4154180399237], [-13.3374023413609, 11.4369552141218], [-13.3154296851149, 11.4369552141218], [-13.3154296851149, 11.4154180399237], [-13.3374023413609, 11.4154180399237]]]]}, "properties": {"taskId": 1170, "taskX": 7585, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.3938792309534], [-13.3374023413609, 11.4154180399237], [-13.3154296851149, 11.4154180399237], [-13.3154296851149, 11.3938792309534], [-13.3374023413609, 11.3938792309534]]]]}, "properties": {"taskId": 1169, "taskX": 7585, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.3723387901308], [-13.3374023413609, 11.3938792309534], [-13.3154296851149, 11.3938792309534], [-13.3154296851149, 11.3723387901308], [-13.3374023413609, 11.3723387901308]]]]}, "properties": {"taskId": 1168, "taskX": 7585, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.3507967203771], [-13.3374023413609, 11.3723387901308], [-13.3154296851149, 11.3723387901308], [-13.3154296851149, 11.3507967203771], [-13.3374023413609, 11.3507967203771]]]]}, "properties": {"taskId": 1167, "taskX": 7585, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3374023413609, 11.3292530246144], [-13.3374023413609, 11.3507967203771], [-13.3154296851149, 11.3507967203771], [-13.3154296851149, 11.3292530246144], [-13.3374023413609, 11.3292530246144]]]]}, "properties": {"taskId": 1166, "taskX": 7585, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 12.2111801893498], [-13.359374997607, 12.2326548348556], [-13.3374023413609, 12.2326548348556], [-13.3374023413609, 12.2111801893498], [-13.359374997607, 12.2111801893498]]]]}, "properties": {"taskId": 1165, "taskX": 7584, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 12.1897038018535], [-13.359374997607, 12.2111801893498], [-13.3374023413609, 12.2111801893498], [-13.3374023413609, 12.1897038018535], [-13.359374997607, 12.1897038018535]]]]}, "properties": {"taskId": 1164, "taskX": 7584, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 12.1682256752432], [-13.359374997607, 12.1897038018535], [-13.3374023413609, 12.1897038018535], [-13.3374023413609, 12.1682256752432], [-13.359374997607, 12.1682256752432]]]]}, "properties": {"taskId": 1163, "taskX": 7584, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 12.1467458123965], [-13.359374997607, 12.1682256752432], [-13.3374023413609, 12.1682256752432], [-13.3374023413609, 12.1467458123965], [-13.359374997607, 12.1467458123965]]]]}, "properties": {"taskId": 1162, "taskX": 7584, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 12.1252642161921], [-13.359374997607, 12.1467458123965], [-13.3374023413609, 12.1467458123965], [-13.3374023413609, 12.1252642161921], [-13.359374997607, 12.1252642161921]]]]}, "properties": {"taskId": 1161, "taskX": 7584, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 12.10378088951], [-13.359374997607, 12.1252642161921], [-13.3374023413609, 12.1252642161921], [-13.3374023413609, 12.10378088951], [-13.359374997607, 12.10378088951]]]]}, "properties": {"taskId": 1160, "taskX": 7584, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 12.0822958352314], [-13.359374997607, 12.10378088951], [-13.3374023413609, 12.10378088951], [-13.3374023413609, 12.0822958352314], [-13.359374997607, 12.0822958352314]]]]}, "properties": {"taskId": 1159, "taskX": 7584, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 12.0608090562388], [-13.359374997607, 12.0822958352314], [-13.3374023413609, 12.0822958352314], [-13.3374023413609, 12.0608090562388], [-13.359374997607, 12.0608090562388]]]]}, "properties": {"taskId": 1158, "taskX": 7584, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 12.0393205554158], [-13.359374997607, 12.0608090562388], [-13.3374023413609, 12.0608090562388], [-13.3374023413609, 12.0393205554158], [-13.359374997607, 12.0393205554158]]]]}, "properties": {"taskId": 1157, "taskX": 7584, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 12.0178303356471], [-13.359374997607, 12.0393205554158], [-13.3374023413609, 12.0393205554158], [-13.3374023413609, 12.0178303356471], [-13.359374997607, 12.0178303356471]]]]}, "properties": {"taskId": 1156, "taskX": 7584, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.9963383998188], [-13.359374997607, 12.0178303356471], [-13.3374023413609, 12.0178303356471], [-13.3374023413609, 11.9963383998188], [-13.359374997607, 11.9963383998188]]]]}, "properties": {"taskId": 1155, "taskX": 7584, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.9748447508181], [-13.359374997607, 11.9963383998188], [-13.3374023413609, 11.9963383998188], [-13.3374023413609, 11.9748447508181], [-13.359374997607, 11.9748447508181]]]]}, "properties": {"taskId": 1154, "taskX": 7584, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.9533493915333], [-13.359374997607, 11.9748447508181], [-13.3374023413609, 11.9748447508181], [-13.3374023413609, 11.9533493915333], [-13.359374997607, 11.9533493915333]]]]}, "properties": {"taskId": 1153, "taskX": 7584, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.7813252940317], [-13.359374997607, 11.8028342314634], [-13.3374023413609, 11.8028342314634], [-13.3374023413609, 11.7813252940317], [-13.359374997607, 11.7813252940317]]]]}, "properties": {"taskId": 1145, "taskX": 7584, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.7167883879289], [-13.359374997607, 11.7383023693636], [-13.3374023413609, 11.7383023693636], [-13.3374023413609, 11.7167883879289], [-13.359374997607, 11.7167883879289]]]]}, "properties": {"taskId": 1142, "taskX": 7584, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.6952727309636], [-13.359374997607, 11.7167883879289], [-13.3374023413609, 11.7167883879289], [-13.3374023413609, 11.6952727309636], [-13.359374997607, 11.6952727309636]]]]}, "properties": {"taskId": 1141, "taskX": 7584, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.6737554013713], [-13.359374997607, 11.6952727309636], [-13.3374023413609, 11.6952727309636], [-13.3374023413609, 11.6737554013713], [-13.359374997607, 11.6737554013713]]]]}, "properties": {"taskId": 1140, "taskX": 7584, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.652236402057], [-13.359374997607, 11.6737554013713], [-13.3374023413609, 11.6737554013713], [-13.3374023413609, 11.652236402057], [-13.359374997607, 11.652236402057]]]]}, "properties": {"taskId": 1139, "taskX": 7584, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.6307157359267], [-13.359374997607, 11.652236402057], [-13.3374023413609, 11.652236402057], [-13.3374023413609, 11.6307157359267], [-13.359374997607, 11.6307157359267]]]]}, "properties": {"taskId": 1138, "taskX": 7584, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.6091934058879], [-13.359374997607, 11.6307157359267], [-13.3374023413609, 11.6307157359267], [-13.3374023413609, 11.6091934058879], [-13.359374997607, 11.6091934058879]]]]}, "properties": {"taskId": 1137, "taskX": 7584, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.5876694148488], [-13.359374997607, 11.6091934058879], [-13.3374023413609, 11.6091934058879], [-13.3374023413609, 11.5876694148488], [-13.359374997607, 11.5876694148488]]]]}, "properties": {"taskId": 1136, "taskX": 7584, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.5661437657192], [-13.359374997607, 11.5876694148488], [-13.3374023413609, 11.5876694148488], [-13.3374023413609, 11.5661437657192], [-13.359374997607, 11.5661437657192]]]]}, "properties": {"taskId": 1135, "taskX": 7584, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.5446164614097], [-13.359374997607, 11.5661437657192], [-13.3374023413609, 11.5661437657192], [-13.3374023413609, 11.5446164614097], [-13.359374997607, 11.5446164614097]]]]}, "properties": {"taskId": 1134, "taskX": 7584, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.5230875048322], [-13.359374997607, 11.5446164614097], [-13.3374023413609, 11.5446164614097], [-13.3374023413609, 11.5230875048322], [-13.359374997607, 11.5230875048322]]]]}, "properties": {"taskId": 1133, "taskX": 7584, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.5015568988999], [-13.359374997607, 11.5230875048322], [-13.3374023413609, 11.5230875048322], [-13.3374023413609, 11.5015568988999], [-13.359374997607, 11.5015568988999]]]]}, "properties": {"taskId": 1132, "taskX": 7584, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.480024646527], [-13.359374997607, 11.5015568988999], [-13.3374023413609, 11.5015568988999], [-13.3374023413609, 11.480024646527], [-13.359374997607, 11.480024646527]]]]}, "properties": {"taskId": 1131, "taskX": 7584, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.4584907506287], [-13.359374997607, 11.480024646527], [-13.3374023413609, 11.480024646527], [-13.3374023413609, 11.4584907506287], [-13.359374997607, 11.4584907506287]]]]}, "properties": {"taskId": 1130, "taskX": 7584, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.4369552141218], [-13.359374997607, 11.4584907506287], [-13.3374023413609, 11.4584907506287], [-13.3374023413609, 11.4369552141218], [-13.359374997607, 11.4369552141218]]]]}, "properties": {"taskId": 1129, "taskX": 7584, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.4154180399237], [-13.359374997607, 11.4369552141218], [-13.3374023413609, 11.4369552141218], [-13.3374023413609, 11.4154180399237], [-13.359374997607, 11.4154180399237]]]]}, "properties": {"taskId": 1128, "taskX": 7584, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.3938792309534], [-13.359374997607, 11.4154180399237], [-13.3374023413609, 11.4154180399237], [-13.3374023413609, 11.3938792309534], [-13.359374997607, 11.3938792309534]]]]}, "properties": {"taskId": 1127, "taskX": 7584, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.3723387901308], [-13.359374997607, 11.3938792309534], [-13.3374023413609, 11.3938792309534], [-13.3374023413609, 11.3723387901308], [-13.359374997607, 11.3723387901308]]]]}, "properties": {"taskId": 1126, "taskX": 7584, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.3507967203771], [-13.359374997607, 11.3723387901308], [-13.3374023413609, 11.3723387901308], [-13.3374023413609, 11.3507967203771], [-13.359374997607, 11.3507967203771]]]]}, "properties": {"taskId": 1125, "taskX": 7584, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.3292530246144], [-13.359374997607, 11.3507967203771], [-13.3374023413609, 11.3507967203771], [-13.3374023413609, 11.3292530246144], [-13.359374997607, 11.3292530246144]]]]}, "properties": {"taskId": 1124, "taskX": 7584, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.3077077057662], [-13.359374997607, 11.3292530246144], [-13.3374023413609, 11.3292530246144], [-13.3374023413609, 11.3077077057662], [-13.359374997607, 11.3077077057662]]]]}, "properties": {"taskId": 1123, "taskX": 7584, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 12.2970682906849], [-13.3813476538531, 12.3185359394895], [-13.359374997607, 12.3185359394895], [-13.359374997607, 12.2970682906849], [-13.3813476538531, 12.2970682906849]]]]}, "properties": {"taskId": 1122, "taskX": 7583, "taskY": 8756, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 12.2755988883965], [-13.3813476538531, 12.2970682906849], [-13.359374997607, 12.2970682906849], [-13.359374997607, 12.2755988883965], [-13.3813476538531, 12.2755988883965]]]]}, "properties": {"taskId": 1121, "taskX": 7583, "taskY": 8755, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 12.2541277354958], [-13.3813476538531, 12.2755988883965], [-13.359374997607, 12.2755988883965], [-13.359374997607, 12.2541277354958], [-13.3813476538531, 12.2541277354958]]]]}, "properties": {"taskId": 1120, "taskX": 7583, "taskY": 8754, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 12.2326548348556], [-13.3813476538531, 12.2541277354958], [-13.359374997607, 12.2541277354958], [-13.359374997607, 12.2326548348556], [-13.3813476538531, 12.2326548348556]]]]}, "properties": {"taskId": 1119, "taskX": 7583, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 12.2111801893498], [-13.3813476538531, 12.2326548348556], [-13.359374997607, 12.2326548348556], [-13.359374997607, 12.2111801893498], [-13.3813476538531, 12.2111801893498]]]]}, "properties": {"taskId": 1118, "taskX": 7583, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 12.1897038018535], [-13.3813476538531, 12.2111801893498], [-13.359374997607, 12.2111801893498], [-13.359374997607, 12.1897038018535], [-13.3813476538531, 12.1897038018535]]]]}, "properties": {"taskId": 1117, "taskX": 7583, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 12.1682256752432], [-13.3813476538531, 12.1897038018535], [-13.359374997607, 12.1897038018535], [-13.359374997607, 12.1682256752432], [-13.3813476538531, 12.1682256752432]]]]}, "properties": {"taskId": 1116, "taskX": 7583, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 12.1467458123965], [-13.3813476538531, 12.1682256752432], [-13.359374997607, 12.1682256752432], [-13.359374997607, 12.1467458123965], [-13.3813476538531, 12.1467458123965]]]]}, "properties": {"taskId": 1115, "taskX": 7583, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 12.1252642161921], [-13.3813476538531, 12.1467458123965], [-13.359374997607, 12.1467458123965], [-13.359374997607, 12.1252642161921], [-13.3813476538531, 12.1252642161921]]]]}, "properties": {"taskId": 1114, "taskX": 7583, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 12.10378088951], [-13.3813476538531, 12.1252642161921], [-13.359374997607, 12.1252642161921], [-13.359374997607, 12.10378088951], [-13.3813476538531, 12.10378088951]]]]}, "properties": {"taskId": 1113, "taskX": 7583, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 12.0822958352314], [-13.3813476538531, 12.10378088951], [-13.359374997607, 12.10378088951], [-13.359374997607, 12.0822958352314], [-13.3813476538531, 12.0822958352314]]]]}, "properties": {"taskId": 1112, "taskX": 7583, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 12.0608090562388], [-13.3813476538531, 12.0822958352314], [-13.359374997607, 12.0822958352314], [-13.359374997607, 12.0608090562388], [-13.3813476538531, 12.0608090562388]]]]}, "properties": {"taskId": 1111, "taskX": 7583, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 12.0393205554158], [-13.3813476538531, 12.0608090562388], [-13.359374997607, 12.0608090562388], [-13.359374997607, 12.0393205554158], [-13.3813476538531, 12.0393205554158]]]]}, "properties": {"taskId": 1110, "taskX": 7583, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 12.0178303356471], [-13.3813476538531, 12.0393205554158], [-13.359374997607, 12.0393205554158], [-13.359374997607, 12.0178303356471], [-13.3813476538531, 12.0178303356471]]]]}, "properties": {"taskId": 1109, "taskX": 7583, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.9963383998188], [-13.3813476538531, 12.0178303356471], [-13.359374997607, 12.0178303356471], [-13.359374997607, 11.9963383998188], [-13.3813476538531, 11.9963383998188]]]]}, "properties": {"taskId": 1108, "taskX": 7583, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.9748447508181], [-13.3813476538531, 11.9963383998188], [-13.359374997607, 11.9963383998188], [-13.359374997607, 11.9748447508181], [-13.3813476538531, 11.9748447508181]]]]}, "properties": {"taskId": 1107, "taskX": 7583, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.9533493915333], [-13.3813476538531, 11.9748447508181], [-13.359374997607, 11.9748447508181], [-13.359374997607, 11.9533493915333], [-13.3813476538531, 11.9533493915333]]]]}, "properties": {"taskId": 1106, "taskX": 7583, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.9318523248542], [-13.3813476538531, 11.9533493915333], [-13.359374997607, 11.9533493915333], [-13.359374997607, 11.9318523248542], [-13.3813476538531, 11.9318523248542]]]]}, "properties": {"taskId": 1105, "taskX": 7583, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.9103535536714], [-13.3813476538531, 11.9318523248542], [-13.359374997607, 11.9318523248542], [-13.359374997607, 11.9103535536714], [-13.3813476538531, 11.9103535536714]]]]}, "properties": {"taskId": 1104, "taskX": 7583, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.888853080877], [-13.3813476538531, 11.9103535536714], [-13.359374997607, 11.9103535536714], [-13.359374997607, 11.888853080877], [-13.3813476538531, 11.888853080877]]]]}, "properties": {"taskId": 1103, "taskX": 7583, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.867350909364], [-13.3813476538531, 11.888853080877], [-13.359374997607, 11.888853080877], [-13.359374997607, 11.867350909364], [-13.3813476538531, 11.867350909364]]]]}, "properties": {"taskId": 1102, "taskX": 7583, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.8458470420268], [-13.3813476538531, 11.867350909364], [-13.359374997607, 11.867350909364], [-13.359374997607, 11.8458470420268], [-13.3813476538531, 11.8458470420268]]]]}, "properties": {"taskId": 1101, "taskX": 7583, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.8243414817611], [-13.3813476538531, 11.8458470420268], [-13.359374997607, 11.8458470420268], [-13.359374997607, 11.8243414817611], [-13.3813476538531, 11.8243414817611]]]]}, "properties": {"taskId": 1100, "taskX": 7583, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.8028342314634], [-13.3813476538531, 11.8243414817611], [-13.359374997607, 11.8243414817611], [-13.359374997607, 11.8028342314634], [-13.3813476538531, 11.8028342314634]]]]}, "properties": {"taskId": 1099, "taskX": 7583, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.7813252940317], [-13.3813476538531, 11.8028342314634], [-13.359374997607, 11.8028342314634], [-13.359374997607, 11.7813252940317], [-13.3813476538531, 11.7813252940317]]]]}, "properties": {"taskId": 1098, "taskX": 7583, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.759814672365], [-13.3813476538531, 11.7813252940317], [-13.359374997607, 11.7813252940317], [-13.359374997607, 11.759814672365], [-13.3813476538531, 11.759814672365]]]]}, "properties": {"taskId": 1097, "taskX": 7583, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.7383023693636], [-13.3813476538531, 11.759814672365], [-13.359374997607, 11.759814672365], [-13.359374997607, 11.7383023693636], [-13.3813476538531, 11.7383023693636]]]]}, "properties": {"taskId": 1096, "taskX": 7583, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.7167883879289], [-13.3813476538531, 11.7383023693636], [-13.359374997607, 11.7383023693636], [-13.359374997607, 11.7167883879289], [-13.3813476538531, 11.7167883879289]]]]}, "properties": {"taskId": 1095, "taskX": 7583, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.6952727309636], [-13.3813476538531, 11.7167883879289], [-13.359374997607, 11.7167883879289], [-13.359374997607, 11.6952727309636], [-13.3813476538531, 11.6952727309636]]]]}, "properties": {"taskId": 1094, "taskX": 7583, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.6737554013713], [-13.3813476538531, 11.6952727309636], [-13.359374997607, 11.6952727309636], [-13.359374997607, 11.6737554013713], [-13.3813476538531, 11.6737554013713]]]]}, "properties": {"taskId": 1093, "taskX": 7583, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.652236402057], [-13.3813476538531, 11.6737554013713], [-13.359374997607, 11.6737554013713], [-13.359374997607, 11.652236402057], [-13.3813476538531, 11.652236402057]]]]}, "properties": {"taskId": 1092, "taskX": 7583, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.6307157359267], [-13.3813476538531, 11.652236402057], [-13.359374997607, 11.652236402057], [-13.359374997607, 11.6307157359267], [-13.3813476538531, 11.6307157359267]]]]}, "properties": {"taskId": 1091, "taskX": 7583, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.6091934058879], [-13.3813476538531, 11.6307157359267], [-13.359374997607, 11.6307157359267], [-13.359374997607, 11.6091934058879], [-13.3813476538531, 11.6091934058879]]]]}, "properties": {"taskId": 1090, "taskX": 7583, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.5876694148488], [-13.3813476538531, 11.6091934058879], [-13.359374997607, 11.6091934058879], [-13.359374997607, 11.5876694148488], [-13.3813476538531, 11.5876694148488]]]]}, "properties": {"taskId": 1089, "taskX": 7583, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.5661437657192], [-13.3813476538531, 11.5876694148488], [-13.359374997607, 11.5876694148488], [-13.359374997607, 11.5661437657192], [-13.3813476538531, 11.5661437657192]]]]}, "properties": {"taskId": 1088, "taskX": 7583, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.5446164614097], [-13.3813476538531, 11.5661437657192], [-13.359374997607, 11.5661437657192], [-13.359374997607, 11.5446164614097], [-13.3813476538531, 11.5446164614097]]]]}, "properties": {"taskId": 1087, "taskX": 7583, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.5015568988999], [-13.3813476538531, 11.5230875048322], [-13.359374997607, 11.5230875048322], [-13.359374997607, 11.5015568988999], [-13.3813476538531, 11.5015568988999]]]]}, "properties": {"taskId": 1085, "taskX": 7583, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.4584907506287], [-13.3813476538531, 11.480024646527], [-13.359374997607, 11.480024646527], [-13.359374997607, 11.4584907506287], [-13.3813476538531, 11.4584907506287]]]]}, "properties": {"taskId": 1083, "taskX": 7583, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.4369552141218], [-13.3813476538531, 11.4584907506287], [-13.359374997607, 11.4584907506287], [-13.359374997607, 11.4369552141218], [-13.3813476538531, 11.4369552141218]]]]}, "properties": {"taskId": 1082, "taskX": 7583, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.3938792309534], [-13.3813476538531, 11.4154180399237], [-13.359374997607, 11.4154180399237], [-13.359374997607, 11.3938792309534], [-13.3813476538531, 11.3938792309534]]]]}, "properties": {"taskId": 1080, "taskX": 7583, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.3723387901308], [-13.3813476538531, 11.3938792309534], [-13.359374997607, 11.3938792309534], [-13.359374997607, 11.3723387901308], [-13.3813476538531, 11.3723387901308]]]]}, "properties": {"taskId": 1079, "taskX": 7583, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.3507967203771], [-13.3813476538531, 11.3723387901308], [-13.359374997607, 11.3723387901308], [-13.359374997607, 11.3507967203771], [-13.3813476538531, 11.3507967203771]]]]}, "properties": {"taskId": 1078, "taskX": 7583, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.3292530246144], [-13.3813476538531, 11.3507967203771], [-13.359374997607, 11.3507967203771], [-13.359374997607, 11.3292530246144], [-13.3813476538531, 11.3292530246144]]]]}, "properties": {"taskId": 1077, "taskX": 7583, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.3813476538531, 11.3077077057662], [-13.3813476538531, 11.3292530246144], [-13.359374997607, 11.3292530246144], [-13.359374997607, 11.3077077057662], [-13.3813476538531, 11.3077077057662]]]]}, "properties": {"taskId": 1076, "taskX": 7583, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 12.3185359394895], [-13.4033203100991, 12.3400018319401], [-13.3813476538531, 12.3400018319401], [-13.3813476538531, 12.3185359394895], [-13.4033203100991, 12.3185359394895]]]]}, "properties": {"taskId": 1075, "taskX": 7582, "taskY": 8757, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 12.2970682906849], [-13.4033203100991, 12.3185359394895], [-13.3813476538531, 12.3185359394895], [-13.3813476538531, 12.2970682906849], [-13.4033203100991, 12.2970682906849]]]]}, "properties": {"taskId": 1074, "taskX": 7582, "taskY": 8756, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 12.2755988883965], [-13.4033203100991, 12.2970682906849], [-13.3813476538531, 12.2970682906849], [-13.3813476538531, 12.2755988883965], [-13.4033203100991, 12.2755988883965]]]]}, "properties": {"taskId": 1073, "taskX": 7582, "taskY": 8755, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 12.2541277354958], [-13.4033203100991, 12.2755988883965], [-13.3813476538531, 12.2755988883965], [-13.3813476538531, 12.2541277354958], [-13.4033203100991, 12.2541277354958]]]]}, "properties": {"taskId": 1072, "taskX": 7582, "taskY": 8754, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 12.2326548348556], [-13.4033203100991, 12.2541277354958], [-13.3813476538531, 12.2541277354958], [-13.3813476538531, 12.2326548348556], [-13.4033203100991, 12.2326548348556]]]]}, "properties": {"taskId": 1071, "taskX": 7582, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 12.2111801893498], [-13.4033203100991, 12.2326548348556], [-13.3813476538531, 12.2326548348556], [-13.3813476538531, 12.2111801893498], [-13.4033203100991, 12.2111801893498]]]]}, "properties": {"taskId": 1070, "taskX": 7582, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 12.1897038018535], [-13.4033203100991, 12.2111801893498], [-13.3813476538531, 12.2111801893498], [-13.3813476538531, 12.1897038018535], [-13.4033203100991, 12.1897038018535]]]]}, "properties": {"taskId": 1069, "taskX": 7582, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 12.1682256752432], [-13.4033203100991, 12.1897038018535], [-13.3813476538531, 12.1897038018535], [-13.3813476538531, 12.1682256752432], [-13.4033203100991, 12.1682256752432]]]]}, "properties": {"taskId": 1068, "taskX": 7582, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 12.1467458123965], [-13.4033203100991, 12.1682256752432], [-13.3813476538531, 12.1682256752432], [-13.3813476538531, 12.1467458123965], [-13.4033203100991, 12.1467458123965]]]]}, "properties": {"taskId": 1067, "taskX": 7582, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 12.1252642161921], [-13.4033203100991, 12.1467458123965], [-13.3813476538531, 12.1467458123965], [-13.3813476538531, 12.1252642161921], [-13.4033203100991, 12.1252642161921]]]]}, "properties": {"taskId": 1066, "taskX": 7582, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 12.10378088951], [-13.4033203100991, 12.1252642161921], [-13.3813476538531, 12.1252642161921], [-13.3813476538531, 12.10378088951], [-13.4033203100991, 12.10378088951]]]]}, "properties": {"taskId": 1065, "taskX": 7582, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 12.0822958352314], [-13.4033203100991, 12.10378088951], [-13.3813476538531, 12.10378088951], [-13.3813476538531, 12.0822958352314], [-13.4033203100991, 12.0822958352314]]]]}, "properties": {"taskId": 1064, "taskX": 7582, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 12.0608090562388], [-13.4033203100991, 12.0822958352314], [-13.3813476538531, 12.0822958352314], [-13.3813476538531, 12.0608090562388], [-13.4033203100991, 12.0608090562388]]]]}, "properties": {"taskId": 1063, "taskX": 7582, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 12.0393205554158], [-13.4033203100991, 12.0608090562388], [-13.3813476538531, 12.0608090562388], [-13.3813476538531, 12.0393205554158], [-13.4033203100991, 12.0393205554158]]]]}, "properties": {"taskId": 1062, "taskX": 7582, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 12.0178303356471], [-13.4033203100991, 12.0393205554158], [-13.3813476538531, 12.0393205554158], [-13.3813476538531, 12.0178303356471], [-13.4033203100991, 12.0178303356471]]]]}, "properties": {"taskId": 1061, "taskX": 7582, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.9963383998188], [-13.4033203100991, 12.0178303356471], [-13.3813476538531, 12.0178303356471], [-13.3813476538531, 11.9963383998188], [-13.4033203100991, 11.9963383998188]]]]}, "properties": {"taskId": 1060, "taskX": 7582, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.9748447508181], [-13.4033203100991, 11.9963383998188], [-13.3813476538531, 11.9963383998188], [-13.3813476538531, 11.9748447508181], [-13.4033203100991, 11.9748447508181]]]]}, "properties": {"taskId": 1059, "taskX": 7582, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.9533493915333], [-13.4033203100991, 11.9748447508181], [-13.3813476538531, 11.9748447508181], [-13.3813476538531, 11.9533493915333], [-13.4033203100991, 11.9533493915333]]]]}, "properties": {"taskId": 1058, "taskX": 7582, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.888853080877], [-13.4033203100991, 11.9103535536714], [-13.3813476538531, 11.9103535536714], [-13.3813476538531, 11.888853080877], [-13.4033203100991, 11.888853080877]]]]}, "properties": {"taskId": 1055, "taskX": 7582, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.867350909364], [-13.4033203100991, 11.888853080877], [-13.3813476538531, 11.888853080877], [-13.3813476538531, 11.867350909364], [-13.4033203100991, 11.867350909364]]]]}, "properties": {"taskId": 1054, "taskX": 7582, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.8458470420268], [-13.4033203100991, 11.867350909364], [-13.3813476538531, 11.867350909364], [-13.3813476538531, 11.8458470420268], [-13.4033203100991, 11.8458470420268]]]]}, "properties": {"taskId": 1053, "taskX": 7582, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.8243414817611], [-13.4033203100991, 11.8458470420268], [-13.3813476538531, 11.8458470420268], [-13.3813476538531, 11.8243414817611], [-13.4033203100991, 11.8243414817611]]]]}, "properties": {"taskId": 1052, "taskX": 7582, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.8028342314634], [-13.4033203100991, 11.8243414817611], [-13.3813476538531, 11.8243414817611], [-13.3813476538531, 11.8028342314634], [-13.4033203100991, 11.8028342314634]]]]}, "properties": {"taskId": 1051, "taskX": 7582, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.7813252940317], [-13.4033203100991, 11.8028342314634], [-13.3813476538531, 11.8028342314634], [-13.3813476538531, 11.7813252940317], [-13.4033203100991, 11.7813252940317]]]]}, "properties": {"taskId": 1050, "taskX": 7582, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.759814672365], [-13.4033203100991, 11.7813252940317], [-13.3813476538531, 11.7813252940317], [-13.3813476538531, 11.759814672365], [-13.4033203100991, 11.759814672365]]]]}, "properties": {"taskId": 1049, "taskX": 7582, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.7167883879289], [-13.4033203100991, 11.7383023693636], [-13.3813476538531, 11.7383023693636], [-13.3813476538531, 11.7167883879289], [-13.4033203100991, 11.7167883879289]]]]}, "properties": {"taskId": 1047, "taskX": 7582, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.6952727309636], [-13.4033203100991, 11.7167883879289], [-13.3813476538531, 11.7167883879289], [-13.3813476538531, 11.6952727309636], [-13.4033203100991, 11.6952727309636]]]]}, "properties": {"taskId": 1046, "taskX": 7582, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.652236402057], [-13.4033203100991, 11.6737554013713], [-13.3813476538531, 11.6737554013713], [-13.3813476538531, 11.652236402057], [-13.4033203100991, 11.652236402057]]]]}, "properties": {"taskId": 1044, "taskX": 7582, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.6307157359267], [-13.4033203100991, 11.652236402057], [-13.3813476538531, 11.652236402057], [-13.3813476538531, 11.6307157359267], [-13.4033203100991, 11.6307157359267]]]]}, "properties": {"taskId": 1043, "taskX": 7582, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.6091934058879], [-13.4033203100991, 11.6307157359267], [-13.3813476538531, 11.6307157359267], [-13.3813476538531, 11.6091934058879], [-13.4033203100991, 11.6091934058879]]]]}, "properties": {"taskId": 1042, "taskX": 7582, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.5876694148488], [-13.4033203100991, 11.6091934058879], [-13.3813476538531, 11.6091934058879], [-13.3813476538531, 11.5876694148488], [-13.4033203100991, 11.5876694148488]]]]}, "properties": {"taskId": 1041, "taskX": 7582, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.5661437657192], [-13.4033203100991, 11.5876694148488], [-13.3813476538531, 11.5876694148488], [-13.3813476538531, 11.5661437657192], [-13.4033203100991, 11.5661437657192]]]]}, "properties": {"taskId": 1040, "taskX": 7582, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.5446164614097], [-13.4033203100991, 11.5661437657192], [-13.3813476538531, 11.5661437657192], [-13.3813476538531, 11.5446164614097], [-13.4033203100991, 11.5446164614097]]]]}, "properties": {"taskId": 1039, "taskX": 7582, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.5230875048322], [-13.4033203100991, 11.5446164614097], [-13.3813476538531, 11.5446164614097], [-13.3813476538531, 11.5230875048322], [-13.4033203100991, 11.5230875048322]]]]}, "properties": {"taskId": 1038, "taskX": 7582, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.5015568988999], [-13.4033203100991, 11.5230875048322], [-13.3813476538531, 11.5230875048322], [-13.3813476538531, 11.5015568988999], [-13.4033203100991, 11.5015568988999]]]]}, "properties": {"taskId": 1037, "taskX": 7582, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.480024646527], [-13.4033203100991, 11.5015568988999], [-13.3813476538531, 11.5015568988999], [-13.3813476538531, 11.480024646527], [-13.4033203100991, 11.480024646527]]]]}, "properties": {"taskId": 1036, "taskX": 7582, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.4584907506287], [-13.4033203100991, 11.480024646527], [-13.3813476538531, 11.480024646527], [-13.3813476538531, 11.4584907506287], [-13.4033203100991, 11.4584907506287]]]]}, "properties": {"taskId": 1035, "taskX": 7582, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.4369552141218], [-13.4033203100991, 11.4584907506287], [-13.3813476538531, 11.4584907506287], [-13.3813476538531, 11.4369552141218], [-13.4033203100991, 11.4369552141218]]]]}, "properties": {"taskId": 1034, "taskX": 7582, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.4154180399237], [-13.4033203100991, 11.4369552141218], [-13.3813476538531, 11.4369552141218], [-13.3813476538531, 11.4154180399237], [-13.4033203100991, 11.4154180399237]]]]}, "properties": {"taskId": 1033, "taskX": 7582, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.3938792309534], [-13.4033203100991, 11.4154180399237], [-13.3813476538531, 11.4154180399237], [-13.3813476538531, 11.3938792309534], [-13.4033203100991, 11.3938792309534]]]]}, "properties": {"taskId": 1032, "taskX": 7582, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.3723387901308], [-13.4033203100991, 11.3938792309534], [-13.3813476538531, 11.3938792309534], [-13.3813476538531, 11.3723387901308], [-13.4033203100991, 11.3723387901308]]]]}, "properties": {"taskId": 1031, "taskX": 7582, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.3507967203771], [-13.4033203100991, 11.3723387901308], [-13.3813476538531, 11.3723387901308], [-13.3813476538531, 11.3507967203771], [-13.4033203100991, 11.3507967203771]]]]}, "properties": {"taskId": 1030, "taskX": 7582, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.3292530246144], [-13.4033203100991, 11.3507967203771], [-13.3813476538531, 11.3507967203771], [-13.3813476538531, 11.3292530246144], [-13.4033203100991, 11.3292530246144]]]]}, "properties": {"taskId": 1029, "taskX": 7582, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.3077077057662], [-13.4033203100991, 11.3292530246144], [-13.3813476538531, 11.3292530246144], [-13.3813476538531, 11.3077077057662], [-13.4033203100991, 11.3077077057662]]]]}, "properties": {"taskId": 1028, "taskX": 7582, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4033203100991, 11.2861607667571], [-13.4033203100991, 11.3077077057662], [-13.3813476538531, 11.3077077057662], [-13.3813476538531, 11.2861607667571], [-13.4033203100991, 11.2861607667571]]]]}, "properties": {"taskId": 1027, "taskX": 7582, "taskY": 8709, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 12.3185359394895], [-13.4252929663452, 12.3400018319401], [-13.4033203100991, 12.3400018319401], [-13.4033203100991, 12.3185359394895], [-13.4252929663452, 12.3185359394895]]]]}, "properties": {"taskId": 1026, "taskX": 7581, "taskY": 8757, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 12.2970682906849], [-13.4252929663452, 12.3185359394895], [-13.4033203100991, 12.3185359394895], [-13.4033203100991, 12.2970682906849], [-13.4252929663452, 12.2970682906849]]]]}, "properties": {"taskId": 1025, "taskX": 7581, "taskY": 8756, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 12.2755988883965], [-13.4252929663452, 12.2970682906849], [-13.4033203100991, 12.2970682906849], [-13.4033203100991, 12.2755988883965], [-13.4252929663452, 12.2755988883965]]]]}, "properties": {"taskId": 1024, "taskX": 7581, "taskY": 8755, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 12.2541277354958], [-13.4252929663452, 12.2755988883965], [-13.4033203100991, 12.2755988883965], [-13.4033203100991, 12.2541277354958], [-13.4252929663452, 12.2541277354958]]]]}, "properties": {"taskId": 1023, "taskX": 7581, "taskY": 8754, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 12.2326548348556], [-13.4252929663452, 12.2541277354958], [-13.4033203100991, 12.2541277354958], [-13.4033203100991, 12.2326548348556], [-13.4252929663452, 12.2326548348556]]]]}, "properties": {"taskId": 1022, "taskX": 7581, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.4584907506287], [-13.1396484351464, 11.480024646527], [-13.1176757789003, 11.480024646527], [-13.1176757789003, 11.4584907506287], [-13.1396484351464, 11.4584907506287]]]]}, "properties": {"taskId": 1558, "taskX": 7594, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.4369552141218], [-13.1396484351464, 11.4584907506287], [-13.1176757789003, 11.4584907506287], [-13.1176757789003, 11.4369552141218], [-13.1396484351464, 11.4369552141218]]]]}, "properties": {"taskId": 1557, "taskX": 7594, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.4154180399237], [-13.1396484351464, 11.4369552141218], [-13.1176757789003, 11.4369552141218], [-13.1176757789003, 11.4154180399237], [-13.1396484351464, 11.4154180399237]]]]}, "properties": {"taskId": 1556, "taskX": 7594, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.3938792309534], [-13.1396484351464, 11.4154180399237], [-13.1176757789003, 11.4154180399237], [-13.1176757789003, 11.3938792309534], [-13.1396484351464, 11.3938792309534]]]]}, "properties": {"taskId": 1555, "taskX": 7594, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.3723387901308], [-13.1396484351464, 11.3938792309534], [-13.1176757789003, 11.3938792309534], [-13.1176757789003, 11.3723387901308], [-13.1396484351464, 11.3723387901308]]]]}, "properties": {"taskId": 1554, "taskX": 7594, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.3507967203771], [-13.1396484351464, 11.3723387901308], [-13.1176757789003, 11.3723387901308], [-13.1176757789003, 11.3507967203771], [-13.1396484351464, 11.3507967203771]]]]}, "properties": {"taskId": 1553, "taskX": 7594, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.3292530246144], [-13.1396484351464, 11.3507967203771], [-13.1176757789003, 11.3507967203771], [-13.1176757789003, 11.3292530246144], [-13.1396484351464, 11.3292530246144]]]]}, "properties": {"taskId": 1552, "taskX": 7594, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.3077077057662], [-13.1396484351464, 11.3292530246144], [-13.1176757789003, 11.3292530246144], [-13.1176757789003, 11.3077077057662], [-13.1396484351464, 11.3077077057662]]]]}, "properties": {"taskId": 1551, "taskX": 7594, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.2861607667571], [-13.1396484351464, 11.3077077057662], [-13.1176757789003, 11.3077077057662], [-13.1176757789003, 11.2861607667571], [-13.1396484351464, 11.2861607667571]]]]}, "properties": {"taskId": 1550, "taskX": 7594, "taskY": 8709, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.2646122105126], [-13.1396484351464, 11.2861607667571], [-13.1176757789003, 11.2861607667571], [-13.1176757789003, 11.2646122105126], [-13.1396484351464, 11.2646122105126]]]]}, "properties": {"taskId": 1549, "taskX": 7594, "taskY": 8708, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.2215102580262], [-13.1396484351464, 11.2430620399597], [-13.1176757789003, 11.2430620399597], [-13.1176757789003, 11.2215102580262], [-13.1396484351464, 11.2215102580262]]]]}, "properties": {"taskId": 1547, "taskX": 7594, "taskY": 8706, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.1999568676412], [-13.1396484351464, 11.2215102580262], [-13.1176757789003, 11.2215102580262], [-13.1176757789003, 11.1999568676412], [-13.1396484351464, 11.1999568676412]]]]}, "properties": {"taskId": 1546, "taskX": 7594, "taskY": 8705, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.1784018717349], [-13.1396484351464, 11.1999568676412], [-13.1176757789003, 11.1999568676412], [-13.1176757789003, 11.1784018717349], [-13.1396484351464, 11.1784018717349]]]]}, "properties": {"taskId": 1545, "taskX": 7594, "taskY": 8704, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.1568452732386], [-13.1396484351464, 11.1784018717349], [-13.1176757789003, 11.1784018717349], [-13.1176757789003, 11.1568452732386], [-13.1396484351464, 11.1568452732386]]]]}, "properties": {"taskId": 1544, "taskX": 7594, "taskY": 8703, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 12.0393205554158], [-13.1616210913924, 12.0608090562388], [-13.1396484351464, 12.0608090562388], [-13.1396484351464, 12.0393205554158], [-13.1616210913924, 12.0393205554158]]]]}, "properties": {"taskId": 1543, "taskX": 7593, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 12.0178303356471], [-13.1616210913924, 12.0393205554158], [-13.1396484351464, 12.0393205554158], [-13.1396484351464, 12.0178303356471], [-13.1616210913924, 12.0178303356471]]]]}, "properties": {"taskId": 1542, "taskX": 7593, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.9963383998188], [-13.1616210913924, 12.0178303356471], [-13.1396484351464, 12.0178303356471], [-13.1396484351464, 11.9963383998188], [-13.1616210913924, 11.9963383998188]]]]}, "properties": {"taskId": 1541, "taskX": 7593, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.9748447508181], [-13.1616210913924, 11.9963383998188], [-13.1396484351464, 11.9963383998188], [-13.1396484351464, 11.9748447508181], [-13.1616210913924, 11.9748447508181]]]]}, "properties": {"taskId": 1540, "taskX": 7593, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.9533493915333], [-13.1616210913924, 11.9748447508181], [-13.1396484351464, 11.9748447508181], [-13.1396484351464, 11.9533493915333], [-13.1616210913924, 11.9533493915333]]]]}, "properties": {"taskId": 1539, "taskX": 7593, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.9318523248542], [-13.1616210913924, 11.9533493915333], [-13.1396484351464, 11.9533493915333], [-13.1396484351464, 11.9318523248542], [-13.1616210913924, 11.9318523248542]]]]}, "properties": {"taskId": 1538, "taskX": 7593, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.888853080877], [-13.1616210913924, 11.9103535536714], [-13.1396484351464, 11.9103535536714], [-13.1396484351464, 11.888853080877], [-13.1616210913924, 11.888853080877]]]]}, "properties": {"taskId": 1536, "taskX": 7593, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.867350909364], [-13.1616210913924, 11.888853080877], [-13.1396484351464, 11.888853080877], [-13.1396484351464, 11.867350909364], [-13.1616210913924, 11.867350909364]]]]}, "properties": {"taskId": 1535, "taskX": 7593, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.8243414817611], [-13.1616210913924, 11.8458470420268], [-13.1396484351464, 11.8458470420268], [-13.1396484351464, 11.8243414817611], [-13.1616210913924, 11.8243414817611]]]]}, "properties": {"taskId": 1533, "taskX": 7593, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.8028342314634], [-13.1616210913924, 11.8243414817611], [-13.1396484351464, 11.8243414817611], [-13.1396484351464, 11.8028342314634], [-13.1616210913924, 11.8028342314634]]]]}, "properties": {"taskId": 1532, "taskX": 7593, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.7813252940317], [-13.1616210913924, 11.8028342314634], [-13.1396484351464, 11.8028342314634], [-13.1396484351464, 11.7813252940317], [-13.1616210913924, 11.7813252940317]]]]}, "properties": {"taskId": 1531, "taskX": 7593, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.759814672365], [-13.1616210913924, 11.7813252940317], [-13.1396484351464, 11.7813252940317], [-13.1396484351464, 11.759814672365], [-13.1616210913924, 11.759814672365]]]]}, "properties": {"taskId": 1530, "taskX": 7593, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.6952727309636], [-13.1616210913924, 11.7167883879289], [-13.1396484351464, 11.7167883879289], [-13.1396484351464, 11.6952727309636], [-13.1616210913924, 11.6952727309636]]]]}, "properties": {"taskId": 1527, "taskX": 7593, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.6737554013713], [-13.1616210913924, 11.6952727309636], [-13.1396484351464, 11.6952727309636], [-13.1396484351464, 11.6737554013713], [-13.1616210913924, 11.6737554013713]]]]}, "properties": {"taskId": 1526, "taskX": 7593, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.652236402057], [-13.1616210913924, 11.6737554013713], [-13.1396484351464, 11.6737554013713], [-13.1396484351464, 11.652236402057], [-13.1616210913924, 11.652236402057]]]]}, "properties": {"taskId": 1525, "taskX": 7593, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.6307157359267], [-13.1616210913924, 11.652236402057], [-13.1396484351464, 11.652236402057], [-13.1396484351464, 11.6307157359267], [-13.1616210913924, 11.6307157359267]]]]}, "properties": {"taskId": 1524, "taskX": 7593, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.6091934058879], [-13.1616210913924, 11.6307157359267], [-13.1396484351464, 11.6307157359267], [-13.1396484351464, 11.6091934058879], [-13.1616210913924, 11.6091934058879]]]]}, "properties": {"taskId": 1523, "taskX": 7593, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.5876694148488], [-13.1616210913924, 11.6091934058879], [-13.1396484351464, 11.6091934058879], [-13.1396484351464, 11.5876694148488], [-13.1616210913924, 11.5876694148488]]]]}, "properties": {"taskId": 1522, "taskX": 7593, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.5661437657192], [-13.1616210913924, 11.5876694148488], [-13.1396484351464, 11.5876694148488], [-13.1396484351464, 11.5661437657192], [-13.1616210913924, 11.5661437657192]]]]}, "properties": {"taskId": 1521, "taskX": 7593, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.5446164614097], [-13.1616210913924, 11.5661437657192], [-13.1396484351464, 11.5661437657192], [-13.1396484351464, 11.5446164614097], [-13.1616210913924, 11.5446164614097]]]]}, "properties": {"taskId": 1520, "taskX": 7593, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.5230875048322], [-13.1616210913924, 11.5446164614097], [-13.1396484351464, 11.5446164614097], [-13.1396484351464, 11.5230875048322], [-13.1616210913924, 11.5230875048322]]]]}, "properties": {"taskId": 1519, "taskX": 7593, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.5015568988999], [-13.1616210913924, 11.5230875048322], [-13.1396484351464, 11.5230875048322], [-13.1396484351464, 11.5015568988999], [-13.1616210913924, 11.5015568988999]]]]}, "properties": {"taskId": 1518, "taskX": 7593, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.480024646527], [-13.1616210913924, 11.5015568988999], [-13.1396484351464, 11.5015568988999], [-13.1396484351464, 11.480024646527], [-13.1616210913924, 11.480024646527]]]]}, "properties": {"taskId": 1517, "taskX": 7593, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.4584907506287], [-13.1616210913924, 11.480024646527], [-13.1396484351464, 11.480024646527], [-13.1396484351464, 11.4584907506287], [-13.1616210913924, 11.4584907506287]]]]}, "properties": {"taskId": 1516, "taskX": 7593, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.4369552141218], [-13.1616210913924, 11.4584907506287], [-13.1396484351464, 11.4584907506287], [-13.1396484351464, 11.4369552141218], [-13.1616210913924, 11.4369552141218]]]]}, "properties": {"taskId": 1515, "taskX": 7593, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.4154180399237], [-13.1616210913924, 11.4369552141218], [-13.1396484351464, 11.4369552141218], [-13.1396484351464, 11.4154180399237], [-13.1616210913924, 11.4154180399237]]]]}, "properties": {"taskId": 1514, "taskX": 7593, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.3938792309534], [-13.1616210913924, 11.4154180399237], [-13.1396484351464, 11.4154180399237], [-13.1396484351464, 11.3938792309534], [-13.1616210913924, 11.3938792309534]]]]}, "properties": {"taskId": 1513, "taskX": 7593, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.3723387901308], [-13.1616210913924, 11.3938792309534], [-13.1396484351464, 11.3938792309534], [-13.1396484351464, 11.3723387901308], [-13.1616210913924, 11.3723387901308]]]]}, "properties": {"taskId": 1512, "taskX": 7593, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.3507967203771], [-13.1616210913924, 11.3723387901308], [-13.1396484351464, 11.3723387901308], [-13.1396484351464, 11.3507967203771], [-13.1616210913924, 11.3507967203771]]]]}, "properties": {"taskId": 1511, "taskX": 7593, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.3292530246144], [-13.1616210913924, 11.3507967203771], [-13.1396484351464, 11.3507967203771], [-13.1396484351464, 11.3292530246144], [-13.1616210913924, 11.3292530246144]]]]}, "properties": {"taskId": 1510, "taskX": 7593, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.3077077057662], [-13.1616210913924, 11.3292530246144], [-13.1396484351464, 11.3292530246144], [-13.1396484351464, 11.3077077057662], [-13.1616210913924, 11.3077077057662]]]]}, "properties": {"taskId": 1509, "taskX": 7593, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.2861607667571], [-13.1616210913924, 11.3077077057662], [-13.1396484351464, 11.3077077057662], [-13.1396484351464, 11.2861607667571], [-13.1616210913924, 11.2861607667571]]]]}, "properties": {"taskId": 1508, "taskX": 7593, "taskY": 8709, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.2646122105126], [-13.1616210913924, 11.2861607667571], [-13.1396484351464, 11.2861607667571], [-13.1396484351464, 11.2646122105126], [-13.1616210913924, 11.2646122105126]]]]}, "properties": {"taskId": 1507, "taskX": 7593, "taskY": 8708, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.2430620399597], [-13.1616210913924, 11.2646122105126], [-13.1396484351464, 11.2646122105126], [-13.1396484351464, 11.2430620399597], [-13.1616210913924, 11.2430620399597]]]]}, "properties": {"taskId": 1506, "taskX": 7593, "taskY": 8707, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.2215102580262], [-13.1616210913924, 11.2430620399597], [-13.1396484351464, 11.2430620399597], [-13.1396484351464, 11.2215102580262], [-13.1616210913924, 11.2215102580262]]]]}, "properties": {"taskId": 1505, "taskX": 7593, "taskY": 8706, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.1999568676412], [-13.1616210913924, 11.2215102580262], [-13.1396484351464, 11.2215102580262], [-13.1396484351464, 11.1999568676412], [-13.1616210913924, 11.1999568676412]]]]}, "properties": {"taskId": 1504, "taskX": 7593, "taskY": 8705, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.1784018717349], [-13.1616210913924, 11.1999568676412], [-13.1396484351464, 11.1999568676412], [-13.1396484351464, 11.1784018717349], [-13.1616210913924, 11.1784018717349]]]]}, "properties": {"taskId": 1503, "taskX": 7593, "taskY": 8704, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1616210913924, 11.1352870750847], [-13.1616210913924, 11.1568452732386], [-13.1396484351464, 11.1568452732386], [-13.1396484351464, 11.1352870750847], [-13.1616210913924, 11.1352870750847]]]]}, "properties": {"taskId": 1501, "taskX": 7593, "taskY": 8702, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.9963383998188], [-13.1835937476385, 12.0178303356471], [-13.1616210913924, 12.0178303356471], [-13.1616210913924, 11.9963383998188], [-13.1835937476385, 11.9963383998188]]]]}, "properties": {"taskId": 1499, "taskX": 7592, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.9748447508181], [-13.1835937476385, 11.9963383998188], [-13.1616210913924, 11.9963383998188], [-13.1616210913924, 11.9748447508181], [-13.1835937476385, 11.9748447508181]]]]}, "properties": {"taskId": 1498, "taskX": 7592, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.9533493915333], [-13.1835937476385, 11.9748447508181], [-13.1616210913924, 11.9748447508181], [-13.1616210913924, 11.9533493915333], [-13.1835937476385, 11.9533493915333]]]]}, "properties": {"taskId": 1497, "taskX": 7592, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.9318523248542], [-13.1835937476385, 11.9533493915333], [-13.1616210913924, 11.9533493915333], [-13.1616210913924, 11.9318523248542], [-13.1835937476385, 11.9318523248542]]]]}, "properties": {"taskId": 1496, "taskX": 7592, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.9103535536714], [-13.1835937476385, 11.9318523248542], [-13.1616210913924, 11.9318523248542], [-13.1616210913924, 11.9103535536714], [-13.1835937476385, 11.9103535536714]]]]}, "properties": {"taskId": 1495, "taskX": 7592, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.888853080877], [-13.1835937476385, 11.9103535536714], [-13.1616210913924, 11.9103535536714], [-13.1616210913924, 11.888853080877], [-13.1835937476385, 11.888853080877]]]]}, "properties": {"taskId": 1494, "taskX": 7592, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.867350909364], [-13.1835937476385, 11.888853080877], [-13.1616210913924, 11.888853080877], [-13.1616210913924, 11.867350909364], [-13.1835937476385, 11.867350909364]]]]}, "properties": {"taskId": 1493, "taskX": 7592, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.8028342314634], [-13.1835937476385, 11.8243414817611], [-13.1616210913924, 11.8243414817611], [-13.1616210913924, 11.8028342314634], [-13.1835937476385, 11.8028342314634]]]]}, "properties": {"taskId": 1490, "taskX": 7592, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.7813252940317], [-13.1835937476385, 11.8028342314634], [-13.1616210913924, 11.8028342314634], [-13.1616210913924, 11.7813252940317], [-13.1835937476385, 11.7813252940317]]]]}, "properties": {"taskId": 1489, "taskX": 7592, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.759814672365], [-13.1835937476385, 11.7813252940317], [-13.1616210913924, 11.7813252940317], [-13.1616210913924, 11.759814672365], [-13.1835937476385, 11.759814672365]]]]}, "properties": {"taskId": 1488, "taskX": 7592, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.7383023693636], [-13.1835937476385, 11.759814672365], [-13.1616210913924, 11.759814672365], [-13.1616210913924, 11.7383023693636], [-13.1835937476385, 11.7383023693636]]]]}, "properties": {"taskId": 1487, "taskX": 7592, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.7167883879289], [-13.1835937476385, 11.7383023693636], [-13.1616210913924, 11.7383023693636], [-13.1616210913924, 11.7167883879289], [-13.1835937476385, 11.7167883879289]]]]}, "properties": {"taskId": 1486, "taskX": 7592, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.6952727309636], [-13.1835937476385, 11.7167883879289], [-13.1616210913924, 11.7167883879289], [-13.1616210913924, 11.6952727309636], [-13.1835937476385, 11.6952727309636]]]]}, "properties": {"taskId": 1485, "taskX": 7592, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.6737554013713], [-13.1835937476385, 11.6952727309636], [-13.1616210913924, 11.6952727309636], [-13.1616210913924, 11.6737554013713], [-13.1835937476385, 11.6737554013713]]]]}, "properties": {"taskId": 1484, "taskX": 7592, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.652236402057], [-13.1835937476385, 11.6737554013713], [-13.1616210913924, 11.6737554013713], [-13.1616210913924, 11.652236402057], [-13.1835937476385, 11.652236402057]]]]}, "properties": {"taskId": 1483, "taskX": 7592, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.6307157359267], [-13.1835937476385, 11.652236402057], [-13.1616210913924, 11.652236402057], [-13.1616210913924, 11.6307157359267], [-13.1835937476385, 11.6307157359267]]]]}, "properties": {"taskId": 1482, "taskX": 7592, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.6091934058879], [-13.1835937476385, 11.6307157359267], [-13.1616210913924, 11.6307157359267], [-13.1616210913924, 11.6091934058879], [-13.1835937476385, 11.6091934058879]]]]}, "properties": {"taskId": 1481, "taskX": 7592, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.5876694148488], [-13.1835937476385, 11.6091934058879], [-13.1616210913924, 11.6091934058879], [-13.1616210913924, 11.5876694148488], [-13.1835937476385, 11.5876694148488]]]]}, "properties": {"taskId": 1480, "taskX": 7592, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.5661437657192], [-13.1835937476385, 11.5876694148488], [-13.1616210913924, 11.5876694148488], [-13.1616210913924, 11.5661437657192], [-13.1835937476385, 11.5661437657192]]]]}, "properties": {"taskId": 1479, "taskX": 7592, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.5446164614097], [-13.1835937476385, 11.5661437657192], [-13.1616210913924, 11.5661437657192], [-13.1616210913924, 11.5446164614097], [-13.1835937476385, 11.5446164614097]]]]}, "properties": {"taskId": 1478, "taskX": 7592, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.5230875048322], [-13.1835937476385, 11.5446164614097], [-13.1616210913924, 11.5446164614097], [-13.1616210913924, 11.5230875048322], [-13.1835937476385, 11.5230875048322]]]]}, "properties": {"taskId": 1477, "taskX": 7592, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.5015568988999], [-13.1835937476385, 11.5230875048322], [-13.1616210913924, 11.5230875048322], [-13.1616210913924, 11.5015568988999], [-13.1835937476385, 11.5015568988999]]]]}, "properties": {"taskId": 1476, "taskX": 7592, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.480024646527], [-13.1835937476385, 11.5015568988999], [-13.1616210913924, 11.5015568988999], [-13.1616210913924, 11.480024646527], [-13.1835937476385, 11.480024646527]]]]}, "properties": {"taskId": 1475, "taskX": 7592, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.4584907506287], [-13.1835937476385, 11.480024646527], [-13.1616210913924, 11.480024646527], [-13.1616210913924, 11.4584907506287], [-13.1835937476385, 11.4584907506287]]]]}, "properties": {"taskId": 1474, "taskX": 7592, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.4369552141218], [-13.1835937476385, 11.4584907506287], [-13.1616210913924, 11.4584907506287], [-13.1616210913924, 11.4369552141218], [-13.1835937476385, 11.4369552141218]]]]}, "properties": {"taskId": 1473, "taskX": 7592, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.4154180399237], [-13.1835937476385, 11.4369552141218], [-13.1616210913924, 11.4369552141218], [-13.1616210913924, 11.4154180399237], [-13.1835937476385, 11.4154180399237]]]]}, "properties": {"taskId": 1472, "taskX": 7592, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.3938792309534], [-13.1835937476385, 11.4154180399237], [-13.1616210913924, 11.4154180399237], [-13.1616210913924, 11.3938792309534], [-13.1835937476385, 11.3938792309534]]]]}, "properties": {"taskId": 1471, "taskX": 7592, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.3723387901308], [-13.1835937476385, 11.3938792309534], [-13.1616210913924, 11.3938792309534], [-13.1616210913924, 11.3723387901308], [-13.1835937476385, 11.3723387901308]]]]}, "properties": {"taskId": 1470, "taskX": 7592, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.3507967203771], [-13.1835937476385, 11.3723387901308], [-13.1616210913924, 11.3723387901308], [-13.1616210913924, 11.3507967203771], [-13.1835937476385, 11.3507967203771]]]]}, "properties": {"taskId": 1469, "taskX": 7592, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.3292530246144], [-13.1835937476385, 11.3507967203771], [-13.1616210913924, 11.3507967203771], [-13.1616210913924, 11.3292530246144], [-13.1835937476385, 11.3292530246144]]]]}, "properties": {"taskId": 1468, "taskX": 7592, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.2861607667571], [-13.1835937476385, 11.3077077057662], [-13.1616210913924, 11.3077077057662], [-13.1616210913924, 11.2861607667571], [-13.1835937476385, 11.2861607667571]]]]}, "properties": {"taskId": 1466, "taskX": 7592, "taskY": 8709, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.2646122105126], [-13.1835937476385, 11.2861607667571], [-13.1616210913924, 11.2861607667571], [-13.1616210913924, 11.2646122105126], [-13.1835937476385, 11.2646122105126]]]]}, "properties": {"taskId": 1465, "taskX": 7592, "taskY": 8708, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.2430620399597], [-13.1835937476385, 11.2646122105126], [-13.1616210913924, 11.2646122105126], [-13.1616210913924, 11.2430620399597], [-13.1835937476385, 11.2430620399597]]]]}, "properties": {"taskId": 1464, "taskX": 7592, "taskY": 8707, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.2215102580262], [-13.1835937476385, 11.2430620399597], [-13.1616210913924, 11.2430620399597], [-13.1616210913924, 11.2215102580262], [-13.1835937476385, 11.2215102580262]]]]}, "properties": {"taskId": 1463, "taskX": 7592, "taskY": 8706, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.1999568676412], [-13.1835937476385, 11.2215102580262], [-13.1616210913924, 11.2215102580262], [-13.1616210913924, 11.1999568676412], [-13.1835937476385, 11.1999568676412]]]]}, "properties": {"taskId": 1462, "taskX": 7592, "taskY": 8705, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1835937476385, 11.1352870750847], [-13.1835937476385, 11.1568452732386], [-13.1616210913924, 11.1568452732386], [-13.1616210913924, 11.1352870750847], [-13.1835937476385, 11.1352870750847]]]]}, "properties": {"taskId": 1459, "taskX": 7592, "taskY": 8702, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 12.0178303356471], [-13.2055664038845, 12.0393205554158], [-13.1835937476385, 12.0393205554158], [-13.1835937476385, 12.0178303356471], [-13.2055664038845, 12.0178303356471]]]]}, "properties": {"taskId": 1458, "taskX": 7591, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.9963383998188], [-13.2055664038845, 12.0178303356471], [-13.1835937476385, 12.0178303356471], [-13.1835937476385, 11.9963383998188], [-13.2055664038845, 11.9963383998188]]]]}, "properties": {"taskId": 1457, "taskX": 7591, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.9748447508181], [-13.2055664038845, 11.9963383998188], [-13.1835937476385, 11.9963383998188], [-13.1835937476385, 11.9748447508181], [-13.2055664038845, 11.9748447508181]]]]}, "properties": {"taskId": 1456, "taskX": 7591, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.9533493915333], [-13.2055664038845, 11.9748447508181], [-13.1835937476385, 11.9748447508181], [-13.1835937476385, 11.9533493915333], [-13.2055664038845, 11.9533493915333]]]]}, "properties": {"taskId": 1455, "taskX": 7591, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.9318523248542], [-13.2055664038845, 11.9533493915333], [-13.1835937476385, 11.9533493915333], [-13.1835937476385, 11.9318523248542], [-13.2055664038845, 11.9318523248542]]]]}, "properties": {"taskId": 1454, "taskX": 7591, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.9103535536714], [-13.2055664038845, 11.9318523248542], [-13.1835937476385, 11.9318523248542], [-13.1835937476385, 11.9103535536714], [-13.2055664038845, 11.9103535536714]]]]}, "properties": {"taskId": 1453, "taskX": 7591, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.888853080877], [-13.2055664038845, 11.9103535536714], [-13.1835937476385, 11.9103535536714], [-13.1835937476385, 11.888853080877], [-13.2055664038845, 11.888853080877]]]]}, "properties": {"taskId": 1452, "taskX": 7591, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.867350909364], [-13.2055664038845, 11.888853080877], [-13.1835937476385, 11.888853080877], [-13.1835937476385, 11.867350909364], [-13.2055664038845, 11.867350909364]]]]}, "properties": {"taskId": 1451, "taskX": 7591, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.8458470420268], [-13.2055664038845, 11.867350909364], [-13.1835937476385, 11.867350909364], [-13.1835937476385, 11.8458470420268], [-13.2055664038845, 11.8458470420268]]]]}, "properties": {"taskId": 1450, "taskX": 7591, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.8243414817611], [-13.2055664038845, 11.8458470420268], [-13.1835937476385, 11.8458470420268], [-13.1835937476385, 11.8243414817611], [-13.2055664038845, 11.8243414817611]]]]}, "properties": {"taskId": 1449, "taskX": 7591, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.8028342314634], [-13.2055664038845, 11.8243414817611], [-13.1835937476385, 11.8243414817611], [-13.1835937476385, 11.8028342314634], [-13.2055664038845, 11.8028342314634]]]]}, "properties": {"taskId": 1448, "taskX": 7591, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.7813252940317], [-13.2055664038845, 11.8028342314634], [-13.1835937476385, 11.8028342314634], [-13.1835937476385, 11.7813252940317], [-13.2055664038845, 11.7813252940317]]]]}, "properties": {"taskId": 1447, "taskX": 7591, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.759814672365], [-13.2055664038845, 11.7813252940317], [-13.1835937476385, 11.7813252940317], [-13.1835937476385, 11.759814672365], [-13.2055664038845, 11.759814672365]]]]}, "properties": {"taskId": 1446, "taskX": 7591, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.7383023693636], [-13.2055664038845, 11.759814672365], [-13.1835937476385, 11.759814672365], [-13.1835937476385, 11.7383023693636], [-13.2055664038845, 11.7383023693636]]]]}, "properties": {"taskId": 1445, "taskX": 7591, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.7167883879289], [-13.2055664038845, 11.7383023693636], [-13.1835937476385, 11.7383023693636], [-13.1835937476385, 11.7167883879289], [-13.2055664038845, 11.7167883879289]]]]}, "properties": {"taskId": 1444, "taskX": 7591, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.6952727309636], [-13.2055664038845, 11.7167883879289], [-13.1835937476385, 11.7167883879289], [-13.1835937476385, 11.6952727309636], [-13.2055664038845, 11.6952727309636]]]]}, "properties": {"taskId": 1443, "taskX": 7591, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.6737554013713], [-13.2055664038845, 11.6952727309636], [-13.1835937476385, 11.6952727309636], [-13.1835937476385, 11.6737554013713], [-13.2055664038845, 11.6737554013713]]]]}, "properties": {"taskId": 1442, "taskX": 7591, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.652236402057], [-13.2055664038845, 11.6737554013713], [-13.1835937476385, 11.6737554013713], [-13.1835937476385, 11.652236402057], [-13.2055664038845, 11.652236402057]]]]}, "properties": {"taskId": 1441, "taskX": 7591, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.6307157359267], [-13.2055664038845, 11.652236402057], [-13.1835937476385, 11.652236402057], [-13.1835937476385, 11.6307157359267], [-13.2055664038845, 11.6307157359267]]]]}, "properties": {"taskId": 1440, "taskX": 7591, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.6091934058879], [-13.2055664038845, 11.6307157359267], [-13.1835937476385, 11.6307157359267], [-13.1835937476385, 11.6091934058879], [-13.2055664038845, 11.6091934058879]]]]}, "properties": {"taskId": 1439, "taskX": 7591, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.5661437657192], [-13.2055664038845, 11.5876694148488], [-13.1835937476385, 11.5876694148488], [-13.1835937476385, 11.5661437657192], [-13.2055664038845, 11.5661437657192]]]]}, "properties": {"taskId": 1437, "taskX": 7591, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.5230875048322], [-13.2055664038845, 11.5446164614097], [-13.1835937476385, 11.5446164614097], [-13.1835937476385, 11.5230875048322], [-13.2055664038845, 11.5230875048322]]]]}, "properties": {"taskId": 1435, "taskX": 7591, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.5015568988999], [-13.2055664038845, 11.5230875048322], [-13.1835937476385, 11.5230875048322], [-13.1835937476385, 11.5015568988999], [-13.2055664038845, 11.5015568988999]]]]}, "properties": {"taskId": 1434, "taskX": 7591, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.480024646527], [-13.2055664038845, 11.5015568988999], [-13.1835937476385, 11.5015568988999], [-13.1835937476385, 11.480024646527], [-13.2055664038845, 11.480024646527]]]]}, "properties": {"taskId": 1433, "taskX": 7591, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.4584907506287], [-13.2055664038845, 11.480024646527], [-13.1835937476385, 11.480024646527], [-13.1835937476385, 11.4584907506287], [-13.2055664038845, 11.4584907506287]]]]}, "properties": {"taskId": 1432, "taskX": 7591, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.4369552141218], [-13.2055664038845, 11.4584907506287], [-13.1835937476385, 11.4584907506287], [-13.1835937476385, 11.4369552141218], [-13.2055664038845, 11.4369552141218]]]]}, "properties": {"taskId": 1431, "taskX": 7591, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.4154180399237], [-13.2055664038845, 11.4369552141218], [-13.1835937476385, 11.4369552141218], [-13.1835937476385, 11.4154180399237], [-13.2055664038845, 11.4154180399237]]]]}, "properties": {"taskId": 1430, "taskX": 7591, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.3938792309534], [-13.2055664038845, 11.4154180399237], [-13.1835937476385, 11.4154180399237], [-13.1835937476385, 11.3938792309534], [-13.2055664038845, 11.3938792309534]]]]}, "properties": {"taskId": 1429, "taskX": 7591, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.3723387901308], [-13.2055664038845, 11.3938792309534], [-13.1835937476385, 11.3938792309534], [-13.1835937476385, 11.3723387901308], [-13.2055664038845, 11.3723387901308]]]]}, "properties": {"taskId": 1428, "taskX": 7591, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.3292530246144], [-13.2055664038845, 11.3507967203771], [-13.1835937476385, 11.3507967203771], [-13.1835937476385, 11.3292530246144], [-13.2055664038845, 11.3292530246144]]]]}, "properties": {"taskId": 1426, "taskX": 7591, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.3077077057662], [-13.2055664038845, 11.3292530246144], [-13.1835937476385, 11.3292530246144], [-13.1835937476385, 11.3077077057662], [-13.2055664038845, 11.3077077057662]]]]}, "properties": {"taskId": 1425, "taskX": 7591, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.2861607667571], [-13.2055664038845, 11.3077077057662], [-13.1835937476385, 11.3077077057662], [-13.1835937476385, 11.2861607667571], [-13.2055664038845, 11.2861607667571]]]]}, "properties": {"taskId": 1424, "taskX": 7591, "taskY": 8709, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.2646122105126], [-13.2055664038845, 11.2861607667571], [-13.1835937476385, 11.2861607667571], [-13.1835937476385, 11.2646122105126], [-13.2055664038845, 11.2646122105126]]]]}, "properties": {"taskId": 1423, "taskX": 7591, "taskY": 8708, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.2430620399597], [-13.2055664038845, 11.2646122105126], [-13.1835937476385, 11.2646122105126], [-13.1835937476385, 11.2430620399597], [-13.2055664038845, 11.2430620399597]]]]}, "properties": {"taskId": 1422, "taskX": 7591, "taskY": 8707, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.1999568676412], [-13.2055664038845, 11.2215102580262], [-13.1835937476385, 11.2215102580262], [-13.1835937476385, 11.1999568676412], [-13.2055664038845, 11.1999568676412]]]]}, "properties": {"taskId": 1420, "taskX": 7591, "taskY": 8705, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.1784018717349], [-13.2055664038845, 11.1999568676412], [-13.1835937476385, 11.1999568676412], [-13.1835937476385, 11.1784018717349], [-13.2055664038845, 11.1784018717349]]]]}, "properties": {"taskId": 1419, "taskX": 7591, "taskY": 8704, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.1568452732386], [-13.2055664038845, 11.1784018717349], [-13.1835937476385, 11.1784018717349], [-13.1835937476385, 11.1568452732386], [-13.2055664038845, 11.1568452732386]]]]}, "properties": {"taskId": 1418, "taskX": 7591, "taskY": 8703, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.1352870750847], [-13.2055664038845, 11.1568452732386], [-13.1835937476385, 11.1568452732386], [-13.1835937476385, 11.1352870750847], [-13.2055664038845, 11.1352870750847]]]]}, "properties": {"taskId": 1417, "taskX": 7591, "taskY": 8702, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.0921658915399], [-13.2055664038845, 11.113727280207], [-13.1835937476385, 11.113727280207], [-13.1835937476385, 11.0921658915399], [-13.2055664038845, 11.0921658915399]]]]}, "properties": {"taskId": 1416, "taskX": 7591, "taskY": 8700, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.0706029120195], [-13.2055664038845, 11.0921658915399], [-13.1835937476385, 11.0921658915399], [-13.1835937476385, 11.0706029120195], [-13.2055664038845, 11.0706029120195]]]]}, "properties": {"taskId": 1415, "taskX": 7591, "taskY": 8699, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2055664038845, 11.0490383445825], [-13.2055664038845, 11.0706029120195], [-13.1835937476385, 11.0706029120195], [-13.1835937476385, 11.0490383445825], [-13.2055664038845, 11.0490383445825]]]]}, "properties": {"taskId": 1414, "taskX": 7591, "taskY": 8698, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.9963383998188], [-13.2275390601306, 12.0178303356471], [-13.2055664038845, 12.0178303356471], [-13.2055664038845, 11.9963383998188], [-13.2275390601306, 11.9963383998188]]]]}, "properties": {"taskId": 1413, "taskX": 7590, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.9748447508181], [-13.2275390601306, 11.9963383998188], [-13.2055664038845, 11.9963383998188], [-13.2055664038845, 11.9748447508181], [-13.2275390601306, 11.9748447508181]]]]}, "properties": {"taskId": 1412, "taskX": 7590, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.9533493915333], [-13.2275390601306, 11.9748447508181], [-13.2055664038845, 11.9748447508181], [-13.2055664038845, 11.9533493915333], [-13.2275390601306, 11.9533493915333]]]]}, "properties": {"taskId": 1411, "taskX": 7590, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.9318523248542], [-13.2275390601306, 11.9533493915333], [-13.2055664038845, 11.9533493915333], [-13.2055664038845, 11.9318523248542], [-13.2275390601306, 11.9318523248542]]]]}, "properties": {"taskId": 1410, "taskX": 7590, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.9103535536714], [-13.2275390601306, 11.9318523248542], [-13.2055664038845, 11.9318523248542], [-13.2055664038845, 11.9103535536714], [-13.2275390601306, 11.9103535536714]]]]}, "properties": {"taskId": 1409, "taskX": 7590, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.888853080877], [-13.2275390601306, 11.9103535536714], [-13.2055664038845, 11.9103535536714], [-13.2055664038845, 11.888853080877], [-13.2275390601306, 11.888853080877]]]]}, "properties": {"taskId": 1408, "taskX": 7590, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.867350909364], [-13.2275390601306, 11.888853080877], [-13.2055664038845, 11.888853080877], [-13.2055664038845, 11.867350909364], [-13.2275390601306, 11.867350909364]]]]}, "properties": {"taskId": 1407, "taskX": 7590, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.8458470420268], [-13.2275390601306, 11.867350909364], [-13.2055664038845, 11.867350909364], [-13.2055664038845, 11.8458470420268], [-13.2275390601306, 11.8458470420268]]]]}, "properties": {"taskId": 1406, "taskX": 7590, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.8243414817611], [-13.2275390601306, 11.8458470420268], [-13.2055664038845, 11.8458470420268], [-13.2055664038845, 11.8243414817611], [-13.2275390601306, 11.8243414817611]]]]}, "properties": {"taskId": 1405, "taskX": 7590, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.759814672365], [-13.2275390601306, 11.7813252940317], [-13.2055664038845, 11.7813252940317], [-13.2055664038845, 11.759814672365], [-13.2275390601306, 11.759814672365]]]]}, "properties": {"taskId": 1402, "taskX": 7590, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.7167883879289], [-13.2275390601306, 11.7383023693636], [-13.2055664038845, 11.7383023693636], [-13.2055664038845, 11.7167883879289], [-13.2275390601306, 11.7167883879289]]]]}, "properties": {"taskId": 1400, "taskX": 7590, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.6952727309636], [-13.2275390601306, 11.7167883879289], [-13.2055664038845, 11.7167883879289], [-13.2055664038845, 11.6952727309636], [-13.2275390601306, 11.6952727309636]]]]}, "properties": {"taskId": 1399, "taskX": 7590, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.6737554013713], [-13.2275390601306, 11.6952727309636], [-13.2055664038845, 11.6952727309636], [-13.2055664038845, 11.6737554013713], [-13.2275390601306, 11.6737554013713]]]]}, "properties": {"taskId": 1398, "taskX": 7590, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.652236402057], [-13.2275390601306, 11.6737554013713], [-13.2055664038845, 11.6737554013713], [-13.2055664038845, 11.652236402057], [-13.2275390601306, 11.652236402057]]]]}, "properties": {"taskId": 1397, "taskX": 7590, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.6307157359267], [-13.2275390601306, 11.652236402057], [-13.2055664038845, 11.652236402057], [-13.2055664038845, 11.6307157359267], [-13.2275390601306, 11.6307157359267]]]]}, "properties": {"taskId": 1396, "taskX": 7590, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.6091934058879], [-13.2275390601306, 11.6307157359267], [-13.2055664038845, 11.6307157359267], [-13.2055664038845, 11.6091934058879], [-13.2275390601306, 11.6091934058879]]]]}, "properties": {"taskId": 1395, "taskX": 7590, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.5876694148488], [-13.2275390601306, 11.6091934058879], [-13.2055664038845, 11.6091934058879], [-13.2055664038845, 11.5876694148488], [-13.2275390601306, 11.5876694148488]]]]}, "properties": {"taskId": 1394, "taskX": 7590, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.5661437657192], [-13.2275390601306, 11.5876694148488], [-13.2055664038845, 11.5876694148488], [-13.2055664038845, 11.5661437657192], [-13.2275390601306, 11.5661437657192]]]]}, "properties": {"taskId": 1393, "taskX": 7590, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.5446164614097], [-13.2275390601306, 11.5661437657192], [-13.2055664038845, 11.5661437657192], [-13.2055664038845, 11.5446164614097], [-13.2275390601306, 11.5446164614097]]]]}, "properties": {"taskId": 1392, "taskX": 7590, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.5230875048322], [-13.2275390601306, 11.5446164614097], [-13.2055664038845, 11.5446164614097], [-13.2055664038845, 11.5230875048322], [-13.2275390601306, 11.5230875048322]]]]}, "properties": {"taskId": 1391, "taskX": 7590, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.5015568988999], [-13.2275390601306, 11.5230875048322], [-13.2055664038845, 11.5230875048322], [-13.2055664038845, 11.5015568988999], [-13.2275390601306, 11.5015568988999]]]]}, "properties": {"taskId": 1390, "taskX": 7590, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.4584907506287], [-13.2275390601306, 11.480024646527], [-13.2055664038845, 11.480024646527], [-13.2055664038845, 11.4584907506287], [-13.2275390601306, 11.4584907506287]]]]}, "properties": {"taskId": 1388, "taskX": 7590, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.4369552141218], [-13.2275390601306, 11.4584907506287], [-13.2055664038845, 11.4584907506287], [-13.2055664038845, 11.4369552141218], [-13.2275390601306, 11.4369552141218]]]]}, "properties": {"taskId": 1387, "taskX": 7590, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.4154180399237], [-13.2275390601306, 11.4369552141218], [-13.2055664038845, 11.4369552141218], [-13.2055664038845, 11.4154180399237], [-13.2275390601306, 11.4154180399237]]]]}, "properties": {"taskId": 1386, "taskX": 7590, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.3938792309534], [-13.2275390601306, 11.4154180399237], [-13.2055664038845, 11.4154180399237], [-13.2055664038845, 11.3938792309534], [-13.2275390601306, 11.3938792309534]]]]}, "properties": {"taskId": 1385, "taskX": 7590, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.3723387901308], [-13.2275390601306, 11.3938792309534], [-13.2055664038845, 11.3938792309534], [-13.2055664038845, 11.3723387901308], [-13.2275390601306, 11.3723387901308]]]]}, "properties": {"taskId": 1384, "taskX": 7590, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.3507967203771], [-13.2275390601306, 11.3723387901308], [-13.2055664038845, 11.3723387901308], [-13.2055664038845, 11.3507967203771], [-13.2275390601306, 11.3507967203771]]]]}, "properties": {"taskId": 1383, "taskX": 7590, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.3292530246144], [-13.2275390601306, 11.3507967203771], [-13.2055664038845, 11.3507967203771], [-13.2055664038845, 11.3292530246144], [-13.2275390601306, 11.3292530246144]]]]}, "properties": {"taskId": 1382, "taskX": 7590, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.3077077057662], [-13.2275390601306, 11.3292530246144], [-13.2055664038845, 11.3292530246144], [-13.2055664038845, 11.3077077057662], [-13.2275390601306, 11.3077077057662]]]]}, "properties": {"taskId": 1381, "taskX": 7590, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.2861607667571], [-13.2275390601306, 11.3077077057662], [-13.2055664038845, 11.3077077057662], [-13.2055664038845, 11.2861607667571], [-13.2275390601306, 11.2861607667571]]]]}, "properties": {"taskId": 1380, "taskX": 7590, "taskY": 8709, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.2646122105126], [-13.2275390601306, 11.2861607667571], [-13.2055664038845, 11.2861607667571], [-13.2055664038845, 11.2646122105126], [-13.2275390601306, 11.2646122105126]]]]}, "properties": {"taskId": 1379, "taskX": 7590, "taskY": 8708, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.2430620399597], [-13.2275390601306, 11.2646122105126], [-13.2055664038845, 11.2646122105126], [-13.2055664038845, 11.2430620399597], [-13.2275390601306, 11.2430620399597]]]]}, "properties": {"taskId": 1378, "taskX": 7590, "taskY": 8707, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.2215102580262], [-13.2275390601306, 11.2430620399597], [-13.2055664038845, 11.2430620399597], [-13.2055664038845, 11.2215102580262], [-13.2275390601306, 11.2215102580262]]]]}, "properties": {"taskId": 1377, "taskX": 7590, "taskY": 8706, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.1999568676412], [-13.2275390601306, 11.2215102580262], [-13.2055664038845, 11.2215102580262], [-13.2055664038845, 11.1999568676412], [-13.2275390601306, 11.1999568676412]]]]}, "properties": {"taskId": 1376, "taskX": 7590, "taskY": 8705, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.1784018717349], [-13.2275390601306, 11.1999568676412], [-13.2055664038845, 11.1999568676412], [-13.2055664038845, 11.1784018717349], [-13.2275390601306, 11.1784018717349]]]]}, "properties": {"taskId": 1375, "taskX": 7590, "taskY": 8704, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.1568452732386], [-13.2275390601306, 11.1784018717349], [-13.2055664038845, 11.1784018717349], [-13.2055664038845, 11.1568452732386], [-13.2275390601306, 11.1568452732386]]]]}, "properties": {"taskId": 1374, "taskX": 7590, "taskY": 8703, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.1352870750847], [-13.2275390601306, 11.1568452732386], [-13.2055664038845, 11.1568452732386], [-13.2055664038845, 11.1352870750847], [-13.2275390601306, 11.1352870750847]]]]}, "properties": {"taskId": 1373, "taskX": 7590, "taskY": 8702, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.113727280207], [-13.2275390601306, 11.1352870750847], [-13.2055664038845, 11.1352870750847], [-13.2055664038845, 11.113727280207], [-13.2275390601306, 11.113727280207]]]]}, "properties": {"taskId": 1372, "taskX": 7590, "taskY": 8701, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.0921658915399], [-13.2275390601306, 11.113727280207], [-13.2055664038845, 11.113727280207], [-13.2055664038845, 11.0921658915399], [-13.2275390601306, 11.0921658915399]]]]}, "properties": {"taskId": 1371, "taskX": 7590, "taskY": 8700, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.0706029120195], [-13.2275390601306, 11.0921658915399], [-13.2055664038845, 11.0921658915399], [-13.2055664038845, 11.0706029120195], [-13.2275390601306, 11.0706029120195]]]]}, "properties": {"taskId": 1370, "taskX": 7590, "taskY": 8699, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.2275390601306, 11.0490383445825], [-13.2275390601306, 11.0706029120195], [-13.2055664038845, 11.0706029120195], [-13.2055664038845, 11.0490383445825], [-13.2275390601306, 11.0490383445825]]]]}, "properties": {"taskId": 1369, "taskX": 7590, "taskY": 8698, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 12.2111801893498], [-13.4252929663452, 12.2326548348556], [-13.4033203100991, 12.2326548348556], [-13.4033203100991, 12.2111801893498], [-13.4252929663452, 12.2111801893498]]]]}, "properties": {"taskId": 1021, "taskX": 7581, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 12.1897038018535], [-13.4252929663452, 12.2111801893498], [-13.4033203100991, 12.2111801893498], [-13.4033203100991, 12.1897038018535], [-13.4252929663452, 12.1897038018535]]]]}, "properties": {"taskId": 1020, "taskX": 7581, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 12.1682256752432], [-13.4252929663452, 12.1897038018535], [-13.4033203100991, 12.1897038018535], [-13.4033203100991, 12.1682256752432], [-13.4252929663452, 12.1682256752432]]]]}, "properties": {"taskId": 1019, "taskX": 7581, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 12.1467458123965], [-13.4252929663452, 12.1682256752432], [-13.4033203100991, 12.1682256752432], [-13.4033203100991, 12.1467458123965], [-13.4252929663452, 12.1467458123965]]]]}, "properties": {"taskId": 1018, "taskX": 7581, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 12.1252642161921], [-13.4252929663452, 12.1467458123965], [-13.4033203100991, 12.1467458123965], [-13.4033203100991, 12.1252642161921], [-13.4252929663452, 12.1252642161921]]]]}, "properties": {"taskId": 1017, "taskX": 7581, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 12.10378088951], [-13.4252929663452, 12.1252642161921], [-13.4033203100991, 12.1252642161921], [-13.4033203100991, 12.10378088951], [-13.4252929663452, 12.10378088951]]]]}, "properties": {"taskId": 1016, "taskX": 7581, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 12.0822958352314], [-13.4252929663452, 12.10378088951], [-13.4033203100991, 12.10378088951], [-13.4033203100991, 12.0822958352314], [-13.4252929663452, 12.0822958352314]]]]}, "properties": {"taskId": 1015, "taskX": 7581, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 12.0608090562388], [-13.4252929663452, 12.0822958352314], [-13.4033203100991, 12.0822958352314], [-13.4033203100991, 12.0608090562388], [-13.4252929663452, 12.0608090562388]]]]}, "properties": {"taskId": 1014, "taskX": 7581, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 12.0393205554158], [-13.4252929663452, 12.0608090562388], [-13.4033203100991, 12.0608090562388], [-13.4033203100991, 12.0393205554158], [-13.4252929663452, 12.0393205554158]]]]}, "properties": {"taskId": 1013, "taskX": 7581, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 12.0178303356471], [-13.4252929663452, 12.0393205554158], [-13.4033203100991, 12.0393205554158], [-13.4033203100991, 12.0178303356471], [-13.4252929663452, 12.0178303356471]]]]}, "properties": {"taskId": 1012, "taskX": 7581, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.9963383998188], [-13.4252929663452, 12.0178303356471], [-13.4033203100991, 12.0178303356471], [-13.4033203100991, 11.9963383998188], [-13.4252929663452, 11.9963383998188]]]]}, "properties": {"taskId": 1011, "taskX": 7581, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.9748447508181], [-13.4252929663452, 11.9963383998188], [-13.4033203100991, 11.9963383998188], [-13.4033203100991, 11.9748447508181], [-13.4252929663452, 11.9748447508181]]]]}, "properties": {"taskId": 1010, "taskX": 7581, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.9533493915333], [-13.4252929663452, 11.9748447508181], [-13.4033203100991, 11.9748447508181], [-13.4033203100991, 11.9533493915333], [-13.4252929663452, 11.9533493915333]]]]}, "properties": {"taskId": 1009, "taskX": 7581, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.9318523248542], [-13.4252929663452, 11.9533493915333], [-13.4033203100991, 11.9533493915333], [-13.4033203100991, 11.9318523248542], [-13.4252929663452, 11.9318523248542]]]]}, "properties": {"taskId": 1008, "taskX": 7581, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.9103535536714], [-13.4252929663452, 11.9318523248542], [-13.4033203100991, 11.9318523248542], [-13.4033203100991, 11.9103535536714], [-13.4252929663452, 11.9103535536714]]]]}, "properties": {"taskId": 1007, "taskX": 7581, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.888853080877], [-13.4252929663452, 11.9103535536714], [-13.4033203100991, 11.9103535536714], [-13.4033203100991, 11.888853080877], [-13.4252929663452, 11.888853080877]]]]}, "properties": {"taskId": 1006, "taskX": 7581, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.867350909364], [-13.4252929663452, 11.888853080877], [-13.4033203100991, 11.888853080877], [-13.4033203100991, 11.867350909364], [-13.4252929663452, 11.867350909364]]]]}, "properties": {"taskId": 1005, "taskX": 7581, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.8458470420268], [-13.4252929663452, 11.867350909364], [-13.4033203100991, 11.867350909364], [-13.4033203100991, 11.8458470420268], [-13.4252929663452, 11.8458470420268]]]]}, "properties": {"taskId": 1004, "taskX": 7581, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.8243414817611], [-13.4252929663452, 11.8458470420268], [-13.4033203100991, 11.8458470420268], [-13.4033203100991, 11.8243414817611], [-13.4252929663452, 11.8243414817611]]]]}, "properties": {"taskId": 1003, "taskX": 7581, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.8028342314634], [-13.4252929663452, 11.8243414817611], [-13.4033203100991, 11.8243414817611], [-13.4033203100991, 11.8028342314634], [-13.4252929663452, 11.8028342314634]]]]}, "properties": {"taskId": 1002, "taskX": 7581, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.759814672365], [-13.4252929663452, 11.7813252940317], [-13.4033203100991, 11.7813252940317], [-13.4033203100991, 11.759814672365], [-13.4252929663452, 11.759814672365]]]]}, "properties": {"taskId": 1000, "taskX": 7581, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.7167883879289], [-13.4252929663452, 11.7383023693636], [-13.4033203100991, 11.7383023693636], [-13.4033203100991, 11.7167883879289], [-13.4252929663452, 11.7167883879289]]]]}, "properties": {"taskId": 998, "taskX": 7581, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.6952727309636], [-13.4252929663452, 11.7167883879289], [-13.4033203100991, 11.7167883879289], [-13.4033203100991, 11.6952727309636], [-13.4252929663452, 11.6952727309636]]]]}, "properties": {"taskId": 997, "taskX": 7581, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.6737554013713], [-13.4252929663452, 11.6952727309636], [-13.4033203100991, 11.6952727309636], [-13.4033203100991, 11.6737554013713], [-13.4252929663452, 11.6737554013713]]]]}, "properties": {"taskId": 996, "taskX": 7581, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.652236402057], [-13.4252929663452, 11.6737554013713], [-13.4033203100991, 11.6737554013713], [-13.4033203100991, 11.652236402057], [-13.4252929663452, 11.652236402057]]]]}, "properties": {"taskId": 995, "taskX": 7581, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.6307157359267], [-13.4252929663452, 11.652236402057], [-13.4033203100991, 11.652236402057], [-13.4033203100991, 11.6307157359267], [-13.4252929663452, 11.6307157359267]]]]}, "properties": {"taskId": 994, "taskX": 7581, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.6091934058879], [-13.4252929663452, 11.6307157359267], [-13.4033203100991, 11.6307157359267], [-13.4033203100991, 11.6091934058879], [-13.4252929663452, 11.6091934058879]]]]}, "properties": {"taskId": 993, "taskX": 7581, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.5661437657192], [-13.4252929663452, 11.5876694148488], [-13.4033203100991, 11.5876694148488], [-13.4033203100991, 11.5661437657192], [-13.4252929663452, 11.5661437657192]]]]}, "properties": {"taskId": 991, "taskX": 7581, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.5446164614097], [-13.4252929663452, 11.5661437657192], [-13.4033203100991, 11.5661437657192], [-13.4033203100991, 11.5446164614097], [-13.4252929663452, 11.5446164614097]]]]}, "properties": {"taskId": 990, "taskX": 7581, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.5230875048322], [-13.4252929663452, 11.5446164614097], [-13.4033203100991, 11.5446164614097], [-13.4033203100991, 11.5230875048322], [-13.4252929663452, 11.5230875048322]]]]}, "properties": {"taskId": 989, "taskX": 7581, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.5015568988999], [-13.4252929663452, 11.5230875048322], [-13.4033203100991, 11.5230875048322], [-13.4033203100991, 11.5015568988999], [-13.4252929663452, 11.5015568988999]]]]}, "properties": {"taskId": 988, "taskX": 7581, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.480024646527], [-13.4252929663452, 11.5015568988999], [-13.4033203100991, 11.5015568988999], [-13.4033203100991, 11.480024646527], [-13.4252929663452, 11.480024646527]]]]}, "properties": {"taskId": 987, "taskX": 7581, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.4584907506287], [-13.4252929663452, 11.480024646527], [-13.4033203100991, 11.480024646527], [-13.4033203100991, 11.4584907506287], [-13.4252929663452, 11.4584907506287]]]]}, "properties": {"taskId": 986, "taskX": 7581, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.4369552141218], [-13.4252929663452, 11.4584907506287], [-13.4033203100991, 11.4584907506287], [-13.4033203100991, 11.4369552141218], [-13.4252929663452, 11.4369552141218]]]]}, "properties": {"taskId": 985, "taskX": 7581, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.4154180399237], [-13.4252929663452, 11.4369552141218], [-13.4033203100991, 11.4369552141218], [-13.4033203100991, 11.4154180399237], [-13.4252929663452, 11.4154180399237]]]]}, "properties": {"taskId": 984, "taskX": 7581, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.3938792309534], [-13.4252929663452, 11.4154180399237], [-13.4033203100991, 11.4154180399237], [-13.4033203100991, 11.3938792309534], [-13.4252929663452, 11.3938792309534]]]]}, "properties": {"taskId": 983, "taskX": 7581, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.3507967203771], [-13.4252929663452, 11.3723387901308], [-13.4033203100991, 11.3723387901308], [-13.4033203100991, 11.3507967203771], [-13.4252929663452, 11.3507967203771]]]]}, "properties": {"taskId": 981, "taskX": 7581, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.3292530246144], [-13.4252929663452, 11.3507967203771], [-13.4033203100991, 11.3507967203771], [-13.4033203100991, 11.3292530246144], [-13.4252929663452, 11.3292530246144]]]]}, "properties": {"taskId": 980, "taskX": 7581, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.3077077057662], [-13.4252929663452, 11.3292530246144], [-13.4033203100991, 11.3292530246144], [-13.4033203100991, 11.3077077057662], [-13.4252929663452, 11.3077077057662]]]]}, "properties": {"taskId": 979, "taskX": 7581, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4252929663452, 11.2861607667571], [-13.4252929663452, 11.3077077057662], [-13.4033203100991, 11.3077077057662], [-13.4033203100991, 11.2861607667571], [-13.4252929663452, 11.2861607667571]]]]}, "properties": {"taskId": 978, "taskX": 7581, "taskY": 8709, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 12.2970682906849], [-13.4472656225912, 12.3185359394895], [-13.4252929663452, 12.3185359394895], [-13.4252929663452, 12.2970682906849], [-13.4472656225912, 12.2970682906849]]]]}, "properties": {"taskId": 977, "taskX": 7580, "taskY": 8756, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 12.2755988883965], [-13.4472656225912, 12.2970682906849], [-13.4252929663452, 12.2970682906849], [-13.4252929663452, 12.2755988883965], [-13.4472656225912, 12.2755988883965]]]]}, "properties": {"taskId": 976, "taskX": 7580, "taskY": 8755, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 12.2541277354958], [-13.4472656225912, 12.2755988883965], [-13.4252929663452, 12.2755988883965], [-13.4252929663452, 12.2541277354958], [-13.4472656225912, 12.2541277354958]]]]}, "properties": {"taskId": 975, "taskX": 7580, "taskY": 8754, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 12.2326548348556], [-13.4472656225912, 12.2541277354958], [-13.4252929663452, 12.2541277354958], [-13.4252929663452, 12.2326548348556], [-13.4472656225912, 12.2326548348556]]]]}, "properties": {"taskId": 974, "taskX": 7580, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 12.2111801893498], [-13.4472656225912, 12.2326548348556], [-13.4252929663452, 12.2326548348556], [-13.4252929663452, 12.2111801893498], [-13.4472656225912, 12.2111801893498]]]]}, "properties": {"taskId": 973, "taskX": 7580, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 12.1467458123965], [-13.4472656225912, 12.1682256752432], [-13.4252929663452, 12.1682256752432], [-13.4252929663452, 12.1467458123965], [-13.4472656225912, 12.1467458123965]]]]}, "properties": {"taskId": 970, "taskX": 7580, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 12.1252642161921], [-13.4472656225912, 12.1467458123965], [-13.4252929663452, 12.1467458123965], [-13.4252929663452, 12.1252642161921], [-13.4472656225912, 12.1252642161921]]]]}, "properties": {"taskId": 969, "taskX": 7580, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 12.10378088951], [-13.4472656225912, 12.1252642161921], [-13.4252929663452, 12.1252642161921], [-13.4252929663452, 12.10378088951], [-13.4472656225912, 12.10378088951]]]]}, "properties": {"taskId": 968, "taskX": 7580, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 12.0822958352314], [-13.4472656225912, 12.10378088951], [-13.4252929663452, 12.10378088951], [-13.4252929663452, 12.0822958352314], [-13.4472656225912, 12.0822958352314]]]]}, "properties": {"taskId": 967, "taskX": 7580, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 12.0608090562388], [-13.4472656225912, 12.0822958352314], [-13.4252929663452, 12.0822958352314], [-13.4252929663452, 12.0608090562388], [-13.4472656225912, 12.0608090562388]]]]}, "properties": {"taskId": 966, "taskX": 7580, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 12.0393205554158], [-13.4472656225912, 12.0608090562388], [-13.4252929663452, 12.0608090562388], [-13.4252929663452, 12.0393205554158], [-13.4472656225912, 12.0393205554158]]]]}, "properties": {"taskId": 965, "taskX": 7580, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 12.0178303356471], [-13.4472656225912, 12.0393205554158], [-13.4252929663452, 12.0393205554158], [-13.4252929663452, 12.0178303356471], [-13.4472656225912, 12.0178303356471]]]]}, "properties": {"taskId": 964, "taskX": 7580, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.9963383998188], [-13.4472656225912, 12.0178303356471], [-13.4252929663452, 12.0178303356471], [-13.4252929663452, 11.9963383998188], [-13.4472656225912, 11.9963383998188]]]]}, "properties": {"taskId": 963, "taskX": 7580, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.9533493915333], [-13.4472656225912, 11.9748447508181], [-13.4252929663452, 11.9748447508181], [-13.4252929663452, 11.9533493915333], [-13.4472656225912, 11.9533493915333]]]]}, "properties": {"taskId": 961, "taskX": 7580, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.9318523248542], [-13.4472656225912, 11.9533493915333], [-13.4252929663452, 11.9533493915333], [-13.4252929663452, 11.9318523248542], [-13.4472656225912, 11.9318523248542]]]]}, "properties": {"taskId": 960, "taskX": 7580, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.9103535536714], [-13.4472656225912, 11.9318523248542], [-13.4252929663452, 11.9318523248542], [-13.4252929663452, 11.9103535536714], [-13.4472656225912, 11.9103535536714]]]]}, "properties": {"taskId": 959, "taskX": 7580, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.888853080877], [-13.4472656225912, 11.9103535536714], [-13.4252929663452, 11.9103535536714], [-13.4252929663452, 11.888853080877], [-13.4472656225912, 11.888853080877]]]]}, "properties": {"taskId": 958, "taskX": 7580, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.867350909364], [-13.4472656225912, 11.888853080877], [-13.4252929663452, 11.888853080877], [-13.4252929663452, 11.867350909364], [-13.4472656225912, 11.867350909364]]]]}, "properties": {"taskId": 957, "taskX": 7580, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.8458470420268], [-13.4472656225912, 11.867350909364], [-13.4252929663452, 11.867350909364], [-13.4252929663452, 11.8458470420268], [-13.4472656225912, 11.8458470420268]]]]}, "properties": {"taskId": 956, "taskX": 7580, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.8243414817611], [-13.4472656225912, 11.8458470420268], [-13.4252929663452, 11.8458470420268], [-13.4252929663452, 11.8243414817611], [-13.4472656225912, 11.8243414817611]]]]}, "properties": {"taskId": 955, "taskX": 7580, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.8028342314634], [-13.4472656225912, 11.8243414817611], [-13.4252929663452, 11.8243414817611], [-13.4252929663452, 11.8028342314634], [-13.4472656225912, 11.8028342314634]]]]}, "properties": {"taskId": 954, "taskX": 7580, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.7813252940317], [-13.4472656225912, 11.8028342314634], [-13.4252929663452, 11.8028342314634], [-13.4252929663452, 11.7813252940317], [-13.4472656225912, 11.7813252940317]]]]}, "properties": {"taskId": 953, "taskX": 7580, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.7167883879289], [-13.4472656225912, 11.7383023693636], [-13.4252929663452, 11.7383023693636], [-13.4252929663452, 11.7167883879289], [-13.4472656225912, 11.7167883879289]]]]}, "properties": {"taskId": 950, "taskX": 7580, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.6952727309636], [-13.4472656225912, 11.7167883879289], [-13.4252929663452, 11.7167883879289], [-13.4252929663452, 11.6952727309636], [-13.4472656225912, 11.6952727309636]]]]}, "properties": {"taskId": 949, "taskX": 7580, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.652236402057], [-13.4472656225912, 11.6737554013713], [-13.4252929663452, 11.6737554013713], [-13.4252929663452, 11.652236402057], [-13.4472656225912, 11.652236402057]]]]}, "properties": {"taskId": 947, "taskX": 7580, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.6307157359267], [-13.4472656225912, 11.652236402057], [-13.4252929663452, 11.652236402057], [-13.4252929663452, 11.6307157359267], [-13.4472656225912, 11.6307157359267]]]]}, "properties": {"taskId": 946, "taskX": 7580, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.6091934058879], [-13.4472656225912, 11.6307157359267], [-13.4252929663452, 11.6307157359267], [-13.4252929663452, 11.6091934058879], [-13.4472656225912, 11.6091934058879]]]]}, "properties": {"taskId": 945, "taskX": 7580, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.5876694148488], [-13.4472656225912, 11.6091934058879], [-13.4252929663452, 11.6091934058879], [-13.4252929663452, 11.5876694148488], [-13.4472656225912, 11.5876694148488]]]]}, "properties": {"taskId": 944, "taskX": 7580, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.5661437657192], [-13.4472656225912, 11.5876694148488], [-13.4252929663452, 11.5876694148488], [-13.4252929663452, 11.5661437657192], [-13.4472656225912, 11.5661437657192]]]]}, "properties": {"taskId": 943, "taskX": 7580, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.5446164614097], [-13.4472656225912, 11.5661437657192], [-13.4252929663452, 11.5661437657192], [-13.4252929663452, 11.5446164614097], [-13.4472656225912, 11.5446164614097]]]]}, "properties": {"taskId": 942, "taskX": 7580, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.5230875048322], [-13.4472656225912, 11.5446164614097], [-13.4252929663452, 11.5446164614097], [-13.4252929663452, 11.5230875048322], [-13.4472656225912, 11.5230875048322]]]]}, "properties": {"taskId": 941, "taskX": 7580, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.5015568988999], [-13.4472656225912, 11.5230875048322], [-13.4252929663452, 11.5230875048322], [-13.4252929663452, 11.5015568988999], [-13.4472656225912, 11.5015568988999]]]]}, "properties": {"taskId": 940, "taskX": 7580, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.480024646527], [-13.4472656225912, 11.5015568988999], [-13.4252929663452, 11.5015568988999], [-13.4252929663452, 11.480024646527], [-13.4472656225912, 11.480024646527]]]]}, "properties": {"taskId": 939, "taskX": 7580, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.4584907506287], [-13.4472656225912, 11.480024646527], [-13.4252929663452, 11.480024646527], [-13.4252929663452, 11.4584907506287], [-13.4472656225912, 11.4584907506287]]]]}, "properties": {"taskId": 938, "taskX": 7580, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.4369552141218], [-13.4472656225912, 11.4584907506287], [-13.4252929663452, 11.4584907506287], [-13.4252929663452, 11.4369552141218], [-13.4472656225912, 11.4369552141218]]]]}, "properties": {"taskId": 937, "taskX": 7580, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.4154180399237], [-13.4472656225912, 11.4369552141218], [-13.4252929663452, 11.4369552141218], [-13.4252929663452, 11.4154180399237], [-13.4472656225912, 11.4154180399237]]]]}, "properties": {"taskId": 936, "taskX": 7580, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.3938792309534], [-13.4472656225912, 11.4154180399237], [-13.4252929663452, 11.4154180399237], [-13.4252929663452, 11.3938792309534], [-13.4472656225912, 11.3938792309534]]]]}, "properties": {"taskId": 935, "taskX": 7580, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.3723387901308], [-13.4472656225912, 11.3938792309534], [-13.4252929663452, 11.3938792309534], [-13.4252929663452, 11.3723387901308], [-13.4472656225912, 11.3723387901308]]]]}, "properties": {"taskId": 934, "taskX": 7580, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.3507967203771], [-13.4472656225912, 11.3723387901308], [-13.4252929663452, 11.3723387901308], [-13.4252929663452, 11.3507967203771], [-13.4472656225912, 11.3507967203771]]]]}, "properties": {"taskId": 933, "taskX": 7580, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.3292530246144], [-13.4472656225912, 11.3507967203771], [-13.4252929663452, 11.3507967203771], [-13.4252929663452, 11.3292530246144], [-13.4472656225912, 11.3292530246144]]]]}, "properties": {"taskId": 932, "taskX": 7580, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.3077077057662], [-13.4472656225912, 11.3292530246144], [-13.4252929663452, 11.3292530246144], [-13.4252929663452, 11.3077077057662], [-13.4472656225912, 11.3077077057662]]]]}, "properties": {"taskId": 931, "taskX": 7580, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4472656225912, 11.2861607667571], [-13.4472656225912, 11.3077077057662], [-13.4252929663452, 11.3077077057662], [-13.4252929663452, 11.2861607667571], [-13.4472656225912, 11.2861607667571]]]]}, "properties": {"taskId": 930, "taskX": 7580, "taskY": 8709, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.9533493915333], [-13.5791015600676, 11.9748447508181], [-13.5571289038216, 11.9748447508181], [-13.5571289038216, 11.9533493915333], [-13.5791015600676, 11.9533493915333]]]]}, "properties": {"taskId": 686, "taskX": 7574, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.9318523248542], [-13.5791015600676, 11.9533493915333], [-13.5571289038216, 11.9533493915333], [-13.5571289038216, 11.9318523248542], [-13.5791015600676, 11.9318523248542]]]]}, "properties": {"taskId": 685, "taskX": 7574, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.888853080877], [-13.5791015600676, 11.9103535536714], [-13.5571289038216, 11.9103535536714], [-13.5571289038216, 11.888853080877], [-13.5791015600676, 11.888853080877]]]]}, "properties": {"taskId": 683, "taskX": 7574, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.867350909364], [-13.5791015600676, 11.888853080877], [-13.5571289038216, 11.888853080877], [-13.5571289038216, 11.867350909364], [-13.5791015600676, 11.867350909364]]]]}, "properties": {"taskId": 682, "taskX": 7574, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.8028342314634], [-13.5791015600676, 11.8243414817611], [-13.5571289038216, 11.8243414817611], [-13.5571289038216, 11.8028342314634], [-13.5791015600676, 11.8028342314634]]]]}, "properties": {"taskId": 679, "taskX": 7574, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.7813252940317], [-13.5791015600676, 11.8028342314634], [-13.5571289038216, 11.8028342314634], [-13.5571289038216, 11.7813252940317], [-13.5791015600676, 11.7813252940317]]]]}, "properties": {"taskId": 678, "taskX": 7574, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.759814672365], [-13.5791015600676, 11.7813252940317], [-13.5571289038216, 11.7813252940317], [-13.5571289038216, 11.759814672365], [-13.5791015600676, 11.759814672365]]]]}, "properties": {"taskId": 677, "taskX": 7574, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.7383023693636], [-13.5791015600676, 11.759814672365], [-13.5571289038216, 11.759814672365], [-13.5571289038216, 11.7383023693636], [-13.5791015600676, 11.7383023693636]]]]}, "properties": {"taskId": 676, "taskX": 7574, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.7167883879289], [-13.5791015600676, 11.7383023693636], [-13.5571289038216, 11.7383023693636], [-13.5571289038216, 11.7167883879289], [-13.5791015600676, 11.7167883879289]]]]}, "properties": {"taskId": 675, "taskX": 7574, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.6952727309636], [-13.5791015600676, 11.7167883879289], [-13.5571289038216, 11.7167883879289], [-13.5571289038216, 11.6952727309636], [-13.5791015600676, 11.6952727309636]]]]}, "properties": {"taskId": 674, "taskX": 7574, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.6737554013713], [-13.5791015600676, 11.6952727309636], [-13.5571289038216, 11.6952727309636], [-13.5571289038216, 11.6737554013713], [-13.5791015600676, 11.6737554013713]]]]}, "properties": {"taskId": 673, "taskX": 7574, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.652236402057], [-13.5791015600676, 11.6737554013713], [-13.5571289038216, 11.6737554013713], [-13.5571289038216, 11.652236402057], [-13.5791015600676, 11.652236402057]]]]}, "properties": {"taskId": 672, "taskX": 7574, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.6307157359267], [-13.5791015600676, 11.652236402057], [-13.5571289038216, 11.652236402057], [-13.5571289038216, 11.6307157359267], [-13.5791015600676, 11.6307157359267]]]]}, "properties": {"taskId": 671, "taskX": 7574, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.6091934058879], [-13.5791015600676, 11.6307157359267], [-13.5571289038216, 11.6307157359267], [-13.5571289038216, 11.6091934058879], [-13.5791015600676, 11.6091934058879]]]]}, "properties": {"taskId": 670, "taskX": 7574, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.5876694148488], [-13.5791015600676, 11.6091934058879], [-13.5571289038216, 11.6091934058879], [-13.5571289038216, 11.5876694148488], [-13.5791015600676, 11.5876694148488]]]]}, "properties": {"taskId": 669, "taskX": 7574, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.5661437657192], [-13.5791015600676, 11.5876694148488], [-13.5571289038216, 11.5876694148488], [-13.5571289038216, 11.5661437657192], [-13.5791015600676, 11.5661437657192]]]]}, "properties": {"taskId": 668, "taskX": 7574, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.5446164614097], [-13.5791015600676, 11.5661437657192], [-13.5571289038216, 11.5661437657192], [-13.5571289038216, 11.5446164614097], [-13.5791015600676, 11.5446164614097]]]]}, "properties": {"taskId": 667, "taskX": 7574, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.5230875048322], [-13.5791015600676, 11.5446164614097], [-13.5571289038216, 11.5446164614097], [-13.5571289038216, 11.5230875048322], [-13.5791015600676, 11.5230875048322]]]]}, "properties": {"taskId": 666, "taskX": 7574, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.5015568988999], [-13.5791015600676, 11.5230875048322], [-13.5571289038216, 11.5230875048322], [-13.5571289038216, 11.5015568988999], [-13.5791015600676, 11.5015568988999]]]]}, "properties": {"taskId": 665, "taskX": 7574, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.480024646527], [-13.5791015600676, 11.5015568988999], [-13.5571289038216, 11.5015568988999], [-13.5571289038216, 11.480024646527], [-13.5791015600676, 11.480024646527]]]]}, "properties": {"taskId": 664, "taskX": 7574, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.4584907506287], [-13.5791015600676, 11.480024646527], [-13.5571289038216, 11.480024646527], [-13.5571289038216, 11.4584907506287], [-13.5791015600676, 11.4584907506287]]]]}, "properties": {"taskId": 663, "taskX": 7574, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.4369552141218], [-13.5791015600676, 11.4584907506287], [-13.5571289038216, 11.4584907506287], [-13.5571289038216, 11.4369552141218], [-13.5791015600676, 11.4369552141218]]]]}, "properties": {"taskId": 662, "taskX": 7574, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.4154180399237], [-13.5791015600676, 11.4369552141218], [-13.5571289038216, 11.4369552141218], [-13.5571289038216, 11.4154180399237], [-13.5791015600676, 11.4154180399237]]]]}, "properties": {"taskId": 661, "taskX": 7574, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.3938792309534], [-13.5791015600676, 11.4154180399237], [-13.5571289038216, 11.4154180399237], [-13.5571289038216, 11.3938792309534], [-13.5791015600676, 11.3938792309534]]]]}, "properties": {"taskId": 660, "taskX": 7574, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.3723387901308], [-13.5791015600676, 11.3938792309534], [-13.5571289038216, 11.3938792309534], [-13.5571289038216, 11.3723387901308], [-13.5791015600676, 11.3723387901308]]]]}, "properties": {"taskId": 659, "taskX": 7574, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 12.2970682906849], [-13.6010742163137, 12.3185359394895], [-13.5791015600676, 12.3185359394895], [-13.5791015600676, 12.2970682906849], [-13.6010742163137, 12.2970682906849]]]]}, "properties": {"taskId": 658, "taskX": 7573, "taskY": 8756, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 12.2755988883965], [-13.6010742163137, 12.2970682906849], [-13.5791015600676, 12.2970682906849], [-13.5791015600676, 12.2755988883965], [-13.6010742163137, 12.2755988883965]]]]}, "properties": {"taskId": 657, "taskX": 7573, "taskY": 8755, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 12.2541277354958], [-13.6010742163137, 12.2755988883965], [-13.5791015600676, 12.2755988883965], [-13.5791015600676, 12.2541277354958], [-13.6010742163137, 12.2541277354958]]]]}, "properties": {"taskId": 656, "taskX": 7573, "taskY": 8754, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 12.2326548348556], [-13.6010742163137, 12.2541277354958], [-13.5791015600676, 12.2541277354958], [-13.5791015600676, 12.2326548348556], [-13.6010742163137, 12.2326548348556]]]]}, "properties": {"taskId": 655, "taskX": 7573, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 12.2111801893498], [-13.6010742163137, 12.2326548348556], [-13.5791015600676, 12.2326548348556], [-13.5791015600676, 12.2111801893498], [-13.6010742163137, 12.2111801893498]]]]}, "properties": {"taskId": 654, "taskX": 7573, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 12.1897038018535], [-13.6010742163137, 12.2111801893498], [-13.5791015600676, 12.2111801893498], [-13.5791015600676, 12.1897038018535], [-13.6010742163137, 12.1897038018535]]]]}, "properties": {"taskId": 653, "taskX": 7573, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 12.1682256752432], [-13.6010742163137, 12.1897038018535], [-13.5791015600676, 12.1897038018535], [-13.5791015600676, 12.1682256752432], [-13.6010742163137, 12.1682256752432]]]]}, "properties": {"taskId": 652, "taskX": 7573, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 12.1467458123965], [-13.6010742163137, 12.1682256752432], [-13.5791015600676, 12.1682256752432], [-13.5791015600676, 12.1467458123965], [-13.6010742163137, 12.1467458123965]]]]}, "properties": {"taskId": 651, "taskX": 7573, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 12.1252642161921], [-13.6010742163137, 12.1467458123965], [-13.5791015600676, 12.1467458123965], [-13.5791015600676, 12.1252642161921], [-13.6010742163137, 12.1252642161921]]]]}, "properties": {"taskId": 650, "taskX": 7573, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 12.10378088951], [-13.6010742163137, 12.1252642161921], [-13.5791015600676, 12.1252642161921], [-13.5791015600676, 12.10378088951], [-13.6010742163137, 12.10378088951]]]]}, "properties": {"taskId": 649, "taskX": 7573, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 12.0822958352314], [-13.6010742163137, 12.10378088951], [-13.5791015600676, 12.10378088951], [-13.5791015600676, 12.0822958352314], [-13.6010742163137, 12.0822958352314]]]]}, "properties": {"taskId": 648, "taskX": 7573, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 12.0608090562388], [-13.6010742163137, 12.0822958352314], [-13.5791015600676, 12.0822958352314], [-13.5791015600676, 12.0608090562388], [-13.6010742163137, 12.0608090562388]]]]}, "properties": {"taskId": 647, "taskX": 7573, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 12.0393205554158], [-13.6010742163137, 12.0608090562388], [-13.5791015600676, 12.0608090562388], [-13.5791015600676, 12.0393205554158], [-13.6010742163137, 12.0393205554158]]]]}, "properties": {"taskId": 646, "taskX": 7573, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 12.0178303356471], [-13.6010742163137, 12.0393205554158], [-13.5791015600676, 12.0393205554158], [-13.5791015600676, 12.0178303356471], [-13.6010742163137, 12.0178303356471]]]]}, "properties": {"taskId": 645, "taskX": 7573, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.9963383998188], [-13.6010742163137, 12.0178303356471], [-13.5791015600676, 12.0178303356471], [-13.5791015600676, 11.9963383998188], [-13.6010742163137, 11.9963383998188]]]]}, "properties": {"taskId": 644, "taskX": 7573, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.9748447508181], [-13.6010742163137, 11.9963383998188], [-13.5791015600676, 11.9963383998188], [-13.5791015600676, 11.9748447508181], [-13.6010742163137, 11.9748447508181]]]]}, "properties": {"taskId": 643, "taskX": 7573, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.9533493915333], [-13.6010742163137, 11.9748447508181], [-13.5791015600676, 11.9748447508181], [-13.5791015600676, 11.9533493915333], [-13.6010742163137, 11.9533493915333]]]]}, "properties": {"taskId": 642, "taskX": 7573, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.9318523248542], [-13.6010742163137, 11.9533493915333], [-13.5791015600676, 11.9533493915333], [-13.5791015600676, 11.9318523248542], [-13.6010742163137, 11.9318523248542]]]]}, "properties": {"taskId": 641, "taskX": 7573, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.9103535536714], [-13.6010742163137, 11.9318523248542], [-13.5791015600676, 11.9318523248542], [-13.5791015600676, 11.9103535536714], [-13.6010742163137, 11.9103535536714]]]]}, "properties": {"taskId": 640, "taskX": 7573, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.888853080877], [-13.6010742163137, 11.9103535536714], [-13.5791015600676, 11.9103535536714], [-13.5791015600676, 11.888853080877], [-13.6010742163137, 11.888853080877]]]]}, "properties": {"taskId": 639, "taskX": 7573, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.867350909364], [-13.6010742163137, 11.888853080877], [-13.5791015600676, 11.888853080877], [-13.5791015600676, 11.867350909364], [-13.6010742163137, 11.867350909364]]]]}, "properties": {"taskId": 638, "taskX": 7573, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.8458470420268], [-13.6010742163137, 11.867350909364], [-13.5791015600676, 11.867350909364], [-13.5791015600676, 11.8458470420268], [-13.6010742163137, 11.8458470420268]]]]}, "properties": {"taskId": 637, "taskX": 7573, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.8243414817611], [-13.6010742163137, 11.8458470420268], [-13.5791015600676, 11.8458470420268], [-13.5791015600676, 11.8243414817611], [-13.6010742163137, 11.8243414817611]]]]}, "properties": {"taskId": 636, "taskX": 7573, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.8028342314634], [-13.6010742163137, 11.8243414817611], [-13.5791015600676, 11.8243414817611], [-13.5791015600676, 11.8028342314634], [-13.6010742163137, 11.8028342314634]]]]}, "properties": {"taskId": 635, "taskX": 7573, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.7813252940317], [-13.6010742163137, 11.8028342314634], [-13.5791015600676, 11.8028342314634], [-13.5791015600676, 11.7813252940317], [-13.6010742163137, 11.7813252940317]]]]}, "properties": {"taskId": 634, "taskX": 7573, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.759814672365], [-13.6010742163137, 11.7813252940317], [-13.5791015600676, 11.7813252940317], [-13.5791015600676, 11.759814672365], [-13.6010742163137, 11.759814672365]]]]}, "properties": {"taskId": 633, "taskX": 7573, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.7383023693636], [-13.6010742163137, 11.759814672365], [-13.5791015600676, 11.759814672365], [-13.5791015600676, 11.7383023693636], [-13.6010742163137, 11.7383023693636]]]]}, "properties": {"taskId": 632, "taskX": 7573, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.7167883879289], [-13.6010742163137, 11.7383023693636], [-13.5791015600676, 11.7383023693636], [-13.5791015600676, 11.7167883879289], [-13.6010742163137, 11.7167883879289]]]]}, "properties": {"taskId": 631, "taskX": 7573, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.6952727309636], [-13.6010742163137, 11.7167883879289], [-13.5791015600676, 11.7167883879289], [-13.5791015600676, 11.6952727309636], [-13.6010742163137, 11.6952727309636]]]]}, "properties": {"taskId": 630, "taskX": 7573, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.6737554013713], [-13.6010742163137, 11.6952727309636], [-13.5791015600676, 11.6952727309636], [-13.5791015600676, 11.6737554013713], [-13.6010742163137, 11.6737554013713]]]]}, "properties": {"taskId": 629, "taskX": 7573, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.652236402057], [-13.6010742163137, 11.6737554013713], [-13.5791015600676, 11.6737554013713], [-13.5791015600676, 11.652236402057], [-13.6010742163137, 11.652236402057]]]]}, "properties": {"taskId": 628, "taskX": 7573, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.6307157359267], [-13.6010742163137, 11.652236402057], [-13.5791015600676, 11.652236402057], [-13.5791015600676, 11.6307157359267], [-13.6010742163137, 11.6307157359267]]]]}, "properties": {"taskId": 627, "taskX": 7573, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.6091934058879], [-13.6010742163137, 11.6307157359267], [-13.5791015600676, 11.6307157359267], [-13.5791015600676, 11.6091934058879], [-13.6010742163137, 11.6091934058879]]]]}, "properties": {"taskId": 626, "taskX": 7573, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.5876694148488], [-13.6010742163137, 11.6091934058879], [-13.5791015600676, 11.6091934058879], [-13.5791015600676, 11.5876694148488], [-13.6010742163137, 11.5876694148488]]]]}, "properties": {"taskId": 625, "taskX": 7573, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.5661437657192], [-13.6010742163137, 11.5876694148488], [-13.5791015600676, 11.5876694148488], [-13.5791015600676, 11.5661437657192], [-13.6010742163137, 11.5661437657192]]]]}, "properties": {"taskId": 624, "taskX": 7573, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.5446164614097], [-13.6010742163137, 11.5661437657192], [-13.5791015600676, 11.5661437657192], [-13.5791015600676, 11.5446164614097], [-13.6010742163137, 11.5446164614097]]]]}, "properties": {"taskId": 623, "taskX": 7573, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.5230875048322], [-13.6010742163137, 11.5446164614097], [-13.5791015600676, 11.5446164614097], [-13.5791015600676, 11.5230875048322], [-13.6010742163137, 11.5230875048322]]]]}, "properties": {"taskId": 622, "taskX": 7573, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.5015568988999], [-13.6010742163137, 11.5230875048322], [-13.5791015600676, 11.5230875048322], [-13.5791015600676, 11.5015568988999], [-13.6010742163137, 11.5015568988999]]]]}, "properties": {"taskId": 621, "taskX": 7573, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.480024646527], [-13.6010742163137, 11.5015568988999], [-13.5791015600676, 11.5015568988999], [-13.5791015600676, 11.480024646527], [-13.6010742163137, 11.480024646527]]]]}, "properties": {"taskId": 620, "taskX": 7573, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.4584907506287], [-13.6010742163137, 11.480024646527], [-13.5791015600676, 11.480024646527], [-13.5791015600676, 11.4584907506287], [-13.6010742163137, 11.4584907506287]]]]}, "properties": {"taskId": 619, "taskX": 7573, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.4369552141218], [-13.6010742163137, 11.4584907506287], [-13.5791015600676, 11.4584907506287], [-13.5791015600676, 11.4369552141218], [-13.6010742163137, 11.4369552141218]]]]}, "properties": {"taskId": 618, "taskX": 7573, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.4154180399237], [-13.6010742163137, 11.4369552141218], [-13.5791015600676, 11.4369552141218], [-13.5791015600676, 11.4154180399237], [-13.6010742163137, 11.4154180399237]]]]}, "properties": {"taskId": 617, "taskX": 7573, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.3938792309534], [-13.6010742163137, 11.4154180399237], [-13.5791015600676, 11.4154180399237], [-13.5791015600676, 11.3938792309534], [-13.6010742163137, 11.3938792309534]]]]}, "properties": {"taskId": 616, "taskX": 7573, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6010742163137, 11.3723387901308], [-13.6010742163137, 11.3938792309534], [-13.5791015600676, 11.3938792309534], [-13.5791015600676, 11.3723387901308], [-13.6010742163137, 11.3723387901308]]]]}, "properties": {"taskId": 615, "taskX": 7573, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 12.2541277354958], [-13.6230468725597, 12.2755988883965], [-13.6010742163137, 12.2755988883965], [-13.6010742163137, 12.2541277354958], [-13.6230468725597, 12.2541277354958]]]]}, "properties": {"taskId": 613, "taskX": 7572, "taskY": 8754, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 12.2326548348556], [-13.6230468725597, 12.2541277354958], [-13.6010742163137, 12.2541277354958], [-13.6010742163137, 12.2326548348556], [-13.6230468725597, 12.2326548348556]]]]}, "properties": {"taskId": 612, "taskX": 7572, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 12.2111801893498], [-13.6230468725597, 12.2326548348556], [-13.6010742163137, 12.2326548348556], [-13.6010742163137, 12.2111801893498], [-13.6230468725597, 12.2111801893498]]]]}, "properties": {"taskId": 611, "taskX": 7572, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 12.1897038018535], [-13.6230468725597, 12.2111801893498], [-13.6010742163137, 12.2111801893498], [-13.6010742163137, 12.1897038018535], [-13.6230468725597, 12.1897038018535]]]]}, "properties": {"taskId": 610, "taskX": 7572, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 12.1682256752432], [-13.6230468725597, 12.1897038018535], [-13.6010742163137, 12.1897038018535], [-13.6010742163137, 12.1682256752432], [-13.6230468725597, 12.1682256752432]]]]}, "properties": {"taskId": 609, "taskX": 7572, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 12.1467458123965], [-13.6230468725597, 12.1682256752432], [-13.6010742163137, 12.1682256752432], [-13.6010742163137, 12.1467458123965], [-13.6230468725597, 12.1467458123965]]]]}, "properties": {"taskId": 608, "taskX": 7572, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 12.1252642161921], [-13.6230468725597, 12.1467458123965], [-13.6010742163137, 12.1467458123965], [-13.6010742163137, 12.1252642161921], [-13.6230468725597, 12.1252642161921]]]]}, "properties": {"taskId": 607, "taskX": 7572, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 12.10378088951], [-13.6230468725597, 12.1252642161921], [-13.6010742163137, 12.1252642161921], [-13.6010742163137, 12.10378088951], [-13.6230468725597, 12.10378088951]]]]}, "properties": {"taskId": 606, "taskX": 7572, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 12.0608090562388], [-13.6230468725597, 12.0822958352314], [-13.6010742163137, 12.0822958352314], [-13.6010742163137, 12.0608090562388], [-13.6230468725597, 12.0608090562388]]]]}, "properties": {"taskId": 604, "taskX": 7572, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 12.0393205554158], [-13.6230468725597, 12.0608090562388], [-13.6010742163137, 12.0608090562388], [-13.6010742163137, 12.0393205554158], [-13.6230468725597, 12.0393205554158]]]]}, "properties": {"taskId": 603, "taskX": 7572, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 12.0178303356471], [-13.6230468725597, 12.0393205554158], [-13.6010742163137, 12.0393205554158], [-13.6010742163137, 12.0178303356471], [-13.6230468725597, 12.0178303356471]]]]}, "properties": {"taskId": 602, "taskX": 7572, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.9963383998188], [-13.6230468725597, 12.0178303356471], [-13.6010742163137, 12.0178303356471], [-13.6010742163137, 11.9963383998188], [-13.6230468725597, 11.9963383998188]]]]}, "properties": {"taskId": 601, "taskX": 7572, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.9748447508181], [-13.6230468725597, 11.9963383998188], [-13.6010742163137, 11.9963383998188], [-13.6010742163137, 11.9748447508181], [-13.6230468725597, 11.9748447508181]]]]}, "properties": {"taskId": 600, "taskX": 7572, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.9533493915333], [-13.6230468725597, 11.9748447508181], [-13.6010742163137, 11.9748447508181], [-13.6010742163137, 11.9533493915333], [-13.6230468725597, 11.9533493915333]]]]}, "properties": {"taskId": 599, "taskX": 7572, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.9318523248542], [-13.6230468725597, 11.9533493915333], [-13.6010742163137, 11.9533493915333], [-13.6010742163137, 11.9318523248542], [-13.6230468725597, 11.9318523248542]]]]}, "properties": {"taskId": 598, "taskX": 7572, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.9103535536714], [-13.6230468725597, 11.9318523248542], [-13.6010742163137, 11.9318523248542], [-13.6010742163137, 11.9103535536714], [-13.6230468725597, 11.9103535536714]]]]}, "properties": {"taskId": 597, "taskX": 7572, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.888853080877], [-13.6230468725597, 11.9103535536714], [-13.6010742163137, 11.9103535536714], [-13.6010742163137, 11.888853080877], [-13.6230468725597, 11.888853080877]]]]}, "properties": {"taskId": 596, "taskX": 7572, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.867350909364], [-13.6230468725597, 11.888853080877], [-13.6010742163137, 11.888853080877], [-13.6010742163137, 11.867350909364], [-13.6230468725597, 11.867350909364]]]]}, "properties": {"taskId": 595, "taskX": 7572, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.8458470420268], [-13.6230468725597, 11.867350909364], [-13.6010742163137, 11.867350909364], [-13.6010742163137, 11.8458470420268], [-13.6230468725597, 11.8458470420268]]]]}, "properties": {"taskId": 594, "taskX": 7572, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.8243414817611], [-13.6230468725597, 11.8458470420268], [-13.6010742163137, 11.8458470420268], [-13.6010742163137, 11.8243414817611], [-13.6230468725597, 11.8243414817611]]]]}, "properties": {"taskId": 593, "taskX": 7572, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.8028342314634], [-13.6230468725597, 11.8243414817611], [-13.6010742163137, 11.8243414817611], [-13.6010742163137, 11.8028342314634], [-13.6230468725597, 11.8028342314634]]]]}, "properties": {"taskId": 592, "taskX": 7572, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.7813252940317], [-13.6230468725597, 11.8028342314634], [-13.6010742163137, 11.8028342314634], [-13.6010742163137, 11.7813252940317], [-13.6230468725597, 11.7813252940317]]]]}, "properties": {"taskId": 591, "taskX": 7572, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.759814672365], [-13.6230468725597, 11.7813252940317], [-13.6010742163137, 11.7813252940317], [-13.6010742163137, 11.759814672365], [-13.6230468725597, 11.759814672365]]]]}, "properties": {"taskId": 590, "taskX": 7572, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.7383023693636], [-13.6230468725597, 11.759814672365], [-13.6010742163137, 11.759814672365], [-13.6010742163137, 11.7383023693636], [-13.6230468725597, 11.7383023693636]]]]}, "properties": {"taskId": 589, "taskX": 7572, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.7167883879289], [-13.6230468725597, 11.7383023693636], [-13.6010742163137, 11.7383023693636], [-13.6010742163137, 11.7167883879289], [-13.6230468725597, 11.7167883879289]]]]}, "properties": {"taskId": 588, "taskX": 7572, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.6952727309636], [-13.6230468725597, 11.7167883879289], [-13.6010742163137, 11.7167883879289], [-13.6010742163137, 11.6952727309636], [-13.6230468725597, 11.6952727309636]]]]}, "properties": {"taskId": 587, "taskX": 7572, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.652236402057], [-13.6230468725597, 11.6737554013713], [-13.6010742163137, 11.6737554013713], [-13.6010742163137, 11.652236402057], [-13.6230468725597, 11.652236402057]]]]}, "properties": {"taskId": 585, "taskX": 7572, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.6307157359267], [-13.6230468725597, 11.652236402057], [-13.6010742163137, 11.652236402057], [-13.6010742163137, 11.6307157359267], [-13.6230468725597, 11.6307157359267]]]]}, "properties": {"taskId": 584, "taskX": 7572, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.6091934058879], [-13.6230468725597, 11.6307157359267], [-13.6010742163137, 11.6307157359267], [-13.6010742163137, 11.6091934058879], [-13.6230468725597, 11.6091934058879]]]]}, "properties": {"taskId": 583, "taskX": 7572, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.5876694148488], [-13.6230468725597, 11.6091934058879], [-13.6010742163137, 11.6091934058879], [-13.6010742163137, 11.5876694148488], [-13.6230468725597, 11.5876694148488]]]]}, "properties": {"taskId": 582, "taskX": 7572, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.5661437657192], [-13.6230468725597, 11.5876694148488], [-13.6010742163137, 11.5876694148488], [-13.6010742163137, 11.5661437657192], [-13.6230468725597, 11.5661437657192]]]]}, "properties": {"taskId": 581, "taskX": 7572, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.5446164614097], [-13.6230468725597, 11.5661437657192], [-13.6010742163137, 11.5661437657192], [-13.6010742163137, 11.5446164614097], [-13.6230468725597, 11.5446164614097]]]]}, "properties": {"taskId": 580, "taskX": 7572, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.5230875048322], [-13.6230468725597, 11.5446164614097], [-13.6010742163137, 11.5446164614097], [-13.6010742163137, 11.5230875048322], [-13.6230468725597, 11.5230875048322]]]]}, "properties": {"taskId": 579, "taskX": 7572, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.5015568988999], [-13.6230468725597, 11.5230875048322], [-13.6010742163137, 11.5230875048322], [-13.6010742163137, 11.5015568988999], [-13.6230468725597, 11.5015568988999]]]]}, "properties": {"taskId": 578, "taskX": 7572, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.480024646527], [-13.6230468725597, 11.5015568988999], [-13.6010742163137, 11.5015568988999], [-13.6010742163137, 11.480024646527], [-13.6230468725597, 11.480024646527]]]]}, "properties": {"taskId": 577, "taskX": 7572, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.4584907506287], [-13.6230468725597, 11.480024646527], [-13.6010742163137, 11.480024646527], [-13.6010742163137, 11.4584907506287], [-13.6230468725597, 11.4584907506287]]]]}, "properties": {"taskId": 576, "taskX": 7572, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.4369552141218], [-13.6230468725597, 11.4584907506287], [-13.6010742163137, 11.4584907506287], [-13.6010742163137, 11.4369552141218], [-13.6230468725597, 11.4369552141218]]]]}, "properties": {"taskId": 575, "taskX": 7572, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.4154180399237], [-13.6230468725597, 11.4369552141218], [-13.6010742163137, 11.4369552141218], [-13.6010742163137, 11.4154180399237], [-13.6230468725597, 11.4154180399237]]]]}, "properties": {"taskId": 574, "taskX": 7572, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.3938792309534], [-13.6230468725597, 11.4154180399237], [-13.6010742163137, 11.4154180399237], [-13.6010742163137, 11.3938792309534], [-13.6230468725597, 11.3938792309534]]]]}, "properties": {"taskId": 573, "taskX": 7572, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.3723387901308], [-13.6230468725597, 11.3938792309534], [-13.6010742163137, 11.3938792309534], [-13.6010742163137, 11.3723387901308], [-13.6230468725597, 11.3723387901308]]]]}, "properties": {"taskId": 572, "taskX": 7572, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.3507967203771], [-13.6230468725597, 11.3723387901308], [-13.6010742163137, 11.3723387901308], [-13.6010742163137, 11.3507967203771], [-13.6230468725597, 11.3507967203771]]]]}, "properties": {"taskId": 571, "taskX": 7572, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6230468725597, 11.3292530246144], [-13.6230468725597, 11.3507967203771], [-13.6010742163137, 11.3507967203771], [-13.6010742163137, 11.3292530246144], [-13.6230468725597, 11.3292530246144]]]]}, "properties": {"taskId": 570, "taskX": 7572, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 12.2541277354958], [-13.6450195288058, 12.2755988883965], [-13.6230468725597, 12.2755988883965], [-13.6230468725597, 12.2541277354958], [-13.6450195288058, 12.2541277354958]]]]}, "properties": {"taskId": 569, "taskX": 7571, "taskY": 8754, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 12.2326548348556], [-13.6450195288058, 12.2541277354958], [-13.6230468725597, 12.2541277354958], [-13.6230468725597, 12.2326548348556], [-13.6450195288058, 12.2326548348556]]]]}, "properties": {"taskId": 568, "taskX": 7571, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 12.2111801893498], [-13.6450195288058, 12.2326548348556], [-13.6230468725597, 12.2326548348556], [-13.6230468725597, 12.2111801893498], [-13.6450195288058, 12.2111801893498]]]]}, "properties": {"taskId": 567, "taskX": 7571, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 12.1897038018535], [-13.6450195288058, 12.2111801893498], [-13.6230468725597, 12.2111801893498], [-13.6230468725597, 12.1897038018535], [-13.6450195288058, 12.1897038018535]]]]}, "properties": {"taskId": 566, "taskX": 7571, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 12.1682256752432], [-13.6450195288058, 12.1897038018535], [-13.6230468725597, 12.1897038018535], [-13.6230468725597, 12.1682256752432], [-13.6450195288058, 12.1682256752432]]]]}, "properties": {"taskId": 565, "taskX": 7571, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 12.1467458123965], [-13.6450195288058, 12.1682256752432], [-13.6230468725597, 12.1682256752432], [-13.6230468725597, 12.1467458123965], [-13.6450195288058, 12.1467458123965]]]]}, "properties": {"taskId": 564, "taskX": 7571, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 12.1252642161921], [-13.6450195288058, 12.1467458123965], [-13.6230468725597, 12.1467458123965], [-13.6230468725597, 12.1252642161921], [-13.6450195288058, 12.1252642161921]]]]}, "properties": {"taskId": 563, "taskX": 7571, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.1784018717349], [-13.1176757789003, 11.1999568676412], [-13.0957031226542, 11.1999568676412], [-13.0957031226542, 11.1784018717349], [-13.1176757789003, 11.1784018717349]]]]}, "properties": {"taskId": 1587, "taskX": 7595, "taskY": 8704, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1176757789003, 11.1568452732386], [-13.1176757789003, 11.1784018717349], [-13.0957031226542, 11.1784018717349], [-13.0957031226542, 11.1568452732386], [-13.1176757789003, 11.1568452732386]]]]}, "properties": {"taskId": 1586, "taskX": 7595, "taskY": 8703, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 12.0393205554158], [-13.1396484351464, 12.0608090562388], [-13.1176757789003, 12.0608090562388], [-13.1176757789003, 12.0393205554158], [-13.1396484351464, 12.0393205554158]]]]}, "properties": {"taskId": 1585, "taskX": 7594, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 12.0178303356471], [-13.1396484351464, 12.0393205554158], [-13.1176757789003, 12.0393205554158], [-13.1176757789003, 12.0178303356471], [-13.1396484351464, 12.0178303356471]]]]}, "properties": {"taskId": 1584, "taskX": 7594, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.9963383998188], [-13.1396484351464, 12.0178303356471], [-13.1176757789003, 12.0178303356471], [-13.1176757789003, 11.9963383998188], [-13.1396484351464, 11.9963383998188]]]]}, "properties": {"taskId": 1583, "taskX": 7594, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.9748447508181], [-13.1396484351464, 11.9963383998188], [-13.1176757789003, 11.9963383998188], [-13.1176757789003, 11.9748447508181], [-13.1396484351464, 11.9748447508181]]]]}, "properties": {"taskId": 1582, "taskX": 7594, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.9533493915333], [-13.1396484351464, 11.9748447508181], [-13.1176757789003, 11.9748447508181], [-13.1176757789003, 11.9533493915333], [-13.1396484351464, 11.9533493915333]]]]}, "properties": {"taskId": 1581, "taskX": 7594, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.9318523248542], [-13.1396484351464, 11.9533493915333], [-13.1176757789003, 11.9533493915333], [-13.1176757789003, 11.9318523248542], [-13.1396484351464, 11.9318523248542]]]]}, "properties": {"taskId": 1580, "taskX": 7594, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.9103535536714], [-13.1396484351464, 11.9318523248542], [-13.1176757789003, 11.9318523248542], [-13.1176757789003, 11.9103535536714], [-13.1396484351464, 11.9103535536714]]]]}, "properties": {"taskId": 1579, "taskX": 7594, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.888853080877], [-13.1396484351464, 11.9103535536714], [-13.1176757789003, 11.9103535536714], [-13.1176757789003, 11.888853080877], [-13.1396484351464, 11.888853080877]]]]}, "properties": {"taskId": 1578, "taskX": 7594, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.867350909364], [-13.1396484351464, 11.888853080877], [-13.1176757789003, 11.888853080877], [-13.1176757789003, 11.867350909364], [-13.1396484351464, 11.867350909364]]]]}, "properties": {"taskId": 1577, "taskX": 7594, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.8458470420268], [-13.1396484351464, 11.867350909364], [-13.1176757789003, 11.867350909364], [-13.1176757789003, 11.8458470420268], [-13.1396484351464, 11.8458470420268]]]]}, "properties": {"taskId": 1576, "taskX": 7594, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.7813252940317], [-13.1396484351464, 11.8028342314634], [-13.1176757789003, 11.8028342314634], [-13.1176757789003, 11.7813252940317], [-13.1396484351464, 11.7813252940317]]]]}, "properties": {"taskId": 1573, "taskX": 7594, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.759814672365], [-13.1396484351464, 11.7813252940317], [-13.1176757789003, 11.7813252940317], [-13.1176757789003, 11.759814672365], [-13.1396484351464, 11.759814672365]]]]}, "properties": {"taskId": 1572, "taskX": 7594, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.7383023693636], [-13.1396484351464, 11.759814672365], [-13.1176757789003, 11.759814672365], [-13.1176757789003, 11.7383023693636], [-13.1396484351464, 11.7383023693636]]]]}, "properties": {"taskId": 1571, "taskX": 7594, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.7167883879289], [-13.1396484351464, 11.7383023693636], [-13.1176757789003, 11.7383023693636], [-13.1176757789003, 11.7167883879289], [-13.1396484351464, 11.7167883879289]]]]}, "properties": {"taskId": 1570, "taskX": 7594, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.6952727309636], [-13.1396484351464, 11.7167883879289], [-13.1176757789003, 11.7167883879289], [-13.1176757789003, 11.6952727309636], [-13.1396484351464, 11.6952727309636]]]]}, "properties": {"taskId": 1569, "taskX": 7594, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.6737554013713], [-13.1396484351464, 11.6952727309636], [-13.1176757789003, 11.6952727309636], [-13.1176757789003, 11.6737554013713], [-13.1396484351464, 11.6737554013713]]]]}, "properties": {"taskId": 1568, "taskX": 7594, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.652236402057], [-13.1396484351464, 11.6737554013713], [-13.1176757789003, 11.6737554013713], [-13.1176757789003, 11.652236402057], [-13.1396484351464, 11.652236402057]]]]}, "properties": {"taskId": 1567, "taskX": 7594, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.5876694148488], [-13.1396484351464, 11.6091934058879], [-13.1176757789003, 11.6091934058879], [-13.1176757789003, 11.5876694148488], [-13.1396484351464, 11.5876694148488]]]]}, "properties": {"taskId": 1564, "taskX": 7594, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.5661437657192], [-13.1396484351464, 11.5876694148488], [-13.1176757789003, 11.5876694148488], [-13.1176757789003, 11.5661437657192], [-13.1396484351464, 11.5661437657192]]]]}, "properties": {"taskId": 1563, "taskX": 7594, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.5446164614097], [-13.1396484351464, 11.5661437657192], [-13.1176757789003, 11.5661437657192], [-13.1176757789003, 11.5446164614097], [-13.1396484351464, 11.5446164614097]]]]}, "properties": {"taskId": 1562, "taskX": 7594, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.5230875048322], [-13.1396484351464, 11.5446164614097], [-13.1176757789003, 11.5446164614097], [-13.1176757789003, 11.5230875048322], [-13.1396484351464, 11.5230875048322]]]]}, "properties": {"taskId": 1561, "taskX": 7594, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.5015568988999], [-13.1396484351464, 11.5230875048322], [-13.1176757789003, 11.5230875048322], [-13.1176757789003, 11.5015568988999], [-13.1396484351464, 11.5015568988999]]]]}, "properties": {"taskId": 1560, "taskX": 7594, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.1396484351464, 11.480024646527], [-13.1396484351464, 11.5015568988999], [-13.1176757789003, 11.5015568988999], [-13.1176757789003, 11.480024646527], [-13.1396484351464, 11.480024646527]]]]}, "properties": {"taskId": 1559, "taskX": 7594, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.9318523248542], [-13.359374997607, 11.9533493915333], [-13.3374023413609, 11.9533493915333], [-13.3374023413609, 11.9318523248542], [-13.359374997607, 11.9318523248542]]]]}, "properties": {"taskId": 1152, "taskX": 7584, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.9103535536714], [-13.359374997607, 11.9318523248542], [-13.3374023413609, 11.9318523248542], [-13.3374023413609, 11.9103535536714], [-13.359374997607, 11.9103535536714]]]]}, "properties": {"taskId": 1151, "taskX": 7584, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.888853080877], [-13.359374997607, 11.9103535536714], [-13.3374023413609, 11.9103535536714], [-13.3374023413609, 11.888853080877], [-13.359374997607, 11.888853080877]]]]}, "properties": {"taskId": 1150, "taskX": 7584, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.8458470420268], [-13.359374997607, 11.867350909364], [-13.3374023413609, 11.867350909364], [-13.3374023413609, 11.8458470420268], [-13.359374997607, 11.8458470420268]]]]}, "properties": {"taskId": 1148, "taskX": 7584, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.8243414817611], [-13.359374997607, 11.8458470420268], [-13.3374023413609, 11.8458470420268], [-13.3374023413609, 11.8243414817611], [-13.359374997607, 11.8243414817611]]]]}, "properties": {"taskId": 1147, "taskX": 7584, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.359374997607, 11.8028342314634], [-13.359374997607, 11.8243414817611], [-13.3374023413609, 11.8243414817611], [-13.3374023413609, 11.8028342314634], [-13.359374997607, 11.8028342314634]]]]}, "properties": {"taskId": 1146, "taskX": 7584, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 12.10378088951], [-13.6450195288058, 12.1252642161921], [-13.6230468725597, 12.1252642161921], [-13.6230468725597, 12.10378088951], [-13.6450195288058, 12.10378088951]]]]}, "properties": {"taskId": 562, "taskX": 7571, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 12.0822958352314], [-13.6450195288058, 12.10378088951], [-13.6230468725597, 12.10378088951], [-13.6230468725597, 12.0822958352314], [-13.6450195288058, 12.0822958352314]]]]}, "properties": {"taskId": 561, "taskX": 7571, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 12.0608090562388], [-13.6450195288058, 12.0822958352314], [-13.6230468725597, 12.0822958352314], [-13.6230468725597, 12.0608090562388], [-13.6450195288058, 12.0608090562388]]]]}, "properties": {"taskId": 560, "taskX": 7571, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 12.0393205554158], [-13.6450195288058, 12.0608090562388], [-13.6230468725597, 12.0608090562388], [-13.6230468725597, 12.0393205554158], [-13.6450195288058, 12.0393205554158]]]]}, "properties": {"taskId": 559, "taskX": 7571, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.9963383998188], [-13.6450195288058, 12.0178303356471], [-13.6230468725597, 12.0178303356471], [-13.6230468725597, 11.9963383998188], [-13.6450195288058, 11.9963383998188]]]]}, "properties": {"taskId": 557, "taskX": 7571, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.9533493915333], [-13.6450195288058, 11.9748447508181], [-13.6230468725597, 11.9748447508181], [-13.6230468725597, 11.9533493915333], [-13.6450195288058, 11.9533493915333]]]]}, "properties": {"taskId": 555, "taskX": 7571, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.9318523248542], [-13.6450195288058, 11.9533493915333], [-13.6230468725597, 11.9533493915333], [-13.6230468725597, 11.9318523248542], [-13.6450195288058, 11.9318523248542]]]]}, "properties": {"taskId": 554, "taskX": 7571, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.9103535536714], [-13.6450195288058, 11.9318523248542], [-13.6230468725597, 11.9318523248542], [-13.6230468725597, 11.9103535536714], [-13.6450195288058, 11.9103535536714]]]]}, "properties": {"taskId": 553, "taskX": 7571, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.888853080877], [-13.6450195288058, 11.9103535536714], [-13.6230468725597, 11.9103535536714], [-13.6230468725597, 11.888853080877], [-13.6450195288058, 11.888853080877]]]]}, "properties": {"taskId": 552, "taskX": 7571, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.867350909364], [-13.6450195288058, 11.888853080877], [-13.6230468725597, 11.888853080877], [-13.6230468725597, 11.867350909364], [-13.6450195288058, 11.867350909364]]]]}, "properties": {"taskId": 551, "taskX": 7571, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.8458470420268], [-13.6450195288058, 11.867350909364], [-13.6230468725597, 11.867350909364], [-13.6230468725597, 11.8458470420268], [-13.6450195288058, 11.8458470420268]]]]}, "properties": {"taskId": 550, "taskX": 7571, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.8243414817611], [-13.6450195288058, 11.8458470420268], [-13.6230468725597, 11.8458470420268], [-13.6230468725597, 11.8243414817611], [-13.6450195288058, 11.8243414817611]]]]}, "properties": {"taskId": 549, "taskX": 7571, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.8028342314634], [-13.6450195288058, 11.8243414817611], [-13.6230468725597, 11.8243414817611], [-13.6230468725597, 11.8028342314634], [-13.6450195288058, 11.8028342314634]]]]}, "properties": {"taskId": 548, "taskX": 7571, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.7813252940317], [-13.6450195288058, 11.8028342314634], [-13.6230468725597, 11.8028342314634], [-13.6230468725597, 11.7813252940317], [-13.6450195288058, 11.7813252940317]]]]}, "properties": {"taskId": 547, "taskX": 7571, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.759814672365], [-13.6450195288058, 11.7813252940317], [-13.6230468725597, 11.7813252940317], [-13.6230468725597, 11.759814672365], [-13.6450195288058, 11.759814672365]]]]}, "properties": {"taskId": 546, "taskX": 7571, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.7383023693636], [-13.6450195288058, 11.759814672365], [-13.6230468725597, 11.759814672365], [-13.6230468725597, 11.7383023693636], [-13.6450195288058, 11.7383023693636]]]]}, "properties": {"taskId": 545, "taskX": 7571, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.7167883879289], [-13.6450195288058, 11.7383023693636], [-13.6230468725597, 11.7383023693636], [-13.6230468725597, 11.7167883879289], [-13.6450195288058, 11.7167883879289]]]]}, "properties": {"taskId": 544, "taskX": 7571, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.6952727309636], [-13.6450195288058, 11.7167883879289], [-13.6230468725597, 11.7167883879289], [-13.6230468725597, 11.6952727309636], [-13.6450195288058, 11.6952727309636]]]]}, "properties": {"taskId": 543, "taskX": 7571, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.6737554013713], [-13.6450195288058, 11.6952727309636], [-13.6230468725597, 11.6952727309636], [-13.6230468725597, 11.6737554013713], [-13.6450195288058, 11.6737554013713]]]]}, "properties": {"taskId": 542, "taskX": 7571, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.652236402057], [-13.6450195288058, 11.6737554013713], [-13.6230468725597, 11.6737554013713], [-13.6230468725597, 11.652236402057], [-13.6450195288058, 11.652236402057]]]]}, "properties": {"taskId": 541, "taskX": 7571, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.6307157359267], [-13.6450195288058, 11.652236402057], [-13.6230468725597, 11.652236402057], [-13.6230468725597, 11.6307157359267], [-13.6450195288058, 11.6307157359267]]]]}, "properties": {"taskId": 540, "taskX": 7571, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.6091934058879], [-13.6450195288058, 11.6307157359267], [-13.6230468725597, 11.6307157359267], [-13.6230468725597, 11.6091934058879], [-13.6450195288058, 11.6091934058879]]]]}, "properties": {"taskId": 539, "taskX": 7571, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.5876694148488], [-13.6450195288058, 11.6091934058879], [-13.6230468725597, 11.6091934058879], [-13.6230468725597, 11.5876694148488], [-13.6450195288058, 11.5876694148488]]]]}, "properties": {"taskId": 538, "taskX": 7571, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.5661437657192], [-13.6450195288058, 11.5876694148488], [-13.6230468725597, 11.5876694148488], [-13.6230468725597, 11.5661437657192], [-13.6450195288058, 11.5661437657192]]]]}, "properties": {"taskId": 537, "taskX": 7571, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.5446164614097], [-13.6450195288058, 11.5661437657192], [-13.6230468725597, 11.5661437657192], [-13.6230468725597, 11.5446164614097], [-13.6450195288058, 11.5446164614097]]]]}, "properties": {"taskId": 536, "taskX": 7571, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.5230875048322], [-13.6450195288058, 11.5446164614097], [-13.6230468725597, 11.5446164614097], [-13.6230468725597, 11.5230875048322], [-13.6450195288058, 11.5230875048322]]]]}, "properties": {"taskId": 535, "taskX": 7571, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.5015568988999], [-13.6450195288058, 11.5230875048322], [-13.6230468725597, 11.5230875048322], [-13.6230468725597, 11.5015568988999], [-13.6450195288058, 11.5015568988999]]]]}, "properties": {"taskId": 534, "taskX": 7571, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.480024646527], [-13.6450195288058, 11.5015568988999], [-13.6230468725597, 11.5015568988999], [-13.6230468725597, 11.480024646527], [-13.6450195288058, 11.480024646527]]]]}, "properties": {"taskId": 533, "taskX": 7571, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.4584907506287], [-13.6450195288058, 11.480024646527], [-13.6230468725597, 11.480024646527], [-13.6230468725597, 11.4584907506287], [-13.6450195288058, 11.4584907506287]]]]}, "properties": {"taskId": 532, "taskX": 7571, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.4369552141218], [-13.6450195288058, 11.4584907506287], [-13.6230468725597, 11.4584907506287], [-13.6230468725597, 11.4369552141218], [-13.6450195288058, 11.4369552141218]]]]}, "properties": {"taskId": 531, "taskX": 7571, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.4154180399237], [-13.6450195288058, 11.4369552141218], [-13.6230468725597, 11.4369552141218], [-13.6230468725597, 11.4154180399237], [-13.6450195288058, 11.4154180399237]]]]}, "properties": {"taskId": 530, "taskX": 7571, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.3938792309534], [-13.6450195288058, 11.4154180399237], [-13.6230468725597, 11.4154180399237], [-13.6230468725597, 11.3938792309534], [-13.6450195288058, 11.3938792309534]]]]}, "properties": {"taskId": 529, "taskX": 7571, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.3723387901308], [-13.6450195288058, 11.3938792309534], [-13.6230468725597, 11.3938792309534], [-13.6230468725597, 11.3723387901308], [-13.6450195288058, 11.3723387901308]]]]}, "properties": {"taskId": 528, "taskX": 7571, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.3507967203771], [-13.6450195288058, 11.3723387901308], [-13.6230468725597, 11.3723387901308], [-13.6230468725597, 11.3507967203771], [-13.6450195288058, 11.3507967203771]]]]}, "properties": {"taskId": 527, "taskX": 7571, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.3292530246144], [-13.6450195288058, 11.3507967203771], [-13.6230468725597, 11.3507967203771], [-13.6230468725597, 11.3292530246144], [-13.6450195288058, 11.3292530246144]]]]}, "properties": {"taskId": 526, "taskX": 7571, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6450195288058, 11.3077077057662], [-13.6450195288058, 11.3292530246144], [-13.6230468725597, 11.3292530246144], [-13.6230468725597, 11.3077077057662], [-13.6450195288058, 11.3077077057662]]]]}, "properties": {"taskId": 525, "taskX": 7571, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 12.2541277354958], [-13.6669921850519, 12.2755988883965], [-13.6450195288058, 12.2755988883965], [-13.6450195288058, 12.2541277354958], [-13.6669921850519, 12.2541277354958]]]]}, "properties": {"taskId": 524, "taskX": 7570, "taskY": 8754, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 12.2326548348556], [-13.6669921850519, 12.2541277354958], [-13.6450195288058, 12.2541277354958], [-13.6450195288058, 12.2326548348556], [-13.6669921850519, 12.2326548348556]]]]}, "properties": {"taskId": 523, "taskX": 7570, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 12.2111801893498], [-13.6669921850519, 12.2326548348556], [-13.6450195288058, 12.2326548348556], [-13.6450195288058, 12.2111801893498], [-13.6669921850519, 12.2111801893498]]]]}, "properties": {"taskId": 522, "taskX": 7570, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 12.1897038018535], [-13.6669921850519, 12.2111801893498], [-13.6450195288058, 12.2111801893498], [-13.6450195288058, 12.1897038018535], [-13.6669921850519, 12.1897038018535]]]]}, "properties": {"taskId": 521, "taskX": 7570, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 12.1682256752432], [-13.6669921850519, 12.1897038018535], [-13.6450195288058, 12.1897038018535], [-13.6450195288058, 12.1682256752432], [-13.6669921850519, 12.1682256752432]]]]}, "properties": {"taskId": 520, "taskX": 7570, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 12.1467458123965], [-13.6669921850519, 12.1682256752432], [-13.6450195288058, 12.1682256752432], [-13.6450195288058, 12.1467458123965], [-13.6669921850519, 12.1467458123965]]]]}, "properties": {"taskId": 519, "taskX": 7570, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 12.1252642161921], [-13.6669921850519, 12.1467458123965], [-13.6450195288058, 12.1467458123965], [-13.6450195288058, 12.1252642161921], [-13.6669921850519, 12.1252642161921]]]]}, "properties": {"taskId": 518, "taskX": 7570, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 12.10378088951], [-13.6669921850519, 12.1252642161921], [-13.6450195288058, 12.1252642161921], [-13.6450195288058, 12.10378088951], [-13.6669921850519, 12.10378088951]]]]}, "properties": {"taskId": 517, "taskX": 7570, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 12.0822958352314], [-13.6669921850519, 12.10378088951], [-13.6450195288058, 12.10378088951], [-13.6450195288058, 12.0822958352314], [-13.6669921850519, 12.0822958352314]]]]}, "properties": {"taskId": 516, "taskX": 7570, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 12.0608090562388], [-13.6669921850519, 12.0822958352314], [-13.6450195288058, 12.0822958352314], [-13.6450195288058, 12.0608090562388], [-13.6669921850519, 12.0608090562388]]]]}, "properties": {"taskId": 515, "taskX": 7570, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 12.0393205554158], [-13.6669921850519, 12.0608090562388], [-13.6450195288058, 12.0608090562388], [-13.6450195288058, 12.0393205554158], [-13.6669921850519, 12.0393205554158]]]]}, "properties": {"taskId": 514, "taskX": 7570, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 12.0178303356471], [-13.6669921850519, 12.0393205554158], [-13.6450195288058, 12.0393205554158], [-13.6450195288058, 12.0178303356471], [-13.6669921850519, 12.0178303356471]]]]}, "properties": {"taskId": 513, "taskX": 7570, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.9963383998188], [-13.6669921850519, 12.0178303356471], [-13.6450195288058, 12.0178303356471], [-13.6450195288058, 11.9963383998188], [-13.6669921850519, 11.9963383998188]]]]}, "properties": {"taskId": 512, "taskX": 7570, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.9748447508181], [-13.6669921850519, 11.9963383998188], [-13.6450195288058, 11.9963383998188], [-13.6450195288058, 11.9748447508181], [-13.6669921850519, 11.9748447508181]]]]}, "properties": {"taskId": 511, "taskX": 7570, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.9533493915333], [-13.6669921850519, 11.9748447508181], [-13.6450195288058, 11.9748447508181], [-13.6450195288058, 11.9533493915333], [-13.6669921850519, 11.9533493915333]]]]}, "properties": {"taskId": 510, "taskX": 7570, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.9318523248542], [-13.6669921850519, 11.9533493915333], [-13.6450195288058, 11.9533493915333], [-13.6450195288058, 11.9318523248542], [-13.6669921850519, 11.9318523248542]]]]}, "properties": {"taskId": 509, "taskX": 7570, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.9103535536714], [-13.6669921850519, 11.9318523248542], [-13.6450195288058, 11.9318523248542], [-13.6450195288058, 11.9103535536714], [-13.6669921850519, 11.9103535536714]]]]}, "properties": {"taskId": 508, "taskX": 7570, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.888853080877], [-13.6669921850519, 11.9103535536714], [-13.6450195288058, 11.9103535536714], [-13.6450195288058, 11.888853080877], [-13.6669921850519, 11.888853080877]]]]}, "properties": {"taskId": 507, "taskX": 7570, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.867350909364], [-13.6669921850519, 11.888853080877], [-13.6450195288058, 11.888853080877], [-13.6450195288058, 11.867350909364], [-13.6669921850519, 11.867350909364]]]]}, "properties": {"taskId": 506, "taskX": 7570, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.8458470420268], [-13.6669921850519, 11.867350909364], [-13.6450195288058, 11.867350909364], [-13.6450195288058, 11.8458470420268], [-13.6669921850519, 11.8458470420268]]]]}, "properties": {"taskId": 505, "taskX": 7570, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.8243414817611], [-13.6669921850519, 11.8458470420268], [-13.6450195288058, 11.8458470420268], [-13.6450195288058, 11.8243414817611], [-13.6669921850519, 11.8243414817611]]]]}, "properties": {"taskId": 504, "taskX": 7570, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.8028342314634], [-13.6669921850519, 11.8243414817611], [-13.6450195288058, 11.8243414817611], [-13.6450195288058, 11.8028342314634], [-13.6669921850519, 11.8028342314634]]]]}, "properties": {"taskId": 503, "taskX": 7570, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.7813252940317], [-13.6669921850519, 11.8028342314634], [-13.6450195288058, 11.8028342314634], [-13.6450195288058, 11.7813252940317], [-13.6669921850519, 11.7813252940317]]]]}, "properties": {"taskId": 502, "taskX": 7570, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.759814672365], [-13.6669921850519, 11.7813252940317], [-13.6450195288058, 11.7813252940317], [-13.6450195288058, 11.759814672365], [-13.6669921850519, 11.759814672365]]]]}, "properties": {"taskId": 501, "taskX": 7570, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.7383023693636], [-13.6669921850519, 11.759814672365], [-13.6450195288058, 11.759814672365], [-13.6450195288058, 11.7383023693636], [-13.6669921850519, 11.7383023693636]]]]}, "properties": {"taskId": 500, "taskX": 7570, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.7167883879289], [-13.6669921850519, 11.7383023693636], [-13.6450195288058, 11.7383023693636], [-13.6450195288058, 11.7167883879289], [-13.6669921850519, 11.7167883879289]]]]}, "properties": {"taskId": 499, "taskX": 7570, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.6737554013713], [-13.6669921850519, 11.6952727309636], [-13.6450195288058, 11.6952727309636], [-13.6450195288058, 11.6737554013713], [-13.6669921850519, 11.6737554013713]]]]}, "properties": {"taskId": 497, "taskX": 7570, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.652236402057], [-13.6669921850519, 11.6737554013713], [-13.6450195288058, 11.6737554013713], [-13.6450195288058, 11.652236402057], [-13.6669921850519, 11.652236402057]]]]}, "properties": {"taskId": 496, "taskX": 7570, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.6307157359267], [-13.6669921850519, 11.652236402057], [-13.6450195288058, 11.652236402057], [-13.6450195288058, 11.6307157359267], [-13.6669921850519, 11.6307157359267]]]]}, "properties": {"taskId": 495, "taskX": 7570, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.6091934058879], [-13.6669921850519, 11.6307157359267], [-13.6450195288058, 11.6307157359267], [-13.6450195288058, 11.6091934058879], [-13.6669921850519, 11.6091934058879]]]]}, "properties": {"taskId": 494, "taskX": 7570, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.5876694148488], [-13.6669921850519, 11.6091934058879], [-13.6450195288058, 11.6091934058879], [-13.6450195288058, 11.5876694148488], [-13.6669921850519, 11.5876694148488]]]]}, "properties": {"taskId": 493, "taskX": 7570, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.5446164614097], [-13.6669921850519, 11.5661437657192], [-13.6450195288058, 11.5661437657192], [-13.6450195288058, 11.5446164614097], [-13.6669921850519, 11.5446164614097]]]]}, "properties": {"taskId": 491, "taskX": 7570, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.5015568988999], [-13.6669921850519, 11.5230875048322], [-13.6450195288058, 11.5230875048322], [-13.6450195288058, 11.5015568988999], [-13.6669921850519, 11.5015568988999]]]]}, "properties": {"taskId": 489, "taskX": 7570, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.480024646527], [-13.6669921850519, 11.5015568988999], [-13.6450195288058, 11.5015568988999], [-13.6450195288058, 11.480024646527], [-13.6669921850519, 11.480024646527]]]]}, "properties": {"taskId": 488, "taskX": 7570, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.4584907506287], [-13.6669921850519, 11.480024646527], [-13.6450195288058, 11.480024646527], [-13.6450195288058, 11.4584907506287], [-13.6669921850519, 11.4584907506287]]]]}, "properties": {"taskId": 487, "taskX": 7570, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.4369552141218], [-13.6669921850519, 11.4584907506287], [-13.6450195288058, 11.4584907506287], [-13.6450195288058, 11.4369552141218], [-13.6669921850519, 11.4369552141218]]]]}, "properties": {"taskId": 486, "taskX": 7570, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.4154180399237], [-13.6669921850519, 11.4369552141218], [-13.6450195288058, 11.4369552141218], [-13.6450195288058, 11.4154180399237], [-13.6669921850519, 11.4154180399237]]]]}, "properties": {"taskId": 485, "taskX": 7570, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.3938792309534], [-13.6669921850519, 11.4154180399237], [-13.6450195288058, 11.4154180399237], [-13.6450195288058, 11.3938792309534], [-13.6669921850519, 11.3938792309534]]]]}, "properties": {"taskId": 484, "taskX": 7570, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.3723387901308], [-13.6669921850519, 11.3938792309534], [-13.6450195288058, 11.3938792309534], [-13.6450195288058, 11.3723387901308], [-13.6669921850519, 11.3723387901308]]]]}, "properties": {"taskId": 483, "taskX": 7570, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.3507967203771], [-13.6669921850519, 11.3723387901308], [-13.6450195288058, 11.3723387901308], [-13.6450195288058, 11.3507967203771], [-13.6669921850519, 11.3507967203771]]]]}, "properties": {"taskId": 482, "taskX": 7570, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.3292530246144], [-13.6669921850519, 11.3507967203771], [-13.6450195288058, 11.3507967203771], [-13.6450195288058, 11.3292530246144], [-13.6669921850519, 11.3292530246144]]]]}, "properties": {"taskId": 481, "taskX": 7570, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6669921850519, 11.3077077057662], [-13.6669921850519, 11.3292530246144], [-13.6450195288058, 11.3292530246144], [-13.6450195288058, 11.3077077057662], [-13.6669921850519, 11.3077077057662]]]]}, "properties": {"taskId": 480, "taskX": 7570, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 12.2326548348556], [-13.6889648412979, 12.2541277354958], [-13.6669921850519, 12.2541277354958], [-13.6669921850519, 12.2326548348556], [-13.6889648412979, 12.2326548348556]]]]}, "properties": {"taskId": 478, "taskX": 7569, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 12.1897038018535], [-13.6889648412979, 12.2111801893498], [-13.6669921850519, 12.2111801893498], [-13.6669921850519, 12.1897038018535], [-13.6889648412979, 12.1897038018535]]]]}, "properties": {"taskId": 476, "taskX": 7569, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 12.1682256752432], [-13.6889648412979, 12.1897038018535], [-13.6669921850519, 12.1897038018535], [-13.6669921850519, 12.1682256752432], [-13.6889648412979, 12.1682256752432]]]]}, "properties": {"taskId": 475, "taskX": 7569, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 12.1467458123965], [-13.6889648412979, 12.1682256752432], [-13.6669921850519, 12.1682256752432], [-13.6669921850519, 12.1467458123965], [-13.6889648412979, 12.1467458123965]]]]}, "properties": {"taskId": 474, "taskX": 7569, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 12.1252642161921], [-13.6889648412979, 12.1467458123965], [-13.6669921850519, 12.1467458123965], [-13.6669921850519, 12.1252642161921], [-13.6889648412979, 12.1252642161921]]]]}, "properties": {"taskId": 473, "taskX": 7569, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 12.0822958352314], [-13.6889648412979, 12.10378088951], [-13.6669921850519, 12.10378088951], [-13.6669921850519, 12.0822958352314], [-13.6889648412979, 12.0822958352314]]]]}, "properties": {"taskId": 471, "taskX": 7569, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 12.10378088951], [-13.7329101537901, 12.1252642161921], [-13.710937497544, 12.1252642161921], [-13.710937497544, 12.10378088951], [-13.7329101537901, 12.10378088951]]]]}, "properties": {"taskId": 382, "taskX": 7567, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 12.0822958352314], [-13.7329101537901, 12.10378088951], [-13.710937497544, 12.10378088951], [-13.710937497544, 12.0822958352314], [-13.7329101537901, 12.0822958352314]]]]}, "properties": {"taskId": 381, "taskX": 7567, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 12.0608090562388], [-13.7329101537901, 12.0822958352314], [-13.710937497544, 12.0822958352314], [-13.710937497544, 12.0608090562388], [-13.7329101537901, 12.0608090562388]]]]}, "properties": {"taskId": 380, "taskX": 7567, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 12.0393205554158], [-13.7329101537901, 12.0608090562388], [-13.710937497544, 12.0608090562388], [-13.710937497544, 12.0393205554158], [-13.7329101537901, 12.0393205554158]]]]}, "properties": {"taskId": 379, "taskX": 7567, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 12.0178303356471], [-13.7329101537901, 12.0393205554158], [-13.710937497544, 12.0393205554158], [-13.710937497544, 12.0178303356471], [-13.7329101537901, 12.0178303356471]]]]}, "properties": {"taskId": 378, "taskX": 7567, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.9963383998188], [-13.7329101537901, 12.0178303356471], [-13.710937497544, 12.0178303356471], [-13.710937497544, 11.9963383998188], [-13.7329101537901, 11.9963383998188]]]]}, "properties": {"taskId": 377, "taskX": 7567, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.9748447508181], [-13.7329101537901, 11.9963383998188], [-13.710937497544, 11.9963383998188], [-13.710937497544, 11.9748447508181], [-13.7329101537901, 11.9748447508181]]]]}, "properties": {"taskId": 376, "taskX": 7567, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.9533493915333], [-13.7329101537901, 11.9748447508181], [-13.710937497544, 11.9748447508181], [-13.710937497544, 11.9533493915333], [-13.7329101537901, 11.9533493915333]]]]}, "properties": {"taskId": 375, "taskX": 7567, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.9318523248542], [-13.7329101537901, 11.9533493915333], [-13.710937497544, 11.9533493915333], [-13.710937497544, 11.9318523248542], [-13.7329101537901, 11.9318523248542]]]]}, "properties": {"taskId": 374, "taskX": 7567, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.9103535536714], [-13.7329101537901, 11.9318523248542], [-13.710937497544, 11.9318523248542], [-13.710937497544, 11.9103535536714], [-13.7329101537901, 11.9103535536714]]]]}, "properties": {"taskId": 373, "taskX": 7567, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.888853080877], [-13.7329101537901, 11.9103535536714], [-13.710937497544, 11.9103535536714], [-13.710937497544, 11.888853080877], [-13.7329101537901, 11.888853080877]]]]}, "properties": {"taskId": 372, "taskX": 7567, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.867350909364], [-13.7329101537901, 11.888853080877], [-13.710937497544, 11.888853080877], [-13.710937497544, 11.867350909364], [-13.7329101537901, 11.867350909364]]]]}, "properties": {"taskId": 371, "taskX": 7567, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.8458470420268], [-13.7329101537901, 11.867350909364], [-13.710937497544, 11.867350909364], [-13.710937497544, 11.8458470420268], [-13.7329101537901, 11.8458470420268]]]]}, "properties": {"taskId": 370, "taskX": 7567, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.8243414817611], [-13.7329101537901, 11.8458470420268], [-13.710937497544, 11.8458470420268], [-13.710937497544, 11.8243414817611], [-13.7329101537901, 11.8243414817611]]]]}, "properties": {"taskId": 369, "taskX": 7567, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.8028342314634], [-13.7329101537901, 11.8243414817611], [-13.710937497544, 11.8243414817611], [-13.710937497544, 11.8028342314634], [-13.7329101537901, 11.8028342314634]]]]}, "properties": {"taskId": 368, "taskX": 7567, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.7813252940317], [-13.7329101537901, 11.8028342314634], [-13.710937497544, 11.8028342314634], [-13.710937497544, 11.7813252940317], [-13.7329101537901, 11.7813252940317]]]]}, "properties": {"taskId": 367, "taskX": 7567, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.759814672365], [-13.7329101537901, 11.7813252940317], [-13.710937497544, 11.7813252940317], [-13.710937497544, 11.759814672365], [-13.7329101537901, 11.759814672365]]]]}, "properties": {"taskId": 366, "taskX": 7567, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.7383023693636], [-13.7329101537901, 11.759814672365], [-13.710937497544, 11.759814672365], [-13.710937497544, 11.7383023693636], [-13.7329101537901, 11.7383023693636]]]]}, "properties": {"taskId": 365, "taskX": 7567, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.6952727309636], [-13.7329101537901, 11.7167883879289], [-13.710937497544, 11.7167883879289], [-13.710937497544, 11.6952727309636], [-13.7329101537901, 11.6952727309636]]]]}, "properties": {"taskId": 363, "taskX": 7567, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.6737554013713], [-13.7329101537901, 11.6952727309636], [-13.710937497544, 11.6952727309636], [-13.710937497544, 11.6737554013713], [-13.7329101537901, 11.6737554013713]]]]}, "properties": {"taskId": 362, "taskX": 7567, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.652236402057], [-13.7329101537901, 11.6737554013713], [-13.710937497544, 11.6737554013713], [-13.710937497544, 11.652236402057], [-13.7329101537901, 11.652236402057]]]]}, "properties": {"taskId": 361, "taskX": 7567, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.6307157359267], [-13.7329101537901, 11.652236402057], [-13.710937497544, 11.652236402057], [-13.710937497544, 11.6307157359267], [-13.7329101537901, 11.6307157359267]]]]}, "properties": {"taskId": 360, "taskX": 7567, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.6091934058879], [-13.7329101537901, 11.6307157359267], [-13.710937497544, 11.6307157359267], [-13.710937497544, 11.6091934058879], [-13.7329101537901, 11.6091934058879]]]]}, "properties": {"taskId": 359, "taskX": 7567, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.5876694148488], [-13.7329101537901, 11.6091934058879], [-13.710937497544, 11.6091934058879], [-13.710937497544, 11.5876694148488], [-13.7329101537901, 11.5876694148488]]]]}, "properties": {"taskId": 358, "taskX": 7567, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.5661437657192], [-13.7329101537901, 11.5876694148488], [-13.710937497544, 11.5876694148488], [-13.710937497544, 11.5661437657192], [-13.7329101537901, 11.5661437657192]]]]}, "properties": {"taskId": 357, "taskX": 7567, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.5446164614097], [-13.7329101537901, 11.5661437657192], [-13.710937497544, 11.5661437657192], [-13.710937497544, 11.5446164614097], [-13.7329101537901, 11.5446164614097]]]]}, "properties": {"taskId": 356, "taskX": 7567, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.5230875048322], [-13.7329101537901, 11.5446164614097], [-13.710937497544, 11.5446164614097], [-13.710937497544, 11.5230875048322], [-13.7329101537901, 11.5230875048322]]]]}, "properties": {"taskId": 355, "taskX": 7567, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.5015568988999], [-13.7329101537901, 11.5230875048322], [-13.710937497544, 11.5230875048322], [-13.710937497544, 11.5015568988999], [-13.7329101537901, 11.5015568988999]]]]}, "properties": {"taskId": 354, "taskX": 7567, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.480024646527], [-13.7329101537901, 11.5015568988999], [-13.710937497544, 11.5015568988999], [-13.710937497544, 11.480024646527], [-13.7329101537901, 11.480024646527]]]]}, "properties": {"taskId": 353, "taskX": 7567, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.4584907506287], [-13.7329101537901, 11.480024646527], [-13.710937497544, 11.480024646527], [-13.710937497544, 11.4584907506287], [-13.7329101537901, 11.4584907506287]]]]}, "properties": {"taskId": 352, "taskX": 7567, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.4369552141218], [-13.7329101537901, 11.4584907506287], [-13.710937497544, 11.4584907506287], [-13.710937497544, 11.4369552141218], [-13.7329101537901, 11.4369552141218]]]]}, "properties": {"taskId": 351, "taskX": 7567, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.4154180399237], [-13.7329101537901, 11.4369552141218], [-13.710937497544, 11.4369552141218], [-13.710937497544, 11.4154180399237], [-13.7329101537901, 11.4154180399237]]]]}, "properties": {"taskId": 350, "taskX": 7567, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.3938792309534], [-13.7329101537901, 11.4154180399237], [-13.710937497544, 11.4154180399237], [-13.710937497544, 11.3938792309534], [-13.7329101537901, 11.3938792309534]]]]}, "properties": {"taskId": 349, "taskX": 7567, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.3723387901308], [-13.7329101537901, 11.3938792309534], [-13.710937497544, 11.3938792309534], [-13.710937497544, 11.3723387901308], [-13.7329101537901, 11.3723387901308]]]]}, "properties": {"taskId": 348, "taskX": 7567, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.3507967203771], [-13.7329101537901, 11.3723387901308], [-13.710937497544, 11.3723387901308], [-13.710937497544, 11.3507967203771], [-13.7329101537901, 11.3507967203771]]]]}, "properties": {"taskId": 347, "taskX": 7567, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 11.3292530246144], [-13.7329101537901, 11.3507967203771], [-13.710937497544, 11.3507967203771], [-13.710937497544, 11.3292530246144], [-13.7329101537901, 11.3292530246144]]]]}, "properties": {"taskId": 346, "taskX": 7567, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 12.2326548348556], [-13.7548828100361, 12.2541277354958], [-13.7329101537901, 12.2541277354958], [-13.7329101537901, 12.2326548348556], [-13.7548828100361, 12.2326548348556]]]]}, "properties": {"taskId": 344, "taskX": 7566, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 12.2111801893498], [-13.7548828100361, 12.2326548348556], [-13.7329101537901, 12.2326548348556], [-13.7329101537901, 12.2111801893498], [-13.7548828100361, 12.2111801893498]]]]}, "properties": {"taskId": 343, "taskX": 7566, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 12.1897038018535], [-13.7548828100361, 12.2111801893498], [-13.7329101537901, 12.2111801893498], [-13.7329101537901, 12.1897038018535], [-13.7548828100361, 12.1897038018535]]]]}, "properties": {"taskId": 342, "taskX": 7566, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 12.1682256752432], [-13.7548828100361, 12.1897038018535], [-13.7329101537901, 12.1897038018535], [-13.7329101537901, 12.1682256752432], [-13.7548828100361, 12.1682256752432]]]]}, "properties": {"taskId": 341, "taskX": 7566, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 12.1467458123965], [-13.7548828100361, 12.1682256752432], [-13.7329101537901, 12.1682256752432], [-13.7329101537901, 12.1467458123965], [-13.7548828100361, 12.1467458123965]]]]}, "properties": {"taskId": 340, "taskX": 7566, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 12.1252642161921], [-13.7548828100361, 12.1467458123965], [-13.7329101537901, 12.1467458123965], [-13.7329101537901, 12.1252642161921], [-13.7548828100361, 12.1252642161921]]]]}, "properties": {"taskId": 339, "taskX": 7566, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 12.10378088951], [-13.7548828100361, 12.1252642161921], [-13.7329101537901, 12.1252642161921], [-13.7329101537901, 12.10378088951], [-13.7548828100361, 12.10378088951]]]]}, "properties": {"taskId": 338, "taskX": 7566, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 12.0822958352314], [-13.7548828100361, 12.10378088951], [-13.7329101537901, 12.10378088951], [-13.7329101537901, 12.0822958352314], [-13.7548828100361, 12.0822958352314]]]]}, "properties": {"taskId": 337, "taskX": 7566, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 12.0608090562388], [-13.7548828100361, 12.0822958352314], [-13.7329101537901, 12.0822958352314], [-13.7329101537901, 12.0608090562388], [-13.7548828100361, 12.0608090562388]]]]}, "properties": {"taskId": 336, "taskX": 7566, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 12.0393205554158], [-13.7548828100361, 12.0608090562388], [-13.7329101537901, 12.0608090562388], [-13.7329101537901, 12.0393205554158], [-13.7548828100361, 12.0393205554158]]]]}, "properties": {"taskId": 335, "taskX": 7566, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 12.0178303356471], [-13.7548828100361, 12.0393205554158], [-13.7329101537901, 12.0393205554158], [-13.7329101537901, 12.0178303356471], [-13.7548828100361, 12.0178303356471]]]]}, "properties": {"taskId": 334, "taskX": 7566, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 11.9963383998188], [-13.7548828100361, 12.0178303356471], [-13.7329101537901, 12.0178303356471], [-13.7329101537901, 11.9963383998188], [-13.7548828100361, 11.9963383998188]]]]}, "properties": {"taskId": 333, "taskX": 7566, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 11.6952727309636], [-13.7548828100361, 11.7167883879289], [-13.7329101537901, 11.7167883879289], [-13.7329101537901, 11.6952727309636], [-13.7548828100361, 11.6952727309636]]]]}, "properties": {"taskId": 332, "taskX": 7566, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 11.6737554013713], [-13.7548828100361, 11.6952727309636], [-13.7329101537901, 11.6952727309636], [-13.7329101537901, 11.6737554013713], [-13.7548828100361, 11.6737554013713]]]]}, "properties": {"taskId": 331, "taskX": 7566, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 11.652236402057], [-13.7548828100361, 11.6737554013713], [-13.7329101537901, 11.6737554013713], [-13.7329101537901, 11.652236402057], [-13.7548828100361, 11.652236402057]]]]}, "properties": {"taskId": 330, "taskX": 7566, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 11.6307157359267], [-13.7548828100361, 11.652236402057], [-13.7329101537901, 11.652236402057], [-13.7329101537901, 11.6307157359267], [-13.7548828100361, 11.6307157359267]]]]}, "properties": {"taskId": 329, "taskX": 7566, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 11.6091934058879], [-13.7548828100361, 11.6307157359267], [-13.7329101537901, 11.6307157359267], [-13.7329101537901, 11.6091934058879], [-13.7548828100361, 11.6091934058879]]]]}, "properties": {"taskId": 328, "taskX": 7566, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 11.5876694148488], [-13.7548828100361, 11.6091934058879], [-13.7329101537901, 11.6091934058879], [-13.7329101537901, 11.5876694148488], [-13.7548828100361, 11.5876694148488]]]]}, "properties": {"taskId": 327, "taskX": 7566, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 11.5661437657192], [-13.7548828100361, 11.5876694148488], [-13.7329101537901, 11.5876694148488], [-13.7329101537901, 11.5661437657192], [-13.7548828100361, 11.5661437657192]]]]}, "properties": {"taskId": 326, "taskX": 7566, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 11.5446164614097], [-13.7548828100361, 11.5661437657192], [-13.7329101537901, 11.5661437657192], [-13.7329101537901, 11.5446164614097], [-13.7548828100361, 11.5446164614097]]]]}, "properties": {"taskId": 325, "taskX": 7566, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 11.5230875048322], [-13.7548828100361, 11.5446164614097], [-13.7329101537901, 11.5446164614097], [-13.7329101537901, 11.5230875048322], [-13.7548828100361, 11.5230875048322]]]]}, "properties": {"taskId": 324, "taskX": 7566, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 11.5015568988999], [-13.7548828100361, 11.5230875048322], [-13.7329101537901, 11.5230875048322], [-13.7329101537901, 11.5015568988999], [-13.7548828100361, 11.5015568988999]]]]}, "properties": {"taskId": 323, "taskX": 7566, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 11.480024646527], [-13.7548828100361, 11.5015568988999], [-13.7329101537901, 11.5015568988999], [-13.7329101537901, 11.480024646527], [-13.7548828100361, 11.480024646527]]]]}, "properties": {"taskId": 322, "taskX": 7566, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 11.4369552141218], [-13.7548828100361, 11.4584907506287], [-13.7329101537901, 11.4584907506287], [-13.7329101537901, 11.4369552141218], [-13.7548828100361, 11.4369552141218]]]]}, "properties": {"taskId": 320, "taskX": 7566, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 11.4154180399237], [-13.7548828100361, 11.4369552141218], [-13.7329101537901, 11.4369552141218], [-13.7329101537901, 11.4154180399237], [-13.7548828100361, 11.4154180399237]]]]}, "properties": {"taskId": 319, "taskX": 7566, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 11.3938792309534], [-13.7548828100361, 11.4154180399237], [-13.7329101537901, 11.4154180399237], [-13.7329101537901, 11.3938792309534], [-13.7548828100361, 11.3938792309534]]]]}, "properties": {"taskId": 318, "taskX": 7566, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 11.3723387901308], [-13.7548828100361, 11.3938792309534], [-13.7329101537901, 11.3938792309534], [-13.7329101537901, 11.3723387901308], [-13.7548828100361, 11.3723387901308]]]]}, "properties": {"taskId": 317, "taskX": 7566, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 11.3292530246144], [-13.7548828100361, 11.3507967203771], [-13.7329101537901, 11.3507967203771], [-13.7329101537901, 11.3292530246144], [-13.7548828100361, 11.3292530246144]]]]}, "properties": {"taskId": 315, "taskX": 7566, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7548828100361, 11.3077077057662], [-13.7548828100361, 11.3292530246144], [-13.7329101537901, 11.3292530246144], [-13.7329101537901, 11.3077077057662], [-13.7548828100361, 11.3077077057662]]]]}, "properties": {"taskId": 314, "taskX": 7566, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 12.2541277354958], [-13.7768554662822, 12.2755988883965], [-13.7548828100361, 12.2755988883965], [-13.7548828100361, 12.2541277354958], [-13.7768554662822, 12.2541277354958]]]]}, "properties": {"taskId": 312, "taskX": 7565, "taskY": 8754, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 12.2326548348556], [-13.7768554662822, 12.2541277354958], [-13.7548828100361, 12.2541277354958], [-13.7548828100361, 12.2326548348556], [-13.7768554662822, 12.2326548348556]]]]}, "properties": {"taskId": 311, "taskX": 7565, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 12.2111801893498], [-13.7768554662822, 12.2326548348556], [-13.7548828100361, 12.2326548348556], [-13.7548828100361, 12.2111801893498], [-13.7768554662822, 12.2111801893498]]]]}, "properties": {"taskId": 310, "taskX": 7565, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 12.1897038018535], [-13.7768554662822, 12.2111801893498], [-13.7548828100361, 12.2111801893498], [-13.7548828100361, 12.1897038018535], [-13.7768554662822, 12.1897038018535]]]]}, "properties": {"taskId": 309, "taskX": 7565, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 12.1682256752432], [-13.7768554662822, 12.1897038018535], [-13.7548828100361, 12.1897038018535], [-13.7548828100361, 12.1682256752432], [-13.7768554662822, 12.1682256752432]]]]}, "properties": {"taskId": 308, "taskX": 7565, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 12.1467458123965], [-13.7768554662822, 12.1682256752432], [-13.7548828100361, 12.1682256752432], [-13.7548828100361, 12.1467458123965], [-13.7768554662822, 12.1467458123965]]]]}, "properties": {"taskId": 307, "taskX": 7565, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 12.1252642161921], [-13.7768554662822, 12.1467458123965], [-13.7548828100361, 12.1467458123965], [-13.7548828100361, 12.1252642161921], [-13.7768554662822, 12.1252642161921]]]]}, "properties": {"taskId": 306, "taskX": 7565, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 12.10378088951], [-13.7768554662822, 12.1252642161921], [-13.7548828100361, 12.1252642161921], [-13.7548828100361, 12.10378088951], [-13.7768554662822, 12.10378088951]]]]}, "properties": {"taskId": 305, "taskX": 7565, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 12.0822958352314], [-13.7768554662822, 12.10378088951], [-13.7548828100361, 12.10378088951], [-13.7548828100361, 12.0822958352314], [-13.7768554662822, 12.0822958352314]]]]}, "properties": {"taskId": 304, "taskX": 7565, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 12.0608090562388], [-13.7768554662822, 12.0822958352314], [-13.7548828100361, 12.0822958352314], [-13.7548828100361, 12.0608090562388], [-13.7768554662822, 12.0608090562388]]]]}, "properties": {"taskId": 303, "taskX": 7565, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 12.0393205554158], [-13.7768554662822, 12.0608090562388], [-13.7548828100361, 12.0608090562388], [-13.7548828100361, 12.0393205554158], [-13.7768554662822, 12.0393205554158]]]]}, "properties": {"taskId": 302, "taskX": 7565, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 12.0178303356471], [-13.7768554662822, 12.0393205554158], [-13.7548828100361, 12.0393205554158], [-13.7548828100361, 12.0178303356471], [-13.7768554662822, 12.0178303356471]]]]}, "properties": {"taskId": 301, "taskX": 7565, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 11.9963383998188], [-13.7768554662822, 12.0178303356471], [-13.7548828100361, 12.0178303356471], [-13.7548828100361, 11.9963383998188], [-13.7768554662822, 11.9963383998188]]]]}, "properties": {"taskId": 300, "taskX": 7565, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 11.6952727309636], [-13.7768554662822, 11.7167883879289], [-13.7548828100361, 11.7167883879289], [-13.7548828100361, 11.6952727309636], [-13.7768554662822, 11.6952727309636]]]]}, "properties": {"taskId": 299, "taskX": 7565, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 11.652236402057], [-13.7768554662822, 11.6737554013713], [-13.7548828100361, 11.6737554013713], [-13.7548828100361, 11.652236402057], [-13.7768554662822, 11.652236402057]]]]}, "properties": {"taskId": 297, "taskX": 7565, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 11.6307157359267], [-13.7768554662822, 11.652236402057], [-13.7548828100361, 11.652236402057], [-13.7548828100361, 11.6307157359267], [-13.7768554662822, 11.6307157359267]]]]}, "properties": {"taskId": 296, "taskX": 7565, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 11.6091934058879], [-13.7768554662822, 11.6307157359267], [-13.7548828100361, 11.6307157359267], [-13.7548828100361, 11.6091934058879], [-13.7768554662822, 11.6091934058879]]]]}, "properties": {"taskId": 295, "taskX": 7565, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 11.5876694148488], [-13.7768554662822, 11.6091934058879], [-13.7548828100361, 11.6091934058879], [-13.7548828100361, 11.5876694148488], [-13.7768554662822, 11.5876694148488]]]]}, "properties": {"taskId": 294, "taskX": 7565, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 11.5661437657192], [-13.7768554662822, 11.5876694148488], [-13.7548828100361, 11.5876694148488], [-13.7548828100361, 11.5661437657192], [-13.7768554662822, 11.5661437657192]]]]}, "properties": {"taskId": 293, "taskX": 7565, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 11.5446164614097], [-13.7768554662822, 11.5661437657192], [-13.7548828100361, 11.5661437657192], [-13.7548828100361, 11.5446164614097], [-13.7768554662822, 11.5446164614097]]]]}, "properties": {"taskId": 292, "taskX": 7565, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 11.5230875048322], [-13.7768554662822, 11.5446164614097], [-13.7548828100361, 11.5446164614097], [-13.7548828100361, 11.5230875048322], [-13.7768554662822, 11.5230875048322]]]]}, "properties": {"taskId": 291, "taskX": 7565, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 11.5015568988999], [-13.7768554662822, 11.5230875048322], [-13.7548828100361, 11.5230875048322], [-13.7548828100361, 11.5015568988999], [-13.7768554662822, 11.5015568988999]]]]}, "properties": {"taskId": 290, "taskX": 7565, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 11.480024646527], [-13.7768554662822, 11.5015568988999], [-13.7548828100361, 11.5015568988999], [-13.7548828100361, 11.480024646527], [-13.7768554662822, 11.480024646527]]]]}, "properties": {"taskId": 289, "taskX": 7565, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 11.4584907506287], [-13.7768554662822, 11.480024646527], [-13.7548828100361, 11.480024646527], [-13.7548828100361, 11.4584907506287], [-13.7768554662822, 11.4584907506287]]]]}, "properties": {"taskId": 288, "taskX": 7565, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 11.4369552141218], [-13.7768554662822, 11.4584907506287], [-13.7548828100361, 11.4584907506287], [-13.7548828100361, 11.4369552141218], [-13.7768554662822, 11.4369552141218]]]]}, "properties": {"taskId": 287, "taskX": 7565, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 11.4154180399237], [-13.7768554662822, 11.4369552141218], [-13.7548828100361, 11.4369552141218], [-13.7548828100361, 11.4154180399237], [-13.7768554662822, 11.4154180399237]]]]}, "properties": {"taskId": 286, "taskX": 7565, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 11.3938792309534], [-13.7768554662822, 11.4154180399237], [-13.7548828100361, 11.4154180399237], [-13.7548828100361, 11.3938792309534], [-13.7768554662822, 11.3938792309534]]]]}, "properties": {"taskId": 285, "taskX": 7565, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 11.3723387901308], [-13.7768554662822, 11.3938792309534], [-13.7548828100361, 11.3938792309534], [-13.7548828100361, 11.3723387901308], [-13.7768554662822, 11.3723387901308]]]]}, "properties": {"taskId": 284, "taskX": 7565, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 11.3507967203771], [-13.7768554662822, 11.3723387901308], [-13.7548828100361, 11.3723387901308], [-13.7548828100361, 11.3507967203771], [-13.7768554662822, 11.3507967203771]]]]}, "properties": {"taskId": 283, "taskX": 7565, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 11.3292530246144], [-13.7768554662822, 11.3507967203771], [-13.7548828100361, 11.3507967203771], [-13.7548828100361, 11.3292530246144], [-13.7768554662822, 11.3292530246144]]]]}, "properties": {"taskId": 282, "taskX": 7565, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7768554662822, 11.3077077057662], [-13.7768554662822, 11.3292530246144], [-13.7548828100361, 11.3292530246144], [-13.7548828100361, 11.3077077057662], [-13.7768554662822, 11.3077077057662]]]]}, "properties": {"taskId": 281, "taskX": 7565, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 12.2755988883965], [-13.7988281225283, 12.2970682906849], [-13.7768554662822, 12.2970682906849], [-13.7768554662822, 12.2755988883965], [-13.7988281225283, 12.2755988883965]]]]}, "properties": {"taskId": 280, "taskX": 7564, "taskY": 8755, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 12.2541277354958], [-13.7988281225283, 12.2755988883965], [-13.7768554662822, 12.2755988883965], [-13.7768554662822, 12.2541277354958], [-13.7988281225283, 12.2541277354958]]]]}, "properties": {"taskId": 279, "taskX": 7564, "taskY": 8754, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 12.1897038018535], [-13.7988281225283, 12.2111801893498], [-13.7768554662822, 12.2111801893498], [-13.7768554662822, 12.1897038018535], [-13.7988281225283, 12.1897038018535]]]]}, "properties": {"taskId": 276, "taskX": 7564, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 12.1467458123965], [-13.7988281225283, 12.1682256752432], [-13.7768554662822, 12.1682256752432], [-13.7768554662822, 12.1467458123965], [-13.7988281225283, 12.1467458123965]]]]}, "properties": {"taskId": 274, "taskX": 7564, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 12.1252642161921], [-13.7988281225283, 12.1467458123965], [-13.7768554662822, 12.1467458123965], [-13.7768554662822, 12.1252642161921], [-13.7988281225283, 12.1252642161921]]]]}, "properties": {"taskId": 273, "taskX": 7564, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 12.10378088951], [-13.7988281225283, 12.1252642161921], [-13.7768554662822, 12.1252642161921], [-13.7768554662822, 12.10378088951], [-13.7988281225283, 12.10378088951]]]]}, "properties": {"taskId": 272, "taskX": 7564, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 12.0822958352314], [-13.7988281225283, 12.10378088951], [-13.7768554662822, 12.10378088951], [-13.7768554662822, 12.0822958352314], [-13.7988281225283, 12.0822958352314]]]]}, "properties": {"taskId": 271, "taskX": 7564, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 12.0608090562388], [-13.7988281225283, 12.0822958352314], [-13.7768554662822, 12.0822958352314], [-13.7768554662822, 12.0608090562388], [-13.7988281225283, 12.0608090562388]]]]}, "properties": {"taskId": 270, "taskX": 7564, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 12.0393205554158], [-13.7988281225283, 12.0608090562388], [-13.7768554662822, 12.0608090562388], [-13.7768554662822, 12.0393205554158], [-13.7988281225283, 12.0393205554158]]]]}, "properties": {"taskId": 269, "taskX": 7564, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 12.0178303356471], [-13.7988281225283, 12.0393205554158], [-13.7768554662822, 12.0393205554158], [-13.7768554662822, 12.0178303356471], [-13.7988281225283, 12.0178303356471]]]]}, "properties": {"taskId": 268, "taskX": 7564, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 11.7167883879289], [-13.7988281225283, 11.7383023693636], [-13.7768554662822, 11.7383023693636], [-13.7768554662822, 11.7167883879289], [-13.7988281225283, 11.7167883879289]]]]}, "properties": {"taskId": 267, "taskX": 7564, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 11.6952727309636], [-13.7988281225283, 11.7167883879289], [-13.7768554662822, 11.7167883879289], [-13.7768554662822, 11.6952727309636], [-13.7988281225283, 11.6952727309636]]]]}, "properties": {"taskId": 266, "taskX": 7564, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 11.6737554013713], [-13.7988281225283, 11.6952727309636], [-13.7768554662822, 11.6952727309636], [-13.7768554662822, 11.6737554013713], [-13.7988281225283, 11.6737554013713]]]]}, "properties": {"taskId": 265, "taskX": 7564, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 11.652236402057], [-13.7988281225283, 11.6737554013713], [-13.7768554662822, 11.6737554013713], [-13.7768554662822, 11.652236402057], [-13.7988281225283, 11.652236402057]]]]}, "properties": {"taskId": 264, "taskX": 7564, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 11.6307157359267], [-13.7988281225283, 11.652236402057], [-13.7768554662822, 11.652236402057], [-13.7768554662822, 11.6307157359267], [-13.7988281225283, 11.6307157359267]]]]}, "properties": {"taskId": 263, "taskX": 7564, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 11.6091934058879], [-13.7988281225283, 11.6307157359267], [-13.7768554662822, 11.6307157359267], [-13.7768554662822, 11.6091934058879], [-13.7988281225283, 11.6091934058879]]]]}, "properties": {"taskId": 262, "taskX": 7564, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 11.5876694148488], [-13.7988281225283, 11.6091934058879], [-13.7768554662822, 11.6091934058879], [-13.7768554662822, 11.5876694148488], [-13.7988281225283, 11.5876694148488]]]]}, "properties": {"taskId": 261, "taskX": 7564, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 11.5661437657192], [-13.7988281225283, 11.5876694148488], [-13.7768554662822, 11.5876694148488], [-13.7768554662822, 11.5661437657192], [-13.7988281225283, 11.5661437657192]]]]}, "properties": {"taskId": 260, "taskX": 7564, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 11.5446164614097], [-13.7988281225283, 11.5661437657192], [-13.7768554662822, 11.5661437657192], [-13.7768554662822, 11.5446164614097], [-13.7988281225283, 11.5446164614097]]]]}, "properties": {"taskId": 259, "taskX": 7564, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 12.1897038018535], [-13.4912109350834, 12.2111801893498], [-13.4692382788373, 12.2111801893498], [-13.4692382788373, 12.1897038018535], [-13.4912109350834, 12.1897038018535]]]]}, "properties": {"taskId": 876, "taskX": 7578, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 12.1682256752432], [-13.4912109350834, 12.1897038018535], [-13.4692382788373, 12.1897038018535], [-13.4692382788373, 12.1682256752432], [-13.4912109350834, 12.1682256752432]]]]}, "properties": {"taskId": 875, "taskX": 7578, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 12.1467458123965], [-13.4912109350834, 12.1682256752432], [-13.4692382788373, 12.1682256752432], [-13.4692382788373, 12.1467458123965], [-13.4912109350834, 12.1467458123965]]]]}, "properties": {"taskId": 874, "taskX": 7578, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 12.1252642161921], [-13.4912109350834, 12.1467458123965], [-13.4692382788373, 12.1467458123965], [-13.4692382788373, 12.1252642161921], [-13.4912109350834, 12.1252642161921]]]]}, "properties": {"taskId": 873, "taskX": 7578, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 12.10378088951], [-13.4912109350834, 12.1252642161921], [-13.4692382788373, 12.1252642161921], [-13.4692382788373, 12.10378088951], [-13.4912109350834, 12.10378088951]]]]}, "properties": {"taskId": 872, "taskX": 7578, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 12.0822958352314], [-13.4912109350834, 12.10378088951], [-13.4692382788373, 12.10378088951], [-13.4692382788373, 12.0822958352314], [-13.4912109350834, 12.0822958352314]]]]}, "properties": {"taskId": 871, "taskX": 7578, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 12.0608090562388], [-13.4912109350834, 12.0822958352314], [-13.4692382788373, 12.0822958352314], [-13.4692382788373, 12.0608090562388], [-13.4912109350834, 12.0608090562388]]]]}, "properties": {"taskId": 870, "taskX": 7578, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 12.0393205554158], [-13.4912109350834, 12.0608090562388], [-13.4692382788373, 12.0608090562388], [-13.4692382788373, 12.0393205554158], [-13.4912109350834, 12.0393205554158]]]]}, "properties": {"taskId": 869, "taskX": 7578, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 12.0178303356471], [-13.4912109350834, 12.0393205554158], [-13.4692382788373, 12.0393205554158], [-13.4692382788373, 12.0178303356471], [-13.4912109350834, 12.0178303356471]]]]}, "properties": {"taskId": 868, "taskX": 7578, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.9963383998188], [-13.4912109350834, 12.0178303356471], [-13.4692382788373, 12.0178303356471], [-13.4692382788373, 11.9963383998188], [-13.4912109350834, 11.9963383998188]]]]}, "properties": {"taskId": 867, "taskX": 7578, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.9748447508181], [-13.4912109350834, 11.9963383998188], [-13.4692382788373, 11.9963383998188], [-13.4692382788373, 11.9748447508181], [-13.4912109350834, 11.9748447508181]]]]}, "properties": {"taskId": 866, "taskX": 7578, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.9533493915333], [-13.4912109350834, 11.9748447508181], [-13.4692382788373, 11.9748447508181], [-13.4692382788373, 11.9533493915333], [-13.4912109350834, 11.9533493915333]]]]}, "properties": {"taskId": 865, "taskX": 7578, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.9318523248542], [-13.4912109350834, 11.9533493915333], [-13.4692382788373, 11.9533493915333], [-13.4692382788373, 11.9318523248542], [-13.4912109350834, 11.9318523248542]]]]}, "properties": {"taskId": 864, "taskX": 7578, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.9103535536714], [-13.4912109350834, 11.9318523248542], [-13.4692382788373, 11.9318523248542], [-13.4692382788373, 11.9103535536714], [-13.4912109350834, 11.9103535536714]]]]}, "properties": {"taskId": 863, "taskX": 7578, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.888853080877], [-13.4912109350834, 11.9103535536714], [-13.4692382788373, 11.9103535536714], [-13.4692382788373, 11.888853080877], [-13.4912109350834, 11.888853080877]]]]}, "properties": {"taskId": 862, "taskX": 7578, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.867350909364], [-13.4912109350834, 11.888853080877], [-13.4692382788373, 11.888853080877], [-13.4692382788373, 11.867350909364], [-13.4912109350834, 11.867350909364]]]]}, "properties": {"taskId": 861, "taskX": 7578, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.8458470420268], [-13.4912109350834, 11.867350909364], [-13.4692382788373, 11.867350909364], [-13.4692382788373, 11.8458470420268], [-13.4912109350834, 11.8458470420268]]]]}, "properties": {"taskId": 860, "taskX": 7578, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.8243414817611], [-13.4912109350834, 11.8458470420268], [-13.4692382788373, 11.8458470420268], [-13.4692382788373, 11.8243414817611], [-13.4912109350834, 11.8243414817611]]]]}, "properties": {"taskId": 859, "taskX": 7578, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.8028342314634], [-13.4912109350834, 11.8243414817611], [-13.4692382788373, 11.8243414817611], [-13.4692382788373, 11.8028342314634], [-13.4912109350834, 11.8028342314634]]]]}, "properties": {"taskId": 858, "taskX": 7578, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.7813252940317], [-13.4912109350834, 11.8028342314634], [-13.4692382788373, 11.8028342314634], [-13.4692382788373, 11.7813252940317], [-13.4912109350834, 11.7813252940317]]]]}, "properties": {"taskId": 857, "taskX": 7578, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.759814672365], [-13.4912109350834, 11.7813252940317], [-13.4692382788373, 11.7813252940317], [-13.4692382788373, 11.759814672365], [-13.4912109350834, 11.759814672365]]]]}, "properties": {"taskId": 856, "taskX": 7578, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.7383023693636], [-13.4912109350834, 11.759814672365], [-13.4692382788373, 11.759814672365], [-13.4692382788373, 11.7383023693636], [-13.4912109350834, 11.7383023693636]]]]}, "properties": {"taskId": 855, "taskX": 7578, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.7167883879289], [-13.4912109350834, 11.7383023693636], [-13.4692382788373, 11.7383023693636], [-13.4692382788373, 11.7167883879289], [-13.4912109350834, 11.7167883879289]]]]}, "properties": {"taskId": 854, "taskX": 7578, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.6952727309636], [-13.4912109350834, 11.7167883879289], [-13.4692382788373, 11.7167883879289], [-13.4692382788373, 11.6952727309636], [-13.4912109350834, 11.6952727309636]]]]}, "properties": {"taskId": 853, "taskX": 7578, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.6737554013713], [-13.4912109350834, 11.6952727309636], [-13.4692382788373, 11.6952727309636], [-13.4692382788373, 11.6737554013713], [-13.4912109350834, 11.6737554013713]]]]}, "properties": {"taskId": 852, "taskX": 7578, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.652236402057], [-13.4912109350834, 11.6737554013713], [-13.4692382788373, 11.6737554013713], [-13.4692382788373, 11.652236402057], [-13.4912109350834, 11.652236402057]]]]}, "properties": {"taskId": 851, "taskX": 7578, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.6307157359267], [-13.4912109350834, 11.652236402057], [-13.4692382788373, 11.652236402057], [-13.4692382788373, 11.6307157359267], [-13.4912109350834, 11.6307157359267]]]]}, "properties": {"taskId": 850, "taskX": 7578, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.6091934058879], [-13.4912109350834, 11.6307157359267], [-13.4692382788373, 11.6307157359267], [-13.4692382788373, 11.6091934058879], [-13.4912109350834, 11.6091934058879]]]]}, "properties": {"taskId": 849, "taskX": 7578, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.5876694148488], [-13.4912109350834, 11.6091934058879], [-13.4692382788373, 11.6091934058879], [-13.4692382788373, 11.5876694148488], [-13.4912109350834, 11.5876694148488]]]]}, "properties": {"taskId": 848, "taskX": 7578, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.5661437657192], [-13.4912109350834, 11.5876694148488], [-13.4692382788373, 11.5876694148488], [-13.4692382788373, 11.5661437657192], [-13.4912109350834, 11.5661437657192]]]]}, "properties": {"taskId": 847, "taskX": 7578, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.5446164614097], [-13.4912109350834, 11.5661437657192], [-13.4692382788373, 11.5661437657192], [-13.4692382788373, 11.5446164614097], [-13.4912109350834, 11.5446164614097]]]]}, "properties": {"taskId": 846, "taskX": 7578, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.5230875048322], [-13.4912109350834, 11.5446164614097], [-13.4692382788373, 11.5446164614097], [-13.4692382788373, 11.5230875048322], [-13.4912109350834, 11.5230875048322]]]]}, "properties": {"taskId": 845, "taskX": 7578, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.5015568988999], [-13.4912109350834, 11.5230875048322], [-13.4692382788373, 11.5230875048322], [-13.4692382788373, 11.5015568988999], [-13.4912109350834, 11.5015568988999]]]]}, "properties": {"taskId": 844, "taskX": 7578, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.480024646527], [-13.4912109350834, 11.5015568988999], [-13.4692382788373, 11.5015568988999], [-13.4692382788373, 11.480024646527], [-13.4912109350834, 11.480024646527]]]]}, "properties": {"taskId": 843, "taskX": 7578, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.4584907506287], [-13.4912109350834, 11.480024646527], [-13.4692382788373, 11.480024646527], [-13.4692382788373, 11.4584907506287], [-13.4912109350834, 11.4584907506287]]]]}, "properties": {"taskId": 842, "taskX": 7578, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.4369552141218], [-13.4912109350834, 11.4584907506287], [-13.4692382788373, 11.4584907506287], [-13.4692382788373, 11.4369552141218], [-13.4912109350834, 11.4369552141218]]]]}, "properties": {"taskId": 841, "taskX": 7578, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.4154180399237], [-13.4912109350834, 11.4369552141218], [-13.4692382788373, 11.4369552141218], [-13.4692382788373, 11.4154180399237], [-13.4912109350834, 11.4154180399237]]]]}, "properties": {"taskId": 840, "taskX": 7578, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.3938792309534], [-13.4912109350834, 11.4154180399237], [-13.4692382788373, 11.4154180399237], [-13.4692382788373, 11.3938792309534], [-13.4912109350834, 11.3938792309534]]]]}, "properties": {"taskId": 839, "taskX": 7578, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.3723387901308], [-13.4912109350834, 11.3938792309534], [-13.4692382788373, 11.3938792309534], [-13.4692382788373, 11.3723387901308], [-13.4912109350834, 11.3723387901308]]]]}, "properties": {"taskId": 838, "taskX": 7578, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 11.3507967203771], [-13.4912109350834, 11.3723387901308], [-13.4692382788373, 11.3723387901308], [-13.4692382788373, 11.3507967203771], [-13.4912109350834, 11.3507967203771]]]]}, "properties": {"taskId": 837, "taskX": 7578, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 12.3185359394895], [-13.5131835913294, 12.3400018319401], [-13.4912109350834, 12.3400018319401], [-13.4912109350834, 12.3185359394895], [-13.5131835913294, 12.3185359394895]]]]}, "properties": {"taskId": 836, "taskX": 7577, "taskY": 8757, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 12.2755988883965], [-13.5131835913294, 12.2970682906849], [-13.4912109350834, 12.2970682906849], [-13.4912109350834, 12.2755988883965], [-13.5131835913294, 12.2755988883965]]]]}, "properties": {"taskId": 834, "taskX": 7577, "taskY": 8755, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 12.2326548348556], [-13.5131835913294, 12.2541277354958], [-13.4912109350834, 12.2541277354958], [-13.4912109350834, 12.2326548348556], [-13.5131835913294, 12.2326548348556]]]]}, "properties": {"taskId": 832, "taskX": 7577, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 12.2111801893498], [-13.5131835913294, 12.2326548348556], [-13.4912109350834, 12.2326548348556], [-13.4912109350834, 12.2111801893498], [-13.5131835913294, 12.2111801893498]]]]}, "properties": {"taskId": 831, "taskX": 7577, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 12.1897038018535], [-13.5131835913294, 12.2111801893498], [-13.4912109350834, 12.2111801893498], [-13.4912109350834, 12.1897038018535], [-13.5131835913294, 12.1897038018535]]]]}, "properties": {"taskId": 830, "taskX": 7577, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 12.1682256752432], [-13.5131835913294, 12.1897038018535], [-13.4912109350834, 12.1897038018535], [-13.4912109350834, 12.1682256752432], [-13.5131835913294, 12.1682256752432]]]]}, "properties": {"taskId": 829, "taskX": 7577, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 12.1467458123965], [-13.5131835913294, 12.1682256752432], [-13.4912109350834, 12.1682256752432], [-13.4912109350834, 12.1467458123965], [-13.5131835913294, 12.1467458123965]]]]}, "properties": {"taskId": 828, "taskX": 7577, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 12.1252642161921], [-13.5131835913294, 12.1467458123965], [-13.4912109350834, 12.1467458123965], [-13.4912109350834, 12.1252642161921], [-13.5131835913294, 12.1252642161921]]]]}, "properties": {"taskId": 827, "taskX": 7577, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 12.10378088951], [-13.5131835913294, 12.1252642161921], [-13.4912109350834, 12.1252642161921], [-13.4912109350834, 12.10378088951], [-13.5131835913294, 12.10378088951]]]]}, "properties": {"taskId": 826, "taskX": 7577, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 12.0822958352314], [-13.5131835913294, 12.10378088951], [-13.4912109350834, 12.10378088951], [-13.4912109350834, 12.0822958352314], [-13.5131835913294, 12.0822958352314]]]]}, "properties": {"taskId": 825, "taskX": 7577, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 12.0608090562388], [-13.5131835913294, 12.0822958352314], [-13.4912109350834, 12.0822958352314], [-13.4912109350834, 12.0608090562388], [-13.5131835913294, 12.0608090562388]]]]}, "properties": {"taskId": 824, "taskX": 7577, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 12.0393205554158], [-13.5131835913294, 12.0608090562388], [-13.4912109350834, 12.0608090562388], [-13.4912109350834, 12.0393205554158], [-13.5131835913294, 12.0393205554158]]]]}, "properties": {"taskId": 823, "taskX": 7577, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 12.0178303356471], [-13.5131835913294, 12.0393205554158], [-13.4912109350834, 12.0393205554158], [-13.4912109350834, 12.0178303356471], [-13.5131835913294, 12.0178303356471]]]]}, "properties": {"taskId": 822, "taskX": 7577, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.9748447508181], [-13.5131835913294, 11.9963383998188], [-13.4912109350834, 11.9963383998188], [-13.4912109350834, 11.9748447508181], [-13.5131835913294, 11.9748447508181]]]]}, "properties": {"taskId": 820, "taskX": 7577, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.9533493915333], [-13.5131835913294, 11.9748447508181], [-13.4912109350834, 11.9748447508181], [-13.4912109350834, 11.9533493915333], [-13.5131835913294, 11.9533493915333]]]]}, "properties": {"taskId": 819, "taskX": 7577, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.9103535536714], [-13.5131835913294, 11.9318523248542], [-13.4912109350834, 11.9318523248542], [-13.4912109350834, 11.9103535536714], [-13.5131835913294, 11.9103535536714]]]]}, "properties": {"taskId": 817, "taskX": 7577, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.8458470420268], [-13.5131835913294, 11.867350909364], [-13.4912109350834, 11.867350909364], [-13.4912109350834, 11.8458470420268], [-13.5131835913294, 11.8458470420268]]]]}, "properties": {"taskId": 814, "taskX": 7577, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.8243414817611], [-13.5131835913294, 11.8458470420268], [-13.4912109350834, 11.8458470420268], [-13.4912109350834, 11.8243414817611], [-13.5131835913294, 11.8243414817611]]]]}, "properties": {"taskId": 813, "taskX": 7577, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.8028342314634], [-13.5131835913294, 11.8243414817611], [-13.4912109350834, 11.8243414817611], [-13.4912109350834, 11.8028342314634], [-13.5131835913294, 11.8028342314634]]]]}, "properties": {"taskId": 812, "taskX": 7577, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.7813252940317], [-13.5131835913294, 11.8028342314634], [-13.4912109350834, 11.8028342314634], [-13.4912109350834, 11.7813252940317], [-13.5131835913294, 11.7813252940317]]]]}, "properties": {"taskId": 811, "taskX": 7577, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.759814672365], [-13.5131835913294, 11.7813252940317], [-13.4912109350834, 11.7813252940317], [-13.4912109350834, 11.759814672365], [-13.5131835913294, 11.759814672365]]]]}, "properties": {"taskId": 810, "taskX": 7577, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.7383023693636], [-13.5131835913294, 11.759814672365], [-13.4912109350834, 11.759814672365], [-13.4912109350834, 11.7383023693636], [-13.5131835913294, 11.7383023693636]]]]}, "properties": {"taskId": 809, "taskX": 7577, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.7167883879289], [-13.5131835913294, 11.7383023693636], [-13.4912109350834, 11.7383023693636], [-13.4912109350834, 11.7167883879289], [-13.5131835913294, 11.7167883879289]]]]}, "properties": {"taskId": 808, "taskX": 7577, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.6952727309636], [-13.5131835913294, 11.7167883879289], [-13.4912109350834, 11.7167883879289], [-13.4912109350834, 11.6952727309636], [-13.5131835913294, 11.6952727309636]]]]}, "properties": {"taskId": 807, "taskX": 7577, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.6737554013713], [-13.5131835913294, 11.6952727309636], [-13.4912109350834, 11.6952727309636], [-13.4912109350834, 11.6737554013713], [-13.5131835913294, 11.6737554013713]]]]}, "properties": {"taskId": 806, "taskX": 7577, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.652236402057], [-13.5131835913294, 11.6737554013713], [-13.4912109350834, 11.6737554013713], [-13.4912109350834, 11.652236402057], [-13.5131835913294, 11.652236402057]]]]}, "properties": {"taskId": 805, "taskX": 7577, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.6307157359267], [-13.5131835913294, 11.652236402057], [-13.4912109350834, 11.652236402057], [-13.4912109350834, 11.6307157359267], [-13.5131835913294, 11.6307157359267]]]]}, "properties": {"taskId": 804, "taskX": 7577, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.6091934058879], [-13.5131835913294, 11.6307157359267], [-13.4912109350834, 11.6307157359267], [-13.4912109350834, 11.6091934058879], [-13.5131835913294, 11.6091934058879]]]]}, "properties": {"taskId": 803, "taskX": 7577, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.5876694148488], [-13.5131835913294, 11.6091934058879], [-13.4912109350834, 11.6091934058879], [-13.4912109350834, 11.5876694148488], [-13.5131835913294, 11.5876694148488]]]]}, "properties": {"taskId": 802, "taskX": 7577, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.5661437657192], [-13.5131835913294, 11.5876694148488], [-13.4912109350834, 11.5876694148488], [-13.4912109350834, 11.5661437657192], [-13.5131835913294, 11.5661437657192]]]]}, "properties": {"taskId": 801, "taskX": 7577, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.5446164614097], [-13.5131835913294, 11.5661437657192], [-13.4912109350834, 11.5661437657192], [-13.4912109350834, 11.5446164614097], [-13.5131835913294, 11.5446164614097]]]]}, "properties": {"taskId": 800, "taskX": 7577, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.5230875048322], [-13.5131835913294, 11.5446164614097], [-13.4912109350834, 11.5446164614097], [-13.4912109350834, 11.5230875048322], [-13.5131835913294, 11.5230875048322]]]]}, "properties": {"taskId": 799, "taskX": 7577, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.5015568988999], [-13.5131835913294, 11.5230875048322], [-13.4912109350834, 11.5230875048322], [-13.4912109350834, 11.5015568988999], [-13.5131835913294, 11.5015568988999]]]]}, "properties": {"taskId": 798, "taskX": 7577, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.480024646527], [-13.5131835913294, 11.5015568988999], [-13.4912109350834, 11.5015568988999], [-13.4912109350834, 11.480024646527], [-13.5131835913294, 11.480024646527]]]]}, "properties": {"taskId": 797, "taskX": 7577, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.4584907506287], [-13.5131835913294, 11.480024646527], [-13.4912109350834, 11.480024646527], [-13.4912109350834, 11.4584907506287], [-13.5131835913294, 11.4584907506287]]]]}, "properties": {"taskId": 796, "taskX": 7577, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.4369552141218], [-13.5131835913294, 11.4584907506287], [-13.4912109350834, 11.4584907506287], [-13.4912109350834, 11.4369552141218], [-13.5131835913294, 11.4369552141218]]]]}, "properties": {"taskId": 795, "taskX": 7577, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.4154180399237], [-13.5131835913294, 11.4369552141218], [-13.4912109350834, 11.4369552141218], [-13.4912109350834, 11.4154180399237], [-13.5131835913294, 11.4154180399237]]]]}, "properties": {"taskId": 794, "taskX": 7577, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.3938792309534], [-13.5131835913294, 11.4154180399237], [-13.4912109350834, 11.4154180399237], [-13.4912109350834, 11.3938792309534], [-13.5131835913294, 11.3938792309534]]]]}, "properties": {"taskId": 793, "taskX": 7577, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.3723387901308], [-13.5131835913294, 11.3938792309534], [-13.4912109350834, 11.3938792309534], [-13.4912109350834, 11.3723387901308], [-13.5131835913294, 11.3723387901308]]]]}, "properties": {"taskId": 792, "taskX": 7577, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5131835913294, 11.3507967203771], [-13.5131835913294, 11.3723387901308], [-13.4912109350834, 11.3723387901308], [-13.4912109350834, 11.3507967203771], [-13.5131835913294, 11.3507967203771]]]]}, "properties": {"taskId": 791, "taskX": 7577, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 12.2970682906849], [-13.5351562475755, 12.3185359394895], [-13.5131835913294, 12.3185359394895], [-13.5131835913294, 12.2970682906849], [-13.5351562475755, 12.2970682906849]]]]}, "properties": {"taskId": 790, "taskX": 7576, "taskY": 8756, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 12.2755988883965], [-13.5351562475755, 12.2970682906849], [-13.5131835913294, 12.2970682906849], [-13.5131835913294, 12.2755988883965], [-13.5351562475755, 12.2755988883965]]]]}, "properties": {"taskId": 789, "taskX": 7576, "taskY": 8755, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 12.2541277354958], [-13.5351562475755, 12.2755988883965], [-13.5131835913294, 12.2755988883965], [-13.5131835913294, 12.2541277354958], [-13.5351562475755, 12.2541277354958]]]]}, "properties": {"taskId": 788, "taskX": 7576, "taskY": 8754, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 12.2326548348556], [-13.5351562475755, 12.2541277354958], [-13.5131835913294, 12.2541277354958], [-13.5131835913294, 12.2326548348556], [-13.5351562475755, 12.2326548348556]]]]}, "properties": {"taskId": 787, "taskX": 7576, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 12.2111801893498], [-13.5351562475755, 12.2326548348556], [-13.5131835913294, 12.2326548348556], [-13.5131835913294, 12.2111801893498], [-13.5351562475755, 12.2111801893498]]]]}, "properties": {"taskId": 786, "taskX": 7576, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 12.1897038018535], [-13.5351562475755, 12.2111801893498], [-13.5131835913294, 12.2111801893498], [-13.5131835913294, 12.1897038018535], [-13.5351562475755, 12.1897038018535]]]]}, "properties": {"taskId": 785, "taskX": 7576, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 12.1682256752432], [-13.5351562475755, 12.1897038018535], [-13.5131835913294, 12.1897038018535], [-13.5131835913294, 12.1682256752432], [-13.5351562475755, 12.1682256752432]]]]}, "properties": {"taskId": 784, "taskX": 7576, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 12.1467458123965], [-13.5351562475755, 12.1682256752432], [-13.5131835913294, 12.1682256752432], [-13.5131835913294, 12.1467458123965], [-13.5351562475755, 12.1467458123965]]]]}, "properties": {"taskId": 783, "taskX": 7576, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 12.1252642161921], [-13.5351562475755, 12.1467458123965], [-13.5131835913294, 12.1467458123965], [-13.5131835913294, 12.1252642161921], [-13.5351562475755, 12.1252642161921]]]]}, "properties": {"taskId": 782, "taskX": 7576, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 12.10378088951], [-13.5351562475755, 12.1252642161921], [-13.5131835913294, 12.1252642161921], [-13.5131835913294, 12.10378088951], [-13.5351562475755, 12.10378088951]]]]}, "properties": {"taskId": 781, "taskX": 7576, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 12.0822958352314], [-13.5351562475755, 12.10378088951], [-13.5131835913294, 12.10378088951], [-13.5131835913294, 12.0822958352314], [-13.5351562475755, 12.0822958352314]]]]}, "properties": {"taskId": 780, "taskX": 7576, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 12.0608090562388], [-13.5351562475755, 12.0822958352314], [-13.5131835913294, 12.0822958352314], [-13.5131835913294, 12.0608090562388], [-13.5351562475755, 12.0608090562388]]]]}, "properties": {"taskId": 779, "taskX": 7576, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 12.0393205554158], [-13.5351562475755, 12.0608090562388], [-13.5131835913294, 12.0608090562388], [-13.5131835913294, 12.0393205554158], [-13.5351562475755, 12.0393205554158]]]]}, "properties": {"taskId": 778, "taskX": 7576, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 12.0178303356471], [-13.5351562475755, 12.0393205554158], [-13.5131835913294, 12.0393205554158], [-13.5131835913294, 12.0178303356471], [-13.5351562475755, 12.0178303356471]]]]}, "properties": {"taskId": 777, "taskX": 7576, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.9963383998188], [-13.5351562475755, 12.0178303356471], [-13.5131835913294, 12.0178303356471], [-13.5131835913294, 11.9963383998188], [-13.5351562475755, 11.9963383998188]]]]}, "properties": {"taskId": 776, "taskX": 7576, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.9748447508181], [-13.5351562475755, 11.9963383998188], [-13.5131835913294, 11.9963383998188], [-13.5131835913294, 11.9748447508181], [-13.5351562475755, 11.9748447508181]]]]}, "properties": {"taskId": 775, "taskX": 7576, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.9533493915333], [-13.5351562475755, 11.9748447508181], [-13.5131835913294, 11.9748447508181], [-13.5131835913294, 11.9533493915333], [-13.5351562475755, 11.9533493915333]]]]}, "properties": {"taskId": 774, "taskX": 7576, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.9103535536714], [-13.5351562475755, 11.9318523248542], [-13.5131835913294, 11.9318523248542], [-13.5131835913294, 11.9103535536714], [-13.5351562475755, 11.9103535536714]]]]}, "properties": {"taskId": 772, "taskX": 7576, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.888853080877], [-13.5351562475755, 11.9103535536714], [-13.5131835913294, 11.9103535536714], [-13.5131835913294, 11.888853080877], [-13.5351562475755, 11.888853080877]]]]}, "properties": {"taskId": 771, "taskX": 7576, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.867350909364], [-13.5351562475755, 11.888853080877], [-13.5131835913294, 11.888853080877], [-13.5131835913294, 11.867350909364], [-13.5351562475755, 11.867350909364]]]]}, "properties": {"taskId": 770, "taskX": 7576, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.8458470420268], [-13.5351562475755, 11.867350909364], [-13.5131835913294, 11.867350909364], [-13.5131835913294, 11.8458470420268], [-13.5351562475755, 11.8458470420268]]]]}, "properties": {"taskId": 769, "taskX": 7576, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.8243414817611], [-13.5351562475755, 11.8458470420268], [-13.5131835913294, 11.8458470420268], [-13.5131835913294, 11.8243414817611], [-13.5351562475755, 11.8243414817611]]]]}, "properties": {"taskId": 768, "taskX": 7576, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.8028342314634], [-13.5351562475755, 11.8243414817611], [-13.5131835913294, 11.8243414817611], [-13.5131835913294, 11.8028342314634], [-13.5351562475755, 11.8028342314634]]]]}, "properties": {"taskId": 767, "taskX": 7576, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.7813252940317], [-13.5351562475755, 11.8028342314634], [-13.5131835913294, 11.8028342314634], [-13.5131835913294, 11.7813252940317], [-13.5351562475755, 11.7813252940317]]]]}, "properties": {"taskId": 766, "taskX": 7576, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.7383023693636], [-13.5351562475755, 11.759814672365], [-13.5131835913294, 11.759814672365], [-13.5131835913294, 11.7383023693636], [-13.5351562475755, 11.7383023693636]]]]}, "properties": {"taskId": 764, "taskX": 7576, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.6952727309636], [-13.5351562475755, 11.7167883879289], [-13.5131835913294, 11.7167883879289], [-13.5131835913294, 11.6952727309636], [-13.5351562475755, 11.6952727309636]]]]}, "properties": {"taskId": 762, "taskX": 7576, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.6737554013713], [-13.5351562475755, 11.6952727309636], [-13.5131835913294, 11.6952727309636], [-13.5131835913294, 11.6737554013713], [-13.5351562475755, 11.6737554013713]]]]}, "properties": {"taskId": 761, "taskX": 7576, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.6307157359267], [-13.5351562475755, 11.652236402057], [-13.5131835913294, 11.652236402057], [-13.5131835913294, 11.6307157359267], [-13.5351562475755, 11.6307157359267]]]]}, "properties": {"taskId": 759, "taskX": 7576, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.6091934058879], [-13.5351562475755, 11.6307157359267], [-13.5131835913294, 11.6307157359267], [-13.5131835913294, 11.6091934058879], [-13.5351562475755, 11.6091934058879]]]]}, "properties": {"taskId": 758, "taskX": 7576, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.5876694148488], [-13.5351562475755, 11.6091934058879], [-13.5131835913294, 11.6091934058879], [-13.5131835913294, 11.5876694148488], [-13.5351562475755, 11.5876694148488]]]]}, "properties": {"taskId": 757, "taskX": 7576, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.5661437657192], [-13.5351562475755, 11.5876694148488], [-13.5131835913294, 11.5876694148488], [-13.5131835913294, 11.5661437657192], [-13.5351562475755, 11.5661437657192]]]]}, "properties": {"taskId": 756, "taskX": 7576, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.5446164614097], [-13.5351562475755, 11.5661437657192], [-13.5131835913294, 11.5661437657192], [-13.5131835913294, 11.5446164614097], [-13.5351562475755, 11.5446164614097]]]]}, "properties": {"taskId": 755, "taskX": 7576, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.5230875048322], [-13.5351562475755, 11.5446164614097], [-13.5131835913294, 11.5446164614097], [-13.5131835913294, 11.5230875048322], [-13.5351562475755, 11.5230875048322]]]]}, "properties": {"taskId": 754, "taskX": 7576, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.5015568988999], [-13.5351562475755, 11.5230875048322], [-13.5131835913294, 11.5230875048322], [-13.5131835913294, 11.5015568988999], [-13.5351562475755, 11.5015568988999]]]]}, "properties": {"taskId": 753, "taskX": 7576, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.480024646527], [-13.5351562475755, 11.5015568988999], [-13.5131835913294, 11.5015568988999], [-13.5131835913294, 11.480024646527], [-13.5351562475755, 11.480024646527]]]]}, "properties": {"taskId": 752, "taskX": 7576, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.4584907506287], [-13.5351562475755, 11.480024646527], [-13.5131835913294, 11.480024646527], [-13.5131835913294, 11.4584907506287], [-13.5351562475755, 11.4584907506287]]]]}, "properties": {"taskId": 751, "taskX": 7576, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.4369552141218], [-13.5351562475755, 11.4584907506287], [-13.5131835913294, 11.4584907506287], [-13.5131835913294, 11.4369552141218], [-13.5351562475755, 11.4369552141218]]]]}, "properties": {"taskId": 750, "taskX": 7576, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.4154180399237], [-13.5351562475755, 11.4369552141218], [-13.5131835913294, 11.4369552141218], [-13.5131835913294, 11.4154180399237], [-13.5351562475755, 11.4154180399237]]]]}, "properties": {"taskId": 749, "taskX": 7576, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.3938792309534], [-13.5351562475755, 11.4154180399237], [-13.5131835913294, 11.4154180399237], [-13.5131835913294, 11.3938792309534], [-13.5351562475755, 11.3938792309534]]]]}, "properties": {"taskId": 748, "taskX": 7576, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5351562475755, 11.3723387901308], [-13.5351562475755, 11.3938792309534], [-13.5131835913294, 11.3938792309534], [-13.5131835913294, 11.3723387901308], [-13.5351562475755, 11.3723387901308]]]]}, "properties": {"taskId": 747, "taskX": 7576, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 12.2970682906849], [-13.5571289038216, 12.3185359394895], [-13.5351562475755, 12.3185359394895], [-13.5351562475755, 12.2970682906849], [-13.5571289038216, 12.2970682906849]]]]}, "properties": {"taskId": 746, "taskX": 7575, "taskY": 8756, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 12.2755988883965], [-13.5571289038216, 12.2970682906849], [-13.5351562475755, 12.2970682906849], [-13.5351562475755, 12.2755988883965], [-13.5571289038216, 12.2755988883965]]]]}, "properties": {"taskId": 745, "taskX": 7575, "taskY": 8755, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 12.2326548348556], [-13.5571289038216, 12.2541277354958], [-13.5351562475755, 12.2541277354958], [-13.5351562475755, 12.2326548348556], [-13.5571289038216, 12.2326548348556]]]]}, "properties": {"taskId": 743, "taskX": 7575, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 12.2111801893498], [-13.5571289038216, 12.2326548348556], [-13.5351562475755, 12.2326548348556], [-13.5351562475755, 12.2111801893498], [-13.5571289038216, 12.2111801893498]]]]}, "properties": {"taskId": 742, "taskX": 7575, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 12.1682256752432], [-13.5571289038216, 12.1897038018535], [-13.5351562475755, 12.1897038018535], [-13.5351562475755, 12.1682256752432], [-13.5571289038216, 12.1682256752432]]]]}, "properties": {"taskId": 740, "taskX": 7575, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 12.1467458123965], [-13.5571289038216, 12.1682256752432], [-13.5351562475755, 12.1682256752432], [-13.5351562475755, 12.1467458123965], [-13.5571289038216, 12.1467458123965]]]]}, "properties": {"taskId": 739, "taskX": 7575, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 12.10378088951], [-13.5571289038216, 12.1252642161921], [-13.5351562475755, 12.1252642161921], [-13.5351562475755, 12.10378088951], [-13.5571289038216, 12.10378088951]]]]}, "properties": {"taskId": 737, "taskX": 7575, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 12.0822958352314], [-13.5571289038216, 12.10378088951], [-13.5351562475755, 12.10378088951], [-13.5351562475755, 12.0822958352314], [-13.5571289038216, 12.0822958352314]]]]}, "properties": {"taskId": 736, "taskX": 7575, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 12.0608090562388], [-13.5571289038216, 12.0822958352314], [-13.5351562475755, 12.0822958352314], [-13.5351562475755, 12.0608090562388], [-13.5571289038216, 12.0608090562388]]]]}, "properties": {"taskId": 735, "taskX": 7575, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 12.0393205554158], [-13.5571289038216, 12.0608090562388], [-13.5351562475755, 12.0608090562388], [-13.5351562475755, 12.0393205554158], [-13.5571289038216, 12.0393205554158]]]]}, "properties": {"taskId": 734, "taskX": 7575, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 12.0178303356471], [-13.5571289038216, 12.0393205554158], [-13.5351562475755, 12.0393205554158], [-13.5351562475755, 12.0178303356471], [-13.5571289038216, 12.0178303356471]]]]}, "properties": {"taskId": 733, "taskX": 7575, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.9963383998188], [-13.5571289038216, 12.0178303356471], [-13.5351562475755, 12.0178303356471], [-13.5351562475755, 11.9963383998188], [-13.5571289038216, 11.9963383998188]]]]}, "properties": {"taskId": 732, "taskX": 7575, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.9748447508181], [-13.5571289038216, 11.9963383998188], [-13.5351562475755, 11.9963383998188], [-13.5351562475755, 11.9748447508181], [-13.5571289038216, 11.9748447508181]]]]}, "properties": {"taskId": 731, "taskX": 7575, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.888853080877], [-13.5571289038216, 11.9103535536714], [-13.5351562475755, 11.9103535536714], [-13.5351562475755, 11.888853080877], [-13.5571289038216, 11.888853080877]]]]}, "properties": {"taskId": 727, "taskX": 7575, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.867350909364], [-13.5571289038216, 11.888853080877], [-13.5351562475755, 11.888853080877], [-13.5351562475755, 11.867350909364], [-13.5571289038216, 11.867350909364]]]]}, "properties": {"taskId": 726, "taskX": 7575, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.8458470420268], [-13.5571289038216, 11.867350909364], [-13.5351562475755, 11.867350909364], [-13.5351562475755, 11.8458470420268], [-13.5571289038216, 11.8458470420268]]]]}, "properties": {"taskId": 725, "taskX": 7575, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.8028342314634], [-13.5571289038216, 11.8243414817611], [-13.5351562475755, 11.8243414817611], [-13.5351562475755, 11.8028342314634], [-13.5571289038216, 11.8028342314634]]]]}, "properties": {"taskId": 723, "taskX": 7575, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.7383023693636], [-13.5571289038216, 11.759814672365], [-13.5351562475755, 11.759814672365], [-13.5351562475755, 11.7383023693636], [-13.5571289038216, 11.7383023693636]]]]}, "properties": {"taskId": 720, "taskX": 7575, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.6952727309636], [-13.5571289038216, 11.7167883879289], [-13.5351562475755, 11.7167883879289], [-13.5351562475755, 11.6952727309636], [-13.5571289038216, 11.6952727309636]]]]}, "properties": {"taskId": 718, "taskX": 7575, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.652236402057], [-13.5571289038216, 11.6737554013713], [-13.5351562475755, 11.6737554013713], [-13.5351562475755, 11.652236402057], [-13.5571289038216, 11.652236402057]]]]}, "properties": {"taskId": 716, "taskX": 7575, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.6091934058879], [-13.5571289038216, 11.6307157359267], [-13.5351562475755, 11.6307157359267], [-13.5351562475755, 11.6091934058879], [-13.5571289038216, 11.6091934058879]]]]}, "properties": {"taskId": 714, "taskX": 7575, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.5661437657192], [-13.5571289038216, 11.5876694148488], [-13.5351562475755, 11.5876694148488], [-13.5351562475755, 11.5661437657192], [-13.5571289038216, 11.5661437657192]]]]}, "properties": {"taskId": 712, "taskX": 7575, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.5015568988999], [-13.5571289038216, 11.5230875048322], [-13.5351562475755, 11.5230875048322], [-13.5351562475755, 11.5015568988999], [-13.5571289038216, 11.5015568988999]]]]}, "properties": {"taskId": 709, "taskX": 7575, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.480024646527], [-13.5571289038216, 11.5015568988999], [-13.5351562475755, 11.5015568988999], [-13.5351562475755, 11.480024646527], [-13.5571289038216, 11.480024646527]]]]}, "properties": {"taskId": 708, "taskX": 7575, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.4584907506287], [-13.5571289038216, 11.480024646527], [-13.5351562475755, 11.480024646527], [-13.5351562475755, 11.4584907506287], [-13.5571289038216, 11.4584907506287]]]]}, "properties": {"taskId": 707, "taskX": 7575, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.4369552141218], [-13.5571289038216, 11.4584907506287], [-13.5351562475755, 11.4584907506287], [-13.5351562475755, 11.4369552141218], [-13.5571289038216, 11.4369552141218]]]]}, "properties": {"taskId": 706, "taskX": 7575, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.4154180399237], [-13.5571289038216, 11.4369552141218], [-13.5351562475755, 11.4369552141218], [-13.5351562475755, 11.4154180399237], [-13.5571289038216, 11.4154180399237]]]]}, "properties": {"taskId": 705, "taskX": 7575, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.3938792309534], [-13.5571289038216, 11.4154180399237], [-13.5351562475755, 11.4154180399237], [-13.5351562475755, 11.3938792309534], [-13.5571289038216, 11.3938792309534]]]]}, "properties": {"taskId": 704, "taskX": 7575, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5571289038216, 11.3723387901308], [-13.5571289038216, 11.3938792309534], [-13.5351562475755, 11.3938792309534], [-13.5351562475755, 11.3723387901308], [-13.5571289038216, 11.3723387901308]]]]}, "properties": {"taskId": 703, "taskX": 7575, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 12.2755988883965], [-13.5791015600676, 12.2970682906849], [-13.5571289038216, 12.2970682906849], [-13.5571289038216, 12.2755988883965], [-13.5791015600676, 12.2755988883965]]]]}, "properties": {"taskId": 701, "taskX": 7574, "taskY": 8755, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 12.2541277354958], [-13.5791015600676, 12.2755988883965], [-13.5571289038216, 12.2755988883965], [-13.5571289038216, 12.2541277354958], [-13.5791015600676, 12.2541277354958]]]]}, "properties": {"taskId": 700, "taskX": 7574, "taskY": 8754, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 12.1897038018535], [-13.5791015600676, 12.2111801893498], [-13.5571289038216, 12.2111801893498], [-13.5571289038216, 12.1897038018535], [-13.5791015600676, 12.1897038018535]]]]}, "properties": {"taskId": 697, "taskX": 7574, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 12.1467458123965], [-13.5791015600676, 12.1682256752432], [-13.5571289038216, 12.1682256752432], [-13.5571289038216, 12.1467458123965], [-13.5791015600676, 12.1467458123965]]]]}, "properties": {"taskId": 695, "taskX": 7574, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 12.1252642161921], [-13.5791015600676, 12.1467458123965], [-13.5571289038216, 12.1467458123965], [-13.5571289038216, 12.1252642161921], [-13.5791015600676, 12.1252642161921]]]]}, "properties": {"taskId": 694, "taskX": 7574, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 12.10378088951], [-13.5791015600676, 12.1252642161921], [-13.5571289038216, 12.1252642161921], [-13.5571289038216, 12.10378088951], [-13.5791015600676, 12.10378088951]]]]}, "properties": {"taskId": 693, "taskX": 7574, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 12.0393205554158], [-13.5791015600676, 12.0608090562388], [-13.5571289038216, 12.0608090562388], [-13.5571289038216, 12.0393205554158], [-13.5791015600676, 12.0393205554158]]]]}, "properties": {"taskId": 690, "taskX": 7574, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.9963383998188], [-13.5791015600676, 12.0178303356471], [-13.5571289038216, 12.0178303356471], [-13.5571289038216, 11.9963383998188], [-13.5791015600676, 11.9963383998188]]]]}, "properties": {"taskId": 688, "taskX": 7574, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.5791015600676, 11.9748447508181], [-13.5791015600676, 11.9963383998188], [-13.5571289038216, 11.9963383998188], [-13.5571289038216, 11.9748447508181], [-13.5791015600676, 11.9748447508181]]]]}, "properties": {"taskId": 687, "taskX": 7574, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 11.5230875048322], [-13.7988281225283, 11.5446164614097], [-13.7768554662822, 11.5446164614097], [-13.7768554662822, 11.5230875048322], [-13.7988281225283, 11.5230875048322]]]]}, "properties": {"taskId": 258, "taskX": 7564, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 11.5015568988999], [-13.7988281225283, 11.5230875048322], [-13.7768554662822, 11.5230875048322], [-13.7768554662822, 11.5015568988999], [-13.7988281225283, 11.5015568988999]]]]}, "properties": {"taskId": 257, "taskX": 7564, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 11.4584907506287], [-13.7988281225283, 11.480024646527], [-13.7768554662822, 11.480024646527], [-13.7768554662822, 11.4584907506287], [-13.7988281225283, 11.4584907506287]]]]}, "properties": {"taskId": 255, "taskX": 7564, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 11.4369552141218], [-13.7988281225283, 11.4584907506287], [-13.7768554662822, 11.4584907506287], [-13.7768554662822, 11.4369552141218], [-13.7988281225283, 11.4369552141218]]]]}, "properties": {"taskId": 254, "taskX": 7564, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 11.4154180399237], [-13.7988281225283, 11.4369552141218], [-13.7768554662822, 11.4369552141218], [-13.7768554662822, 11.4154180399237], [-13.7988281225283, 11.4154180399237]]]]}, "properties": {"taskId": 253, "taskX": 7564, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 11.3938792309534], [-13.7988281225283, 11.4154180399237], [-13.7768554662822, 11.4154180399237], [-13.7768554662822, 11.3938792309534], [-13.7988281225283, 11.3938792309534]]]]}, "properties": {"taskId": 252, "taskX": 7564, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 11.3723387901308], [-13.7988281225283, 11.3938792309534], [-13.7768554662822, 11.3938792309534], [-13.7768554662822, 11.3723387901308], [-13.7988281225283, 11.3723387901308]]]]}, "properties": {"taskId": 251, "taskX": 7564, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 11.3507967203771], [-13.7988281225283, 11.3723387901308], [-13.7768554662822, 11.3723387901308], [-13.7768554662822, 11.3507967203771], [-13.7988281225283, 11.3507967203771]]]]}, "properties": {"taskId": 250, "taskX": 7564, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 11.3292530246144], [-13.7988281225283, 11.3507967203771], [-13.7768554662822, 11.3507967203771], [-13.7768554662822, 11.3292530246144], [-13.7988281225283, 11.3292530246144]]]]}, "properties": {"taskId": 249, "taskX": 7564, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 11.3077077057662], [-13.7988281225283, 11.3292530246144], [-13.7768554662822, 11.3292530246144], [-13.7768554662822, 11.3077077057662], [-13.7988281225283, 11.3077077057662]]]]}, "properties": {"taskId": 248, "taskX": 7564, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7988281225283, 11.2861607667571], [-13.7988281225283, 11.3077077057662], [-13.7768554662822, 11.3077077057662], [-13.7768554662822, 11.2861607667571], [-13.7988281225283, 11.2861607667571]]]]}, "properties": {"taskId": 247, "taskX": 7564, "taskY": 8709, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 12.2970682906849], [-13.8208007787743, 12.3185359394895], [-13.7988281225283, 12.3185359394895], [-13.7988281225283, 12.2970682906849], [-13.8208007787743, 12.2970682906849]]]]}, "properties": {"taskId": 246, "taskX": 7563, "taskY": 8756, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 12.2755988883965], [-13.8208007787743, 12.2970682906849], [-13.7988281225283, 12.2970682906849], [-13.7988281225283, 12.2755988883965], [-13.8208007787743, 12.2755988883965]]]]}, "properties": {"taskId": 245, "taskX": 7563, "taskY": 8755, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 12.2541277354958], [-13.8208007787743, 12.2755988883965], [-13.7988281225283, 12.2755988883965], [-13.7988281225283, 12.2541277354958], [-13.8208007787743, 12.2541277354958]]]]}, "properties": {"taskId": 244, "taskX": 7563, "taskY": 8754, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 12.2326548348556], [-13.8208007787743, 12.2541277354958], [-13.7988281225283, 12.2541277354958], [-13.7988281225283, 12.2326548348556], [-13.8208007787743, 12.2326548348556]]]]}, "properties": {"taskId": 243, "taskX": 7563, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 12.2111801893498], [-13.8208007787743, 12.2326548348556], [-13.7988281225283, 12.2326548348556], [-13.7988281225283, 12.2111801893498], [-13.8208007787743, 12.2111801893498]]]]}, "properties": {"taskId": 242, "taskX": 7563, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 12.1897038018535], [-13.8208007787743, 12.2111801893498], [-13.7988281225283, 12.2111801893498], [-13.7988281225283, 12.1897038018535], [-13.8208007787743, 12.1897038018535]]]]}, "properties": {"taskId": 241, "taskX": 7563, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 12.1682256752432], [-13.8208007787743, 12.1897038018535], [-13.7988281225283, 12.1897038018535], [-13.7988281225283, 12.1682256752432], [-13.8208007787743, 12.1682256752432]]]]}, "properties": {"taskId": 240, "taskX": 7563, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 12.1467458123965], [-13.8208007787743, 12.1682256752432], [-13.7988281225283, 12.1682256752432], [-13.7988281225283, 12.1467458123965], [-13.8208007787743, 12.1467458123965]]]]}, "properties": {"taskId": 239, "taskX": 7563, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 12.1252642161921], [-13.8208007787743, 12.1467458123965], [-13.7988281225283, 12.1467458123965], [-13.7988281225283, 12.1252642161921], [-13.8208007787743, 12.1252642161921]]]]}, "properties": {"taskId": 238, "taskX": 7563, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 12.10378088951], [-13.8208007787743, 12.1252642161921], [-13.7988281225283, 12.1252642161921], [-13.7988281225283, 12.10378088951], [-13.8208007787743, 12.10378088951]]]]}, "properties": {"taskId": 237, "taskX": 7563, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 12.0822958352314], [-13.8208007787743, 12.10378088951], [-13.7988281225283, 12.10378088951], [-13.7988281225283, 12.0822958352314], [-13.8208007787743, 12.0822958352314]]]]}, "properties": {"taskId": 236, "taskX": 7563, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 12.0608090562388], [-13.8208007787743, 12.0822958352314], [-13.7988281225283, 12.0822958352314], [-13.7988281225283, 12.0608090562388], [-13.8208007787743, 12.0608090562388]]]]}, "properties": {"taskId": 235, "taskX": 7563, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 12.0393205554158], [-13.8208007787743, 12.0608090562388], [-13.7988281225283, 12.0608090562388], [-13.7988281225283, 12.0393205554158], [-13.8208007787743, 12.0393205554158]]]]}, "properties": {"taskId": 234, "taskX": 7563, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 12.0178303356471], [-13.8208007787743, 12.0393205554158], [-13.7988281225283, 12.0393205554158], [-13.7988281225283, 12.0178303356471], [-13.8208007787743, 12.0178303356471]]]]}, "properties": {"taskId": 233, "taskX": 7563, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 11.7167883879289], [-13.8208007787743, 11.7383023693636], [-13.7988281225283, 11.7383023693636], [-13.7988281225283, 11.7167883879289], [-13.8208007787743, 11.7167883879289]]]]}, "properties": {"taskId": 232, "taskX": 7563, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 11.6952727309636], [-13.8208007787743, 11.7167883879289], [-13.7988281225283, 11.7167883879289], [-13.7988281225283, 11.6952727309636], [-13.8208007787743, 11.6952727309636]]]]}, "properties": {"taskId": 231, "taskX": 7563, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 11.6737554013713], [-13.8208007787743, 11.6952727309636], [-13.7988281225283, 11.6952727309636], [-13.7988281225283, 11.6737554013713], [-13.8208007787743, 11.6737554013713]]]]}, "properties": {"taskId": 230, "taskX": 7563, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 11.652236402057], [-13.8208007787743, 11.6737554013713], [-13.7988281225283, 11.6737554013713], [-13.7988281225283, 11.652236402057], [-13.8208007787743, 11.652236402057]]]]}, "properties": {"taskId": 229, "taskX": 7563, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 11.6307157359267], [-13.8208007787743, 11.652236402057], [-13.7988281225283, 11.652236402057], [-13.7988281225283, 11.6307157359267], [-13.8208007787743, 11.6307157359267]]]]}, "properties": {"taskId": 228, "taskX": 7563, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 11.6091934058879], [-13.8208007787743, 11.6307157359267], [-13.7988281225283, 11.6307157359267], [-13.7988281225283, 11.6091934058879], [-13.8208007787743, 11.6091934058879]]]]}, "properties": {"taskId": 227, "taskX": 7563, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 11.5876694148488], [-13.8208007787743, 11.6091934058879], [-13.7988281225283, 11.6091934058879], [-13.7988281225283, 11.5876694148488], [-13.8208007787743, 11.5876694148488]]]]}, "properties": {"taskId": 226, "taskX": 7563, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 11.5661437657192], [-13.8208007787743, 11.5876694148488], [-13.7988281225283, 11.5876694148488], [-13.7988281225283, 11.5661437657192], [-13.8208007787743, 11.5661437657192]]]]}, "properties": {"taskId": 225, "taskX": 7563, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 11.5446164614097], [-13.8208007787743, 11.5661437657192], [-13.7988281225283, 11.5661437657192], [-13.7988281225283, 11.5446164614097], [-13.8208007787743, 11.5446164614097]]]]}, "properties": {"taskId": 224, "taskX": 7563, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 11.5230875048322], [-13.8208007787743, 11.5446164614097], [-13.7988281225283, 11.5446164614097], [-13.7988281225283, 11.5230875048322], [-13.8208007787743, 11.5230875048322]]]]}, "properties": {"taskId": 223, "taskX": 7563, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 11.5015568988999], [-13.8208007787743, 11.5230875048322], [-13.7988281225283, 11.5230875048322], [-13.7988281225283, 11.5015568988999], [-13.8208007787743, 11.5015568988999]]]]}, "properties": {"taskId": 222, "taskX": 7563, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 11.480024646527], [-13.8208007787743, 11.5015568988999], [-13.7988281225283, 11.5015568988999], [-13.7988281225283, 11.480024646527], [-13.8208007787743, 11.480024646527]]]]}, "properties": {"taskId": 221, "taskX": 7563, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 11.4584907506287], [-13.8208007787743, 11.480024646527], [-13.7988281225283, 11.480024646527], [-13.7988281225283, 11.4584907506287], [-13.8208007787743, 11.4584907506287]]]]}, "properties": {"taskId": 220, "taskX": 7563, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 11.4369552141218], [-13.8208007787743, 11.4584907506287], [-13.7988281225283, 11.4584907506287], [-13.7988281225283, 11.4369552141218], [-13.8208007787743, 11.4369552141218]]]]}, "properties": {"taskId": 219, "taskX": 7563, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 11.4154180399237], [-13.8208007787743, 11.4369552141218], [-13.7988281225283, 11.4369552141218], [-13.7988281225283, 11.4154180399237], [-13.8208007787743, 11.4154180399237]]]]}, "properties": {"taskId": 218, "taskX": 7563, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 11.3938792309534], [-13.8208007787743, 11.4154180399237], [-13.7988281225283, 11.4154180399237], [-13.7988281225283, 11.3938792309534], [-13.8208007787743, 11.3938792309534]]]]}, "properties": {"taskId": 217, "taskX": 7563, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 11.3723387901308], [-13.8208007787743, 11.3938792309534], [-13.7988281225283, 11.3938792309534], [-13.7988281225283, 11.3723387901308], [-13.8208007787743, 11.3723387901308]]]]}, "properties": {"taskId": 216, "taskX": 7563, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 11.3507967203771], [-13.8208007787743, 11.3723387901308], [-13.7988281225283, 11.3723387901308], [-13.7988281225283, 11.3507967203771], [-13.8208007787743, 11.3507967203771]]]]}, "properties": {"taskId": 215, "taskX": 7563, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 11.3292530246144], [-13.8208007787743, 11.3507967203771], [-13.7988281225283, 11.3507967203771], [-13.7988281225283, 11.3292530246144], [-13.8208007787743, 11.3292530246144]]]]}, "properties": {"taskId": 214, "taskX": 7563, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 11.3077077057662], [-13.8208007787743, 11.3292530246144], [-13.7988281225283, 11.3292530246144], [-13.7988281225283, 11.3077077057662], [-13.8208007787743, 11.3077077057662]]]]}, "properties": {"taskId": 213, "taskX": 7563, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8208007787743, 11.2861607667571], [-13.8208007787743, 11.3077077057662], [-13.7988281225283, 11.3077077057662], [-13.7988281225283, 11.2861607667571], [-13.8208007787743, 11.2861607667571]]]]}, "properties": {"taskId": 212, "taskX": 7563, "taskY": 8709, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 12.2755988883965], [-13.8427734350204, 12.2970682906849], [-13.8208007787743, 12.2970682906849], [-13.8208007787743, 12.2755988883965], [-13.8427734350204, 12.2755988883965]]]]}, "properties": {"taskId": 211, "taskX": 7562, "taskY": 8755, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 12.2541277354958], [-13.8427734350204, 12.2755988883965], [-13.8208007787743, 12.2755988883965], [-13.8208007787743, 12.2541277354958], [-13.8427734350204, 12.2541277354958]]]]}, "properties": {"taskId": 210, "taskX": 7562, "taskY": 8754, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 12.2326548348556], [-13.8427734350204, 12.2541277354958], [-13.8208007787743, 12.2541277354958], [-13.8208007787743, 12.2326548348556], [-13.8427734350204, 12.2326548348556]]]]}, "properties": {"taskId": 209, "taskX": 7562, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 12.2111801893498], [-13.8427734350204, 12.2326548348556], [-13.8208007787743, 12.2326548348556], [-13.8208007787743, 12.2111801893498], [-13.8427734350204, 12.2111801893498]]]]}, "properties": {"taskId": 208, "taskX": 7562, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 12.1897038018535], [-13.8427734350204, 12.2111801893498], [-13.8208007787743, 12.2111801893498], [-13.8208007787743, 12.1897038018535], [-13.8427734350204, 12.1897038018535]]]]}, "properties": {"taskId": 207, "taskX": 7562, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 12.1682256752432], [-13.8427734350204, 12.1897038018535], [-13.8208007787743, 12.1897038018535], [-13.8208007787743, 12.1682256752432], [-13.8427734350204, 12.1682256752432]]]]}, "properties": {"taskId": 206, "taskX": 7562, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 12.1467458123965], [-13.8427734350204, 12.1682256752432], [-13.8208007787743, 12.1682256752432], [-13.8208007787743, 12.1467458123965], [-13.8427734350204, 12.1467458123965]]]]}, "properties": {"taskId": 205, "taskX": 7562, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 12.1252642161921], [-13.8427734350204, 12.1467458123965], [-13.8208007787743, 12.1467458123965], [-13.8208007787743, 12.1252642161921], [-13.8427734350204, 12.1252642161921]]]]}, "properties": {"taskId": 204, "taskX": 7562, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 12.10378088951], [-13.8427734350204, 12.1252642161921], [-13.8208007787743, 12.1252642161921], [-13.8208007787743, 12.10378088951], [-13.8427734350204, 12.10378088951]]]]}, "properties": {"taskId": 203, "taskX": 7562, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 12.0822958352314], [-13.8427734350204, 12.10378088951], [-13.8208007787743, 12.10378088951], [-13.8208007787743, 12.0822958352314], [-13.8427734350204, 12.0822958352314]]]]}, "properties": {"taskId": 202, "taskX": 7562, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 12.0608090562388], [-13.8427734350204, 12.0822958352314], [-13.8208007787743, 12.0822958352314], [-13.8208007787743, 12.0608090562388], [-13.8427734350204, 12.0608090562388]]]]}, "properties": {"taskId": 201, "taskX": 7562, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 11.7383023693636], [-13.8427734350204, 11.759814672365], [-13.8208007787743, 11.759814672365], [-13.8208007787743, 11.7383023693636], [-13.8427734350204, 11.7383023693636]]]]}, "properties": {"taskId": 200, "taskX": 7562, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 11.7167883879289], [-13.8427734350204, 11.7383023693636], [-13.8208007787743, 11.7383023693636], [-13.8208007787743, 11.7167883879289], [-13.8427734350204, 11.7167883879289]]]]}, "properties": {"taskId": 199, "taskX": 7562, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 11.6952727309636], [-13.8427734350204, 11.7167883879289], [-13.8208007787743, 11.7167883879289], [-13.8208007787743, 11.6952727309636], [-13.8427734350204, 11.6952727309636]]]]}, "properties": {"taskId": 198, "taskX": 7562, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 11.6737554013713], [-13.8427734350204, 11.6952727309636], [-13.8208007787743, 11.6952727309636], [-13.8208007787743, 11.6737554013713], [-13.8427734350204, 11.6737554013713]]]]}, "properties": {"taskId": 197, "taskX": 7562, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 11.652236402057], [-13.8427734350204, 11.6737554013713], [-13.8208007787743, 11.6737554013713], [-13.8208007787743, 11.652236402057], [-13.8427734350204, 11.652236402057]]]]}, "properties": {"taskId": 196, "taskX": 7562, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 11.6307157359267], [-13.8427734350204, 11.652236402057], [-13.8208007787743, 11.652236402057], [-13.8208007787743, 11.6307157359267], [-13.8427734350204, 11.6307157359267]]]]}, "properties": {"taskId": 195, "taskX": 7562, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 11.6091934058879], [-13.8427734350204, 11.6307157359267], [-13.8208007787743, 11.6307157359267], [-13.8208007787743, 11.6091934058879], [-13.8427734350204, 11.6091934058879]]]]}, "properties": {"taskId": 194, "taskX": 7562, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 11.5876694148488], [-13.8427734350204, 11.6091934058879], [-13.8208007787743, 11.6091934058879], [-13.8208007787743, 11.5876694148488], [-13.8427734350204, 11.5876694148488]]]]}, "properties": {"taskId": 193, "taskX": 7562, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 11.5661437657192], [-13.8427734350204, 11.5876694148488], [-13.8208007787743, 11.5876694148488], [-13.8208007787743, 11.5661437657192], [-13.8427734350204, 11.5661437657192]]]]}, "properties": {"taskId": 192, "taskX": 7562, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 11.5446164614097], [-13.8427734350204, 11.5661437657192], [-13.8208007787743, 11.5661437657192], [-13.8208007787743, 11.5446164614097], [-13.8427734350204, 11.5446164614097]]]]}, "properties": {"taskId": 191, "taskX": 7562, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 11.5230875048322], [-13.8427734350204, 11.5446164614097], [-13.8208007787743, 11.5446164614097], [-13.8208007787743, 11.5230875048322], [-13.8427734350204, 11.5230875048322]]]]}, "properties": {"taskId": 190, "taskX": 7562, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 11.5015568988999], [-13.8427734350204, 11.5230875048322], [-13.8208007787743, 11.5230875048322], [-13.8208007787743, 11.5015568988999], [-13.8427734350204, 11.5015568988999]]]]}, "properties": {"taskId": 189, "taskX": 7562, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 11.480024646527], [-13.8427734350204, 11.5015568988999], [-13.8208007787743, 11.5015568988999], [-13.8208007787743, 11.480024646527], [-13.8427734350204, 11.480024646527]]]]}, "properties": {"taskId": 188, "taskX": 7562, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 11.4584907506287], [-13.8427734350204, 11.480024646527], [-13.8208007787743, 11.480024646527], [-13.8208007787743, 11.4584907506287], [-13.8427734350204, 11.4584907506287]]]]}, "properties": {"taskId": 187, "taskX": 7562, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 11.4369552141218], [-13.8427734350204, 11.4584907506287], [-13.8208007787743, 11.4584907506287], [-13.8208007787743, 11.4369552141218], [-13.8427734350204, 11.4369552141218]]]]}, "properties": {"taskId": 186, "taskX": 7562, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 11.4154180399237], [-13.8427734350204, 11.4369552141218], [-13.8208007787743, 11.4369552141218], [-13.8208007787743, 11.4154180399237], [-13.8427734350204, 11.4154180399237]]]]}, "properties": {"taskId": 185, "taskX": 7562, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 11.3938792309534], [-13.8427734350204, 11.4154180399237], [-13.8208007787743, 11.4154180399237], [-13.8208007787743, 11.3938792309534], [-13.8427734350204, 11.3938792309534]]]]}, "properties": {"taskId": 184, "taskX": 7562, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 11.3723387901308], [-13.8427734350204, 11.3938792309534], [-13.8208007787743, 11.3938792309534], [-13.8208007787743, 11.3723387901308], [-13.8427734350204, 11.3723387901308]]]]}, "properties": {"taskId": 183, "taskX": 7562, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 11.3507967203771], [-13.8427734350204, 11.3723387901308], [-13.8208007787743, 11.3723387901308], [-13.8208007787743, 11.3507967203771], [-13.8427734350204, 11.3507967203771]]]]}, "properties": {"taskId": 182, "taskX": 7562, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 11.3292530246144], [-13.8427734350204, 11.3507967203771], [-13.8208007787743, 11.3507967203771], [-13.8208007787743, 11.3292530246144], [-13.8427734350204, 11.3292530246144]]]]}, "properties": {"taskId": 181, "taskX": 7562, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 11.3077077057662], [-13.8427734350204, 11.3292530246144], [-13.8208007787743, 11.3292530246144], [-13.8208007787743, 11.3077077057662], [-13.8427734350204, 11.3077077057662]]]]}, "properties": {"taskId": 180, "taskX": 7562, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8427734350204, 11.2861607667571], [-13.8427734350204, 11.3077077057662], [-13.8208007787743, 11.3077077057662], [-13.8208007787743, 11.2861607667571], [-13.8427734350204, 11.2861607667571]]]]}, "properties": {"taskId": 179, "taskX": 7562, "taskY": 8709, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 12.2755988883965], [-13.8647460912664, 12.2970682906849], [-13.8427734350204, 12.2970682906849], [-13.8427734350204, 12.2755988883965], [-13.8647460912664, 12.2755988883965]]]]}, "properties": {"taskId": 178, "taskX": 7561, "taskY": 8755, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 12.2541277354958], [-13.8647460912664, 12.2755988883965], [-13.8427734350204, 12.2755988883965], [-13.8427734350204, 12.2541277354958], [-13.8647460912664, 12.2541277354958]]]]}, "properties": {"taskId": 177, "taskX": 7561, "taskY": 8754, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 12.2326548348556], [-13.8647460912664, 12.2541277354958], [-13.8427734350204, 12.2541277354958], [-13.8427734350204, 12.2326548348556], [-13.8647460912664, 12.2326548348556]]]]}, "properties": {"taskId": 176, "taskX": 7561, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 12.2111801893498], [-13.8647460912664, 12.2326548348556], [-13.8427734350204, 12.2326548348556], [-13.8427734350204, 12.2111801893498], [-13.8647460912664, 12.2111801893498]]]]}, "properties": {"taskId": 175, "taskX": 7561, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 12.1682256752432], [-13.8647460912664, 12.1897038018535], [-13.8427734350204, 12.1897038018535], [-13.8427734350204, 12.1682256752432], [-13.8647460912664, 12.1682256752432]]]]}, "properties": {"taskId": 173, "taskX": 7561, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 12.1467458123965], [-13.8647460912664, 12.1682256752432], [-13.8427734350204, 12.1682256752432], [-13.8427734350204, 12.1467458123965], [-13.8647460912664, 12.1467458123965]]]]}, "properties": {"taskId": 172, "taskX": 7561, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 12.1252642161921], [-13.8647460912664, 12.1467458123965], [-13.8427734350204, 12.1467458123965], [-13.8427734350204, 12.1252642161921], [-13.8647460912664, 12.1252642161921]]]]}, "properties": {"taskId": 171, "taskX": 7561, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 12.10378088951], [-13.8647460912664, 12.1252642161921], [-13.8427734350204, 12.1252642161921], [-13.8427734350204, 12.10378088951], [-13.8647460912664, 12.10378088951]]]]}, "properties": {"taskId": 170, "taskX": 7561, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 12.0822958352314], [-13.8647460912664, 12.10378088951], [-13.8427734350204, 12.10378088951], [-13.8427734350204, 12.0822958352314], [-13.8647460912664, 12.0822958352314]]]]}, "properties": {"taskId": 169, "taskX": 7561, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 11.7383023693636], [-13.8647460912664, 11.759814672365], [-13.8427734350204, 11.759814672365], [-13.8427734350204, 11.7383023693636], [-13.8647460912664, 11.7383023693636]]]]}, "properties": {"taskId": 168, "taskX": 7561, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 11.7167883879289], [-13.8647460912664, 11.7383023693636], [-13.8427734350204, 11.7383023693636], [-13.8427734350204, 11.7167883879289], [-13.8647460912664, 11.7167883879289]]]]}, "properties": {"taskId": 167, "taskX": 7561, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 11.6952727309636], [-13.8647460912664, 11.7167883879289], [-13.8427734350204, 11.7167883879289], [-13.8427734350204, 11.6952727309636], [-13.8647460912664, 11.6952727309636]]]]}, "properties": {"taskId": 166, "taskX": 7561, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 11.6737554013713], [-13.8647460912664, 11.6952727309636], [-13.8427734350204, 11.6952727309636], [-13.8427734350204, 11.6737554013713], [-13.8647460912664, 11.6737554013713]]]]}, "properties": {"taskId": 165, "taskX": 7561, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 11.652236402057], [-13.8647460912664, 11.6737554013713], [-13.8427734350204, 11.6737554013713], [-13.8427734350204, 11.652236402057], [-13.8647460912664, 11.652236402057]]]]}, "properties": {"taskId": 164, "taskX": 7561, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 11.6307157359267], [-13.8647460912664, 11.652236402057], [-13.8427734350204, 11.652236402057], [-13.8427734350204, 11.6307157359267], [-13.8647460912664, 11.6307157359267]]]]}, "properties": {"taskId": 163, "taskX": 7561, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 11.6091934058879], [-13.8647460912664, 11.6307157359267], [-13.8427734350204, 11.6307157359267], [-13.8427734350204, 11.6091934058879], [-13.8647460912664, 11.6091934058879]]]]}, "properties": {"taskId": 162, "taskX": 7561, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 11.5876694148488], [-13.8647460912664, 11.6091934058879], [-13.8427734350204, 11.6091934058879], [-13.8427734350204, 11.5876694148488], [-13.8647460912664, 11.5876694148488]]]]}, "properties": {"taskId": 161, "taskX": 7561, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 11.5661437657192], [-13.8647460912664, 11.5876694148488], [-13.8427734350204, 11.5876694148488], [-13.8427734350204, 11.5661437657192], [-13.8647460912664, 11.5661437657192]]]]}, "properties": {"taskId": 160, "taskX": 7561, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 11.5446164614097], [-13.8647460912664, 11.5661437657192], [-13.8427734350204, 11.5661437657192], [-13.8427734350204, 11.5446164614097], [-13.8647460912664, 11.5446164614097]]]]}, "properties": {"taskId": 159, "taskX": 7561, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 11.5230875048322], [-13.8647460912664, 11.5446164614097], [-13.8427734350204, 11.5446164614097], [-13.8427734350204, 11.5230875048322], [-13.8647460912664, 11.5230875048322]]]]}, "properties": {"taskId": 158, "taskX": 7561, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 11.5015568988999], [-13.8647460912664, 11.5230875048322], [-13.8427734350204, 11.5230875048322], [-13.8427734350204, 11.5015568988999], [-13.8647460912664, 11.5015568988999]]]]}, "properties": {"taskId": 157, "taskX": 7561, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 11.480024646527], [-13.8647460912664, 11.5015568988999], [-13.8427734350204, 11.5015568988999], [-13.8427734350204, 11.480024646527], [-13.8647460912664, 11.480024646527]]]]}, "properties": {"taskId": 156, "taskX": 7561, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 11.4584907506287], [-13.8647460912664, 11.480024646527], [-13.8427734350204, 11.480024646527], [-13.8427734350204, 11.4584907506287], [-13.8647460912664, 11.4584907506287]]]]}, "properties": {"taskId": 155, "taskX": 7561, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 11.4369552141218], [-13.8647460912664, 11.4584907506287], [-13.8427734350204, 11.4584907506287], [-13.8427734350204, 11.4369552141218], [-13.8647460912664, 11.4369552141218]]]]}, "properties": {"taskId": 154, "taskX": 7561, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 11.4154180399237], [-13.8647460912664, 11.4369552141218], [-13.8427734350204, 11.4369552141218], [-13.8427734350204, 11.4154180399237], [-13.8647460912664, 11.4154180399237]]]]}, "properties": {"taskId": 153, "taskX": 7561, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 11.3938792309534], [-13.8647460912664, 11.4154180399237], [-13.8427734350204, 11.4154180399237], [-13.8427734350204, 11.3938792309534], [-13.8647460912664, 11.3938792309534]]]]}, "properties": {"taskId": 152, "taskX": 7561, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 11.3723387901308], [-13.8647460912664, 11.3938792309534], [-13.8427734350204, 11.3938792309534], [-13.8427734350204, 11.3723387901308], [-13.8647460912664, 11.3723387901308]]]]}, "properties": {"taskId": 151, "taskX": 7561, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 11.3507967203771], [-13.8647460912664, 11.3723387901308], [-13.8427734350204, 11.3723387901308], [-13.8427734350204, 11.3507967203771], [-13.8647460912664, 11.3507967203771]]]]}, "properties": {"taskId": 150, "taskX": 7561, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 11.3292530246144], [-13.8647460912664, 11.3507967203771], [-13.8427734350204, 11.3507967203771], [-13.8427734350204, 11.3292530246144], [-13.8647460912664, 11.3292530246144]]]]}, "properties": {"taskId": 149, "taskX": 7561, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 11.3077077057662], [-13.8647460912664, 11.3292530246144], [-13.8427734350204, 11.3292530246144], [-13.8427734350204, 11.3077077057662], [-13.8647460912664, 11.3077077057662]]]]}, "properties": {"taskId": 148, "taskX": 7561, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8647460912664, 11.2861607667571], [-13.8647460912664, 11.3077077057662], [-13.8427734350204, 11.3077077057662], [-13.8427734350204, 11.2861607667571], [-13.8647460912664, 11.2861607667571]]]]}, "properties": {"taskId": 147, "taskX": 7561, "taskY": 8709, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 12.2755988883965], [-13.8867187475125, 12.2970682906849], [-13.8647460912664, 12.2970682906849], [-13.8647460912664, 12.2755988883965], [-13.8867187475125, 12.2755988883965]]]]}, "properties": {"taskId": 146, "taskX": 7560, "taskY": 8755, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 12.2541277354958], [-13.8867187475125, 12.2755988883965], [-13.8647460912664, 12.2755988883965], [-13.8647460912664, 12.2541277354958], [-13.8867187475125, 12.2541277354958]]]]}, "properties": {"taskId": 145, "taskX": 7560, "taskY": 8754, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 12.2326548348556], [-13.8867187475125, 12.2541277354958], [-13.8647460912664, 12.2541277354958], [-13.8647460912664, 12.2326548348556], [-13.8867187475125, 12.2326548348556]]]]}, "properties": {"taskId": 144, "taskX": 7560, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 12.2111801893498], [-13.8867187475125, 12.2326548348556], [-13.8647460912664, 12.2326548348556], [-13.8647460912664, 12.2111801893498], [-13.8867187475125, 12.2111801893498]]]]}, "properties": {"taskId": 143, "taskX": 7560, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 12.1897038018535], [-13.8867187475125, 12.2111801893498], [-13.8647460912664, 12.2111801893498], [-13.8647460912664, 12.1897038018535], [-13.8867187475125, 12.1897038018535]]]]}, "properties": {"taskId": 142, "taskX": 7560, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 12.1682256752432], [-13.8867187475125, 12.1897038018535], [-13.8647460912664, 12.1897038018535], [-13.8647460912664, 12.1682256752432], [-13.8867187475125, 12.1682256752432]]]]}, "properties": {"taskId": 141, "taskX": 7560, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 12.1467458123965], [-13.8867187475125, 12.1682256752432], [-13.8647460912664, 12.1682256752432], [-13.8647460912664, 12.1467458123965], [-13.8867187475125, 12.1467458123965]]]]}, "properties": {"taskId": 140, "taskX": 7560, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 12.1252642161921], [-13.8867187475125, 12.1467458123965], [-13.8647460912664, 12.1467458123965], [-13.8647460912664, 12.1252642161921], [-13.8867187475125, 12.1252642161921]]]]}, "properties": {"taskId": 139, "taskX": 7560, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 12.10378088951], [-13.8867187475125, 12.1252642161921], [-13.8647460912664, 12.1252642161921], [-13.8647460912664, 12.10378088951], [-13.8867187475125, 12.10378088951]]]]}, "properties": {"taskId": 138, "taskX": 7560, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 12.0822958352314], [-13.8867187475125, 12.10378088951], [-13.8647460912664, 12.10378088951], [-13.8647460912664, 12.0822958352314], [-13.8867187475125, 12.0822958352314]]]]}, "properties": {"taskId": 137, "taskX": 7560, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 11.7383023693636], [-13.8867187475125, 11.759814672365], [-13.8647460912664, 11.759814672365], [-13.8647460912664, 11.7383023693636], [-13.8867187475125, 11.7383023693636]]]]}, "properties": {"taskId": 136, "taskX": 7560, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 11.7167883879289], [-13.8867187475125, 11.7383023693636], [-13.8647460912664, 11.7383023693636], [-13.8647460912664, 11.7167883879289], [-13.8867187475125, 11.7167883879289]]]]}, "properties": {"taskId": 135, "taskX": 7560, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 11.6952727309636], [-13.8867187475125, 11.7167883879289], [-13.8647460912664, 11.7167883879289], [-13.8647460912664, 11.6952727309636], [-13.8867187475125, 11.6952727309636]]]]}, "properties": {"taskId": 134, "taskX": 7560, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 11.6737554013713], [-13.8867187475125, 11.6952727309636], [-13.8647460912664, 11.6952727309636], [-13.8647460912664, 11.6737554013713], [-13.8867187475125, 11.6737554013713]]]]}, "properties": {"taskId": 133, "taskX": 7560, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 11.6091934058879], [-13.8867187475125, 11.6307157359267], [-13.8647460912664, 11.6307157359267], [-13.8647460912664, 11.6091934058879], [-13.8867187475125, 11.6091934058879]]]]}, "properties": {"taskId": 130, "taskX": 7560, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 11.5876694148488], [-13.8867187475125, 11.6091934058879], [-13.8647460912664, 11.6091934058879], [-13.8647460912664, 11.5876694148488], [-13.8867187475125, 11.5876694148488]]]]}, "properties": {"taskId": 129, "taskX": 7560, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 11.5661437657192], [-13.8867187475125, 11.5876694148488], [-13.8647460912664, 11.5876694148488], [-13.8647460912664, 11.5661437657192], [-13.8867187475125, 11.5661437657192]]]]}, "properties": {"taskId": 128, "taskX": 7560, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 11.5446164614097], [-13.8867187475125, 11.5661437657192], [-13.8647460912664, 11.5661437657192], [-13.8647460912664, 11.5446164614097], [-13.8867187475125, 11.5446164614097]]]]}, "properties": {"taskId": 127, "taskX": 7560, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 11.5230875048322], [-13.8867187475125, 11.5446164614097], [-13.8647460912664, 11.5446164614097], [-13.8647460912664, 11.5230875048322], [-13.8867187475125, 11.5230875048322]]]]}, "properties": {"taskId": 126, "taskX": 7560, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 11.5015568988999], [-13.8867187475125, 11.5230875048322], [-13.8647460912664, 11.5230875048322], [-13.8647460912664, 11.5015568988999], [-13.8867187475125, 11.5015568988999]]]]}, "properties": {"taskId": 125, "taskX": 7560, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 11.480024646527], [-13.8867187475125, 11.5015568988999], [-13.8647460912664, 11.5015568988999], [-13.8647460912664, 11.480024646527], [-13.8867187475125, 11.480024646527]]]]}, "properties": {"taskId": 124, "taskX": 7560, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 11.4584907506287], [-13.8867187475125, 11.480024646527], [-13.8647460912664, 11.480024646527], [-13.8647460912664, 11.4584907506287], [-13.8867187475125, 11.4584907506287]]]]}, "properties": {"taskId": 123, "taskX": 7560, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 11.4369552141218], [-13.8867187475125, 11.4584907506287], [-13.8647460912664, 11.4584907506287], [-13.8647460912664, 11.4369552141218], [-13.8867187475125, 11.4369552141218]]]]}, "properties": {"taskId": 122, "taskX": 7560, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 11.4154180399237], [-13.8867187475125, 11.4369552141218], [-13.8647460912664, 11.4369552141218], [-13.8647460912664, 11.4154180399237], [-13.8867187475125, 11.4154180399237]]]]}, "properties": {"taskId": 121, "taskX": 7560, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 11.3938792309534], [-13.8867187475125, 11.4154180399237], [-13.8647460912664, 11.4154180399237], [-13.8647460912664, 11.3938792309534], [-13.8867187475125, 11.3938792309534]]]]}, "properties": {"taskId": 120, "taskX": 7560, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 11.3507967203771], [-13.8867187475125, 11.3723387901308], [-13.8647460912664, 11.3723387901308], [-13.8647460912664, 11.3507967203771], [-13.8867187475125, 11.3507967203771]]]]}, "properties": {"taskId": 118, "taskX": 7560, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 11.3292530246144], [-13.8867187475125, 11.3507967203771], [-13.8647460912664, 11.3507967203771], [-13.8647460912664, 11.3292530246144], [-13.8867187475125, 11.3292530246144]]]]}, "properties": {"taskId": 117, "taskX": 7560, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.8867187475125, 11.2861607667571], [-13.8867187475125, 11.3077077057662], [-13.8647460912664, 11.3077077057662], [-13.8647460912664, 11.2861607667571], [-13.8867187475125, 11.2861607667571]]]]}, "properties": {"taskId": 115, "taskX": 7560, "taskY": 8709, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9086914037586, 12.2326548348556], [-13.9086914037586, 12.2541277354958], [-13.8867187475125, 12.2541277354958], [-13.8867187475125, 12.2326548348556], [-13.9086914037586, 12.2326548348556]]]]}, "properties": {"taskId": 114, "taskX": 7559, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9086914037586, 12.1897038018535], [-13.9086914037586, 12.2111801893498], [-13.8867187475125, 12.2111801893498], [-13.8867187475125, 12.1897038018535], [-13.9086914037586, 12.1897038018535]]]]}, "properties": {"taskId": 112, "taskX": 7559, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9086914037586, 12.1682256752432], [-13.9086914037586, 12.1897038018535], [-13.8867187475125, 12.1897038018535], [-13.8867187475125, 12.1682256752432], [-13.9086914037586, 12.1682256752432]]]]}, "properties": {"taskId": 111, "taskX": 7559, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9086914037586, 12.1467458123965], [-13.9086914037586, 12.1682256752432], [-13.8867187475125, 12.1682256752432], [-13.8867187475125, 12.1467458123965], [-13.9086914037586, 12.1467458123965]]]]}, "properties": {"taskId": 110, "taskX": 7559, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9086914037586, 12.1252642161921], [-13.9086914037586, 12.1467458123965], [-13.8867187475125, 12.1467458123965], [-13.8867187475125, 12.1252642161921], [-13.9086914037586, 12.1252642161921]]]]}, "properties": {"taskId": 109, "taskX": 7559, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9086914037586, 12.10378088951], [-13.9086914037586, 12.1252642161921], [-13.8867187475125, 12.1252642161921], [-13.8867187475125, 12.10378088951], [-13.9086914037586, 12.10378088951]]]]}, "properties": {"taskId": 108, "taskX": 7559, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9086914037586, 11.6737554013713], [-13.9086914037586, 11.6952727309636], [-13.8867187475125, 11.6952727309636], [-13.8867187475125, 11.6737554013713], [-13.9086914037586, 11.6737554013713]]]]}, "properties": {"taskId": 107, "taskX": 7559, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9086914037586, 11.652236402057], [-13.9086914037586, 11.6737554013713], [-13.8867187475125, 11.6737554013713], [-13.8867187475125, 11.652236402057], [-13.9086914037586, 11.652236402057]]]]}, "properties": {"taskId": 106, "taskX": 7559, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9086914037586, 11.6307157359267], [-13.9086914037586, 11.652236402057], [-13.8867187475125, 11.652236402057], [-13.8867187475125, 11.6307157359267], [-13.9086914037586, 11.6307157359267]]]]}, "properties": {"taskId": 105, "taskX": 7559, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9086914037586, 11.6091934058879], [-13.9086914037586, 11.6307157359267], [-13.8867187475125, 11.6307157359267], [-13.8867187475125, 11.6091934058879], [-13.9086914037586, 11.6091934058879]]]]}, "properties": {"taskId": 104, "taskX": 7559, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9086914037586, 11.5876694148488], [-13.9086914037586, 11.6091934058879], [-13.8867187475125, 11.6091934058879], [-13.8867187475125, 11.5876694148488], [-13.9086914037586, 11.5876694148488]]]]}, "properties": {"taskId": 103, "taskX": 7559, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9086914037586, 11.5661437657192], [-13.9086914037586, 11.5876694148488], [-13.8867187475125, 11.5876694148488], [-13.8867187475125, 11.5661437657192], [-13.9086914037586, 11.5661437657192]]]]}, "properties": {"taskId": 102, "taskX": 7559, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9086914037586, 11.5230875048322], [-13.9086914037586, 11.5446164614097], [-13.8867187475125, 11.5446164614097], [-13.8867187475125, 11.5230875048322], [-13.9086914037586, 11.5230875048322]]]]}, "properties": {"taskId": 100, "taskX": 7559, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9086914037586, 11.5015568988999], [-13.9086914037586, 11.5230875048322], [-13.8867187475125, 11.5230875048322], [-13.8867187475125, 11.5015568988999], [-13.9086914037586, 11.5015568988999]]]]}, "properties": {"taskId": 99, "taskX": 7559, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9086914037586, 11.4584907506287], [-13.9086914037586, 11.480024646527], [-13.8867187475125, 11.480024646527], [-13.8867187475125, 11.4584907506287], [-13.9086914037586, 11.4584907506287]]]]}, "properties": {"taskId": 97, "taskX": 7559, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9086914037586, 11.4369552141218], [-13.9086914037586, 11.4584907506287], [-13.8867187475125, 11.4584907506287], [-13.8867187475125, 11.4369552141218], [-13.9086914037586, 11.4369552141218]]]]}, "properties": {"taskId": 96, "taskX": 7559, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9086914037586, 11.3938792309534], [-13.9086914037586, 11.4154180399237], [-13.8867187475125, 11.4154180399237], [-13.8867187475125, 11.3938792309534], [-13.9086914037586, 11.3938792309534]]]]}, "properties": {"taskId": 94, "taskX": 7559, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9086914037586, 11.3507967203771], [-13.9086914037586, 11.3723387901308], [-13.8867187475125, 11.3723387901308], [-13.8867187475125, 11.3507967203771], [-13.9086914037586, 11.3507967203771]]]]}, "properties": {"taskId": 92, "taskX": 7559, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9086914037586, 11.3292530246144], [-13.9086914037586, 11.3507967203771], [-13.8867187475125, 11.3507967203771], [-13.8867187475125, 11.3292530246144], [-13.9086914037586, 11.3292530246144]]]]}, "properties": {"taskId": 91, "taskX": 7559, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9306640600046, 12.2326548348556], [-13.9306640600046, 12.2541277354958], [-13.9086914037586, 12.2541277354958], [-13.9086914037586, 12.2326548348556], [-13.9306640600046, 12.2326548348556]]]]}, "properties": {"taskId": 90, "taskX": 7558, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9306640600046, 12.1897038018535], [-13.9306640600046, 12.2111801893498], [-13.9086914037586, 12.2111801893498], [-13.9086914037586, 12.1897038018535], [-13.9306640600046, 12.1897038018535]]]]}, "properties": {"taskId": 88, "taskX": 7558, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9306640600046, 12.1467458123965], [-13.9306640600046, 12.1682256752432], [-13.9086914037586, 12.1682256752432], [-13.9086914037586, 12.1467458123965], [-13.9306640600046, 12.1467458123965]]]]}, "properties": {"taskId": 86, "taskX": 7558, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9306640600046, 12.1252642161921], [-13.9306640600046, 12.1467458123965], [-13.9086914037586, 12.1467458123965], [-13.9086914037586, 12.1252642161921], [-13.9306640600046, 12.1252642161921]]]]}, "properties": {"taskId": 85, "taskX": 7558, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9306640600046, 11.6737554013713], [-13.9306640600046, 11.6952727309636], [-13.9086914037586, 11.6952727309636], [-13.9086914037586, 11.6737554013713], [-13.9306640600046, 11.6737554013713]]]]}, "properties": {"taskId": 84, "taskX": 7558, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9306640600046, 11.652236402057], [-13.9306640600046, 11.6737554013713], [-13.9086914037586, 11.6737554013713], [-13.9086914037586, 11.652236402057], [-13.9306640600046, 11.652236402057]]]]}, "properties": {"taskId": 83, "taskX": 7558, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9306640600046, 11.6307157359267], [-13.9306640600046, 11.652236402057], [-13.9086914037586, 11.652236402057], [-13.9086914037586, 11.6307157359267], [-13.9306640600046, 11.6307157359267]]]]}, "properties": {"taskId": 82, "taskX": 7558, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9306640600046, 11.6091934058879], [-13.9306640600046, 11.6307157359267], [-13.9086914037586, 11.6307157359267], [-13.9086914037586, 11.6091934058879], [-13.9306640600046, 11.6091934058879]]]]}, "properties": {"taskId": 81, "taskX": 7558, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9306640600046, 11.5876694148488], [-13.9306640600046, 11.6091934058879], [-13.9086914037586, 11.6091934058879], [-13.9086914037586, 11.5876694148488], [-13.9306640600046, 11.5876694148488]]]]}, "properties": {"taskId": 80, "taskX": 7558, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9306640600046, 11.5661437657192], [-13.9306640600046, 11.5876694148488], [-13.9086914037586, 11.5876694148488], [-13.9086914037586, 11.5661437657192], [-13.9306640600046, 11.5661437657192]]]]}, "properties": {"taskId": 79, "taskX": 7558, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9306640600046, 11.5446164614097], [-13.9306640600046, 11.5661437657192], [-13.9086914037586, 11.5661437657192], [-13.9086914037586, 11.5446164614097], [-13.9306640600046, 11.5446164614097]]]]}, "properties": {"taskId": 78, "taskX": 7558, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9306640600046, 11.5230875048322], [-13.9306640600046, 11.5446164614097], [-13.9086914037586, 11.5446164614097], [-13.9086914037586, 11.5230875048322], [-13.9306640600046, 11.5230875048322]]]]}, "properties": {"taskId": 77, "taskX": 7558, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9306640600046, 11.5015568988999], [-13.9306640600046, 11.5230875048322], [-13.9086914037586, 11.5230875048322], [-13.9086914037586, 11.5015568988999], [-13.9306640600046, 11.5015568988999]]]]}, "properties": {"taskId": 76, "taskX": 7558, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9306640600046, 11.480024646527], [-13.9306640600046, 11.5015568988999], [-13.9086914037586, 11.5015568988999], [-13.9086914037586, 11.480024646527], [-13.9306640600046, 11.480024646527]]]]}, "properties": {"taskId": 75, "taskX": 7558, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9306640600046, 11.4584907506287], [-13.9306640600046, 11.480024646527], [-13.9086914037586, 11.480024646527], [-13.9086914037586, 11.4584907506287], [-13.9306640600046, 11.4584907506287]]]]}, "properties": {"taskId": 74, "taskX": 7558, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9306640600046, 11.4369552141218], [-13.9306640600046, 11.4584907506287], [-13.9086914037586, 11.4584907506287], [-13.9086914037586, 11.4369552141218], [-13.9306640600046, 11.4369552141218]]]]}, "properties": {"taskId": 73, "taskX": 7558, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9306640600046, 11.4154180399237], [-13.9306640600046, 11.4369552141218], [-13.9086914037586, 11.4369552141218], [-13.9086914037586, 11.4154180399237], [-13.9306640600046, 11.4154180399237]]]]}, "properties": {"taskId": 72, "taskX": 7558, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9306640600046, 11.3938792309534], [-13.9306640600046, 11.4154180399237], [-13.9086914037586, 11.4154180399237], [-13.9086914037586, 11.3938792309534], [-13.9306640600046, 11.3938792309534]]]]}, "properties": {"taskId": 71, "taskX": 7558, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9306640600046, 11.3723387901308], [-13.9306640600046, 11.3938792309534], [-13.9086914037586, 11.3938792309534], [-13.9086914037586, 11.3723387901308], [-13.9306640600046, 11.3723387901308]]]]}, "properties": {"taskId": 70, "taskX": 7558, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9306640600046, 11.3507967203771], [-13.9306640600046, 11.3723387901308], [-13.9086914037586, 11.3723387901308], [-13.9086914037586, 11.3507967203771], [-13.9306640600046, 11.3507967203771]]]]}, "properties": {"taskId": 69, "taskX": 7558, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9526367162507, 12.2111801893498], [-13.9526367162507, 12.2326548348556], [-13.9306640600046, 12.2326548348556], [-13.9306640600046, 12.2111801893498], [-13.9526367162507, 12.2111801893498]]]]}, "properties": {"taskId": 68, "taskX": 7557, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9526367162507, 12.1897038018535], [-13.9526367162507, 12.2111801893498], [-13.9306640600046, 12.2111801893498], [-13.9306640600046, 12.1897038018535], [-13.9526367162507, 12.1897038018535]]]]}, "properties": {"taskId": 67, "taskX": 7557, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9526367162507, 12.1682256752432], [-13.9526367162507, 12.1897038018535], [-13.9306640600046, 12.1897038018535], [-13.9306640600046, 12.1682256752432], [-13.9526367162507, 12.1682256752432]]]]}, "properties": {"taskId": 66, "taskX": 7557, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9526367162507, 12.1467458123965], [-13.9526367162507, 12.1682256752432], [-13.9306640600046, 12.1682256752432], [-13.9306640600046, 12.1467458123965], [-13.9526367162507, 12.1467458123965]]]]}, "properties": {"taskId": 65, "taskX": 7557, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9526367162507, 12.1252642161921], [-13.9526367162507, 12.1467458123965], [-13.9306640600046, 12.1467458123965], [-13.9306640600046, 12.1252642161921], [-13.9526367162507, 12.1252642161921]]]]}, "properties": {"taskId": 64, "taskX": 7557, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9526367162507, 11.6737554013713], [-13.9526367162507, 11.6952727309636], [-13.9306640600046, 11.6952727309636], [-13.9306640600046, 11.6737554013713], [-13.9526367162507, 11.6737554013713]]]]}, "properties": {"taskId": 63, "taskX": 7557, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9526367162507, 11.652236402057], [-13.9526367162507, 11.6737554013713], [-13.9306640600046, 11.6737554013713], [-13.9306640600046, 11.652236402057], [-13.9526367162507, 11.652236402057]]]]}, "properties": {"taskId": 62, "taskX": 7557, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9526367162507, 11.6307157359267], [-13.9526367162507, 11.652236402057], [-13.9306640600046, 11.652236402057], [-13.9306640600046, 11.6307157359267], [-13.9526367162507, 11.6307157359267]]]]}, "properties": {"taskId": 61, "taskX": 7557, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9526367162507, 11.6091934058879], [-13.9526367162507, 11.6307157359267], [-13.9306640600046, 11.6307157359267], [-13.9306640600046, 11.6091934058879], [-13.9526367162507, 11.6091934058879]]]]}, "properties": {"taskId": 60, "taskX": 7557, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9526367162507, 11.5876694148488], [-13.9526367162507, 11.6091934058879], [-13.9306640600046, 11.6091934058879], [-13.9306640600046, 11.5876694148488], [-13.9526367162507, 11.5876694148488]]]]}, "properties": {"taskId": 59, "taskX": 7557, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9526367162507, 11.5661437657192], [-13.9526367162507, 11.5876694148488], [-13.9306640600046, 11.5876694148488], [-13.9306640600046, 11.5661437657192], [-13.9526367162507, 11.5661437657192]]]]}, "properties": {"taskId": 58, "taskX": 7557, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9526367162507, 11.5446164614097], [-13.9526367162507, 11.5661437657192], [-13.9306640600046, 11.5661437657192], [-13.9306640600046, 11.5446164614097], [-13.9526367162507, 11.5446164614097]]]]}, "properties": {"taskId": 57, "taskX": 7557, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9526367162507, 11.5230875048322], [-13.9526367162507, 11.5446164614097], [-13.9306640600046, 11.5446164614097], [-13.9306640600046, 11.5230875048322], [-13.9526367162507, 11.5230875048322]]]]}, "properties": {"taskId": 56, "taskX": 7557, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9526367162507, 11.5015568988999], [-13.9526367162507, 11.5230875048322], [-13.9306640600046, 11.5230875048322], [-13.9306640600046, 11.5015568988999], [-13.9526367162507, 11.5015568988999]]]]}, "properties": {"taskId": 55, "taskX": 7557, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9526367162507, 11.480024646527], [-13.9526367162507, 11.5015568988999], [-13.9306640600046, 11.5015568988999], [-13.9306640600046, 11.480024646527], [-13.9526367162507, 11.480024646527]]]]}, "properties": {"taskId": 54, "taskX": 7557, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9526367162507, 11.4584907506287], [-13.9526367162507, 11.480024646527], [-13.9306640600046, 11.480024646527], [-13.9306640600046, 11.4584907506287], [-13.9526367162507, 11.4584907506287]]]]}, "properties": {"taskId": 53, "taskX": 7557, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9526367162507, 11.4369552141218], [-13.9526367162507, 11.4584907506287], [-13.9306640600046, 11.4584907506287], [-13.9306640600046, 11.4369552141218], [-13.9526367162507, 11.4369552141218]]]]}, "properties": {"taskId": 52, "taskX": 7557, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9526367162507, 11.4154180399237], [-13.9526367162507, 11.4369552141218], [-13.9306640600046, 11.4369552141218], [-13.9306640600046, 11.4154180399237], [-13.9526367162507, 11.4154180399237]]]]}, "properties": {"taskId": 51, "taskX": 7557, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9526367162507, 11.3938792309534], [-13.9526367162507, 11.4154180399237], [-13.9306640600046, 11.4154180399237], [-13.9306640600046, 11.3938792309534], [-13.9526367162507, 11.3938792309534]]]]}, "properties": {"taskId": 50, "taskX": 7557, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9526367162507, 11.3723387901308], [-13.9526367162507, 11.3938792309534], [-13.9306640600046, 11.3938792309534], [-13.9306640600046, 11.3723387901308], [-13.9526367162507, 11.3723387901308]]]]}, "properties": {"taskId": 49, "taskX": 7557, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9746093724968, 12.1897038018535], [-13.9746093724968, 12.2111801893498], [-13.9526367162507, 12.2111801893498], [-13.9526367162507, 12.1897038018535], [-13.9746093724968, 12.1897038018535]]]]}, "properties": {"taskId": 48, "taskX": 7556, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9746093724968, 12.1682256752432], [-13.9746093724968, 12.1897038018535], [-13.9526367162507, 12.1897038018535], [-13.9526367162507, 12.1682256752432], [-13.9746093724968, 12.1682256752432]]]]}, "properties": {"taskId": 47, "taskX": 7556, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9746093724968, 12.1467458123965], [-13.9746093724968, 12.1682256752432], [-13.9526367162507, 12.1682256752432], [-13.9526367162507, 12.1467458123965], [-13.9746093724968, 12.1467458123965]]]]}, "properties": {"taskId": 46, "taskX": 7556, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9746093724968, 12.1252642161921], [-13.9746093724968, 12.1467458123965], [-13.9526367162507, 12.1467458123965], [-13.9526367162507, 12.1252642161921], [-13.9746093724968, 12.1252642161921]]]]}, "properties": {"taskId": 45, "taskX": 7556, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9746093724968, 11.652236402057], [-13.9746093724968, 11.6737554013713], [-13.9526367162507, 11.6737554013713], [-13.9526367162507, 11.652236402057], [-13.9746093724968, 11.652236402057]]]]}, "properties": {"taskId": 44, "taskX": 7556, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9746093724968, 11.6307157359267], [-13.9746093724968, 11.652236402057], [-13.9526367162507, 11.652236402057], [-13.9526367162507, 11.6307157359267], [-13.9746093724968, 11.6307157359267]]]]}, "properties": {"taskId": 43, "taskX": 7556, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 12.2755988883965], [-13.4692382788373, 12.2970682906849], [-13.4472656225912, 12.2970682906849], [-13.4472656225912, 12.2755988883965], [-13.4692382788373, 12.2755988883965]]]]}, "properties": {"taskId": 928, "taskX": 7579, "taskY": 8755, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 12.2541277354958], [-13.4692382788373, 12.2755988883965], [-13.4472656225912, 12.2755988883965], [-13.4472656225912, 12.2541277354958], [-13.4692382788373, 12.2541277354958]]]]}, "properties": {"taskId": 927, "taskX": 7579, "taskY": 8754, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 12.2326548348556], [-13.4692382788373, 12.2541277354958], [-13.4472656225912, 12.2541277354958], [-13.4472656225912, 12.2326548348556], [-13.4692382788373, 12.2326548348556]]]]}, "properties": {"taskId": 926, "taskX": 7579, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 12.2111801893498], [-13.4692382788373, 12.2326548348556], [-13.4472656225912, 12.2326548348556], [-13.4472656225912, 12.2111801893498], [-13.4692382788373, 12.2111801893498]]]]}, "properties": {"taskId": 925, "taskX": 7579, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 12.1897038018535], [-13.4692382788373, 12.2111801893498], [-13.4472656225912, 12.2111801893498], [-13.4472656225912, 12.1897038018535], [-13.4692382788373, 12.1897038018535]]]]}, "properties": {"taskId": 924, "taskX": 7579, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 12.1682256752432], [-13.4692382788373, 12.1897038018535], [-13.4472656225912, 12.1897038018535], [-13.4472656225912, 12.1682256752432], [-13.4692382788373, 12.1682256752432]]]]}, "properties": {"taskId": 923, "taskX": 7579, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 12.1252642161921], [-13.4692382788373, 12.1467458123965], [-13.4472656225912, 12.1467458123965], [-13.4472656225912, 12.1252642161921], [-13.4692382788373, 12.1252642161921]]]]}, "properties": {"taskId": 921, "taskX": 7579, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 12.10378088951], [-13.4692382788373, 12.1252642161921], [-13.4472656225912, 12.1252642161921], [-13.4472656225912, 12.10378088951], [-13.4692382788373, 12.10378088951]]]]}, "properties": {"taskId": 920, "taskX": 7579, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 12.0822958352314], [-13.4692382788373, 12.10378088951], [-13.4472656225912, 12.10378088951], [-13.4472656225912, 12.0822958352314], [-13.4692382788373, 12.0822958352314]]]]}, "properties": {"taskId": 919, "taskX": 7579, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 12.0608090562388], [-13.4692382788373, 12.0822958352314], [-13.4472656225912, 12.0822958352314], [-13.4472656225912, 12.0608090562388], [-13.4692382788373, 12.0608090562388]]]]}, "properties": {"taskId": 918, "taskX": 7579, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 12.0393205554158], [-13.4692382788373, 12.0608090562388], [-13.4472656225912, 12.0608090562388], [-13.4472656225912, 12.0393205554158], [-13.4692382788373, 12.0393205554158]]]]}, "properties": {"taskId": 917, "taskX": 7579, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 12.0178303356471], [-13.4692382788373, 12.0393205554158], [-13.4472656225912, 12.0393205554158], [-13.4472656225912, 12.0178303356471], [-13.4692382788373, 12.0178303356471]]]]}, "properties": {"taskId": 916, "taskX": 7579, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.9963383998188], [-13.4692382788373, 12.0178303356471], [-13.4472656225912, 12.0178303356471], [-13.4472656225912, 11.9963383998188], [-13.4692382788373, 11.9963383998188]]]]}, "properties": {"taskId": 915, "taskX": 7579, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.9748447508181], [-13.4692382788373, 11.9963383998188], [-13.4472656225912, 11.9963383998188], [-13.4472656225912, 11.9748447508181], [-13.4692382788373, 11.9748447508181]]]]}, "properties": {"taskId": 914, "taskX": 7579, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.9533493915333], [-13.4692382788373, 11.9748447508181], [-13.4472656225912, 11.9748447508181], [-13.4472656225912, 11.9533493915333], [-13.4692382788373, 11.9533493915333]]]]}, "properties": {"taskId": 913, "taskX": 7579, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.9318523248542], [-13.4692382788373, 11.9533493915333], [-13.4472656225912, 11.9533493915333], [-13.4472656225912, 11.9318523248542], [-13.4692382788373, 11.9318523248542]]]]}, "properties": {"taskId": 912, "taskX": 7579, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.9103535536714], [-13.4692382788373, 11.9318523248542], [-13.4472656225912, 11.9318523248542], [-13.4472656225912, 11.9103535536714], [-13.4692382788373, 11.9103535536714]]]]}, "properties": {"taskId": 911, "taskX": 7579, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.888853080877], [-13.4692382788373, 11.9103535536714], [-13.4472656225912, 11.9103535536714], [-13.4472656225912, 11.888853080877], [-13.4692382788373, 11.888853080877]]]]}, "properties": {"taskId": 910, "taskX": 7579, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.867350909364], [-13.4692382788373, 11.888853080877], [-13.4472656225912, 11.888853080877], [-13.4472656225912, 11.867350909364], [-13.4692382788373, 11.867350909364]]]]}, "properties": {"taskId": 909, "taskX": 7579, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.8458470420268], [-13.4692382788373, 11.867350909364], [-13.4472656225912, 11.867350909364], [-13.4472656225912, 11.8458470420268], [-13.4692382788373, 11.8458470420268]]]]}, "properties": {"taskId": 908, "taskX": 7579, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.8243414817611], [-13.4692382788373, 11.8458470420268], [-13.4472656225912, 11.8458470420268], [-13.4472656225912, 11.8243414817611], [-13.4692382788373, 11.8243414817611]]]]}, "properties": {"taskId": 907, "taskX": 7579, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.8028342314634], [-13.4692382788373, 11.8243414817611], [-13.4472656225912, 11.8243414817611], [-13.4472656225912, 11.8028342314634], [-13.4692382788373, 11.8028342314634]]]]}, "properties": {"taskId": 906, "taskX": 7579, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.7813252940317], [-13.4692382788373, 11.8028342314634], [-13.4472656225912, 11.8028342314634], [-13.4472656225912, 11.7813252940317], [-13.4692382788373, 11.7813252940317]]]]}, "properties": {"taskId": 905, "taskX": 7579, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.7167883879289], [-13.4692382788373, 11.7383023693636], [-13.4472656225912, 11.7383023693636], [-13.4472656225912, 11.7167883879289], [-13.4692382788373, 11.7167883879289]]]]}, "properties": {"taskId": 902, "taskX": 7579, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.6952727309636], [-13.4692382788373, 11.7167883879289], [-13.4472656225912, 11.7167883879289], [-13.4472656225912, 11.6952727309636], [-13.4692382788373, 11.6952727309636]]]]}, "properties": {"taskId": 901, "taskX": 7579, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.6737554013713], [-13.4692382788373, 11.6952727309636], [-13.4472656225912, 11.6952727309636], [-13.4472656225912, 11.6737554013713], [-13.4692382788373, 11.6737554013713]]]]}, "properties": {"taskId": 900, "taskX": 7579, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.652236402057], [-13.4692382788373, 11.6737554013713], [-13.4472656225912, 11.6737554013713], [-13.4472656225912, 11.652236402057], [-13.4692382788373, 11.652236402057]]]]}, "properties": {"taskId": 899, "taskX": 7579, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.6307157359267], [-13.4692382788373, 11.652236402057], [-13.4472656225912, 11.652236402057], [-13.4472656225912, 11.6307157359267], [-13.4692382788373, 11.6307157359267]]]]}, "properties": {"taskId": 898, "taskX": 7579, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.6091934058879], [-13.4692382788373, 11.6307157359267], [-13.4472656225912, 11.6307157359267], [-13.4472656225912, 11.6091934058879], [-13.4692382788373, 11.6091934058879]]]]}, "properties": {"taskId": 897, "taskX": 7579, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.5876694148488], [-13.4692382788373, 11.6091934058879], [-13.4472656225912, 11.6091934058879], [-13.4472656225912, 11.5876694148488], [-13.4692382788373, 11.5876694148488]]]]}, "properties": {"taskId": 896, "taskX": 7579, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.5446164614097], [-13.4692382788373, 11.5661437657192], [-13.4472656225912, 11.5661437657192], [-13.4472656225912, 11.5446164614097], [-13.4692382788373, 11.5446164614097]]]]}, "properties": {"taskId": 894, "taskX": 7579, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.5230875048322], [-13.4692382788373, 11.5446164614097], [-13.4472656225912, 11.5446164614097], [-13.4472656225912, 11.5230875048322], [-13.4692382788373, 11.5230875048322]]]]}, "properties": {"taskId": 893, "taskX": 7579, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.5015568988999], [-13.4692382788373, 11.5230875048322], [-13.4472656225912, 11.5230875048322], [-13.4472656225912, 11.5015568988999], [-13.4692382788373, 11.5015568988999]]]]}, "properties": {"taskId": 892, "taskX": 7579, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.480024646527], [-13.4692382788373, 11.5015568988999], [-13.4472656225912, 11.5015568988999], [-13.4472656225912, 11.480024646527], [-13.4692382788373, 11.480024646527]]]]}, "properties": {"taskId": 891, "taskX": 7579, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.4584907506287], [-13.4692382788373, 11.480024646527], [-13.4472656225912, 11.480024646527], [-13.4472656225912, 11.4584907506287], [-13.4692382788373, 11.4584907506287]]]]}, "properties": {"taskId": 890, "taskX": 7579, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.4369552141218], [-13.4692382788373, 11.4584907506287], [-13.4472656225912, 11.4584907506287], [-13.4472656225912, 11.4369552141218], [-13.4692382788373, 11.4369552141218]]]]}, "properties": {"taskId": 889, "taskX": 7579, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.4154180399237], [-13.4692382788373, 11.4369552141218], [-13.4472656225912, 11.4369552141218], [-13.4472656225912, 11.4154180399237], [-13.4692382788373, 11.4154180399237]]]]}, "properties": {"taskId": 888, "taskX": 7579, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.3938792309534], [-13.4692382788373, 11.4154180399237], [-13.4472656225912, 11.4154180399237], [-13.4472656225912, 11.3938792309534], [-13.4692382788373, 11.3938792309534]]]]}, "properties": {"taskId": 887, "taskX": 7579, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.3723387901308], [-13.4692382788373, 11.3938792309534], [-13.4472656225912, 11.3938792309534], [-13.4472656225912, 11.3723387901308], [-13.4692382788373, 11.3723387901308]]]]}, "properties": {"taskId": 886, "taskX": 7579, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.3507967203771], [-13.4692382788373, 11.3723387901308], [-13.4472656225912, 11.3723387901308], [-13.4472656225912, 11.3507967203771], [-13.4692382788373, 11.3507967203771]]]]}, "properties": {"taskId": 885, "taskX": 7579, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.3292530246144], [-13.4692382788373, 11.3507967203771], [-13.4472656225912, 11.3507967203771], [-13.4472656225912, 11.3292530246144], [-13.4692382788373, 11.3292530246144]]]]}, "properties": {"taskId": 884, "taskX": 7579, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.3077077057662], [-13.4692382788373, 11.3292530246144], [-13.4472656225912, 11.3292530246144], [-13.4472656225912, 11.3077077057662], [-13.4692382788373, 11.3077077057662]]]]}, "properties": {"taskId": 883, "taskX": 7579, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4692382788373, 11.2861607667571], [-13.4692382788373, 11.3077077057662], [-13.4472656225912, 11.3077077057662], [-13.4472656225912, 11.2861607667571], [-13.4692382788373, 11.2861607667571]]]]}, "properties": {"taskId": 882, "taskX": 7579, "taskY": 8709, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 12.2970682906849], [-13.4912109350834, 12.3185359394895], [-13.4692382788373, 12.3185359394895], [-13.4692382788373, 12.2970682906849], [-13.4912109350834, 12.2970682906849]]]]}, "properties": {"taskId": 881, "taskX": 7578, "taskY": 8756, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 12.2755988883965], [-13.4912109350834, 12.2970682906849], [-13.4692382788373, 12.2970682906849], [-13.4692382788373, 12.2755988883965], [-13.4912109350834, 12.2755988883965]]]]}, "properties": {"taskId": 880, "taskX": 7578, "taskY": 8755, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 12.2541277354958], [-13.4912109350834, 12.2755988883965], [-13.4692382788373, 12.2755988883965], [-13.4692382788373, 12.2541277354958], [-13.4912109350834, 12.2541277354958]]]]}, "properties": {"taskId": 879, "taskX": 7578, "taskY": 8754, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.4912109350834, 12.2111801893498], [-13.4912109350834, 12.2326548348556], [-13.4692382788373, 12.2326548348556], [-13.4692382788373, 12.2111801893498], [-13.4912109350834, 12.2111801893498]]]]}, "properties": {"taskId": 877, "taskX": 7578, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 12.0608090562388], [-13.6889648412979, 12.0822958352314], [-13.6669921850519, 12.0822958352314], [-13.6669921850519, 12.0608090562388], [-13.6889648412979, 12.0608090562388]]]]}, "properties": {"taskId": 470, "taskX": 7569, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 12.0393205554158], [-13.6889648412979, 12.0608090562388], [-13.6669921850519, 12.0608090562388], [-13.6669921850519, 12.0393205554158], [-13.6889648412979, 12.0393205554158]]]]}, "properties": {"taskId": 469, "taskX": 7569, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 12.0178303356471], [-13.6889648412979, 12.0393205554158], [-13.6669921850519, 12.0393205554158], [-13.6669921850519, 12.0178303356471], [-13.6889648412979, 12.0178303356471]]]]}, "properties": {"taskId": 468, "taskX": 7569, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.9748447508181], [-13.6889648412979, 11.9963383998188], [-13.6669921850519, 11.9963383998188], [-13.6669921850519, 11.9748447508181], [-13.6889648412979, 11.9748447508181]]]]}, "properties": {"taskId": 466, "taskX": 7569, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.9533493915333], [-13.6889648412979, 11.9748447508181], [-13.6669921850519, 11.9748447508181], [-13.6669921850519, 11.9533493915333], [-13.6889648412979, 11.9533493915333]]]]}, "properties": {"taskId": 465, "taskX": 7569, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.9318523248542], [-13.6889648412979, 11.9533493915333], [-13.6669921850519, 11.9533493915333], [-13.6669921850519, 11.9318523248542], [-13.6889648412979, 11.9318523248542]]]]}, "properties": {"taskId": 464, "taskX": 7569, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.9103535536714], [-13.6889648412979, 11.9318523248542], [-13.6669921850519, 11.9318523248542], [-13.6669921850519, 11.9103535536714], [-13.6889648412979, 11.9103535536714]]]]}, "properties": {"taskId": 463, "taskX": 7569, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.888853080877], [-13.6889648412979, 11.9103535536714], [-13.6669921850519, 11.9103535536714], [-13.6669921850519, 11.888853080877], [-13.6889648412979, 11.888853080877]]]]}, "properties": {"taskId": 462, "taskX": 7569, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.867350909364], [-13.6889648412979, 11.888853080877], [-13.6669921850519, 11.888853080877], [-13.6669921850519, 11.867350909364], [-13.6889648412979, 11.867350909364]]]]}, "properties": {"taskId": 461, "taskX": 7569, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.8458470420268], [-13.6889648412979, 11.867350909364], [-13.6669921850519, 11.867350909364], [-13.6669921850519, 11.8458470420268], [-13.6889648412979, 11.8458470420268]]]]}, "properties": {"taskId": 460, "taskX": 7569, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.8243414817611], [-13.6889648412979, 11.8458470420268], [-13.6669921850519, 11.8458470420268], [-13.6669921850519, 11.8243414817611], [-13.6889648412979, 11.8243414817611]]]]}, "properties": {"taskId": 459, "taskX": 7569, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.8028342314634], [-13.6889648412979, 11.8243414817611], [-13.6669921850519, 11.8243414817611], [-13.6669921850519, 11.8028342314634], [-13.6889648412979, 11.8028342314634]]]]}, "properties": {"taskId": 458, "taskX": 7569, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.7813252940317], [-13.6889648412979, 11.8028342314634], [-13.6669921850519, 11.8028342314634], [-13.6669921850519, 11.7813252940317], [-13.6889648412979, 11.7813252940317]]]]}, "properties": {"taskId": 457, "taskX": 7569, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.759814672365], [-13.6889648412979, 11.7813252940317], [-13.6669921850519, 11.7813252940317], [-13.6669921850519, 11.759814672365], [-13.6889648412979, 11.759814672365]]]]}, "properties": {"taskId": 456, "taskX": 7569, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.7383023693636], [-13.6889648412979, 11.759814672365], [-13.6669921850519, 11.759814672365], [-13.6669921850519, 11.7383023693636], [-13.6889648412979, 11.7383023693636]]]]}, "properties": {"taskId": 455, "taskX": 7569, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.7167883879289], [-13.6889648412979, 11.7383023693636], [-13.6669921850519, 11.7383023693636], [-13.6669921850519, 11.7167883879289], [-13.6889648412979, 11.7167883879289]]]]}, "properties": {"taskId": 454, "taskX": 7569, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.6952727309636], [-13.6889648412979, 11.7167883879289], [-13.6669921850519, 11.7167883879289], [-13.6669921850519, 11.6952727309636], [-13.6889648412979, 11.6952727309636]]]]}, "properties": {"taskId": 453, "taskX": 7569, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.6737554013713], [-13.6889648412979, 11.6952727309636], [-13.6669921850519, 11.6952727309636], [-13.6669921850519, 11.6737554013713], [-13.6889648412979, 11.6737554013713]]]]}, "properties": {"taskId": 452, "taskX": 7569, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.652236402057], [-13.6889648412979, 11.6737554013713], [-13.6669921850519, 11.6737554013713], [-13.6669921850519, 11.652236402057], [-13.6889648412979, 11.652236402057]]]]}, "properties": {"taskId": 451, "taskX": 7569, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.6307157359267], [-13.6889648412979, 11.652236402057], [-13.6669921850519, 11.652236402057], [-13.6669921850519, 11.6307157359267], [-13.6889648412979, 11.6307157359267]]]]}, "properties": {"taskId": 450, "taskX": 7569, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.6091934058879], [-13.6889648412979, 11.6307157359267], [-13.6669921850519, 11.6307157359267], [-13.6669921850519, 11.6091934058879], [-13.6889648412979, 11.6091934058879]]]]}, "properties": {"taskId": 449, "taskX": 7569, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.5876694148488], [-13.6889648412979, 11.6091934058879], [-13.6669921850519, 11.6091934058879], [-13.6669921850519, 11.5876694148488], [-13.6889648412979, 11.5876694148488]]]]}, "properties": {"taskId": 448, "taskX": 7569, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.5661437657192], [-13.6889648412979, 11.5876694148488], [-13.6669921850519, 11.5876694148488], [-13.6669921850519, 11.5661437657192], [-13.6889648412979, 11.5661437657192]]]]}, "properties": {"taskId": 447, "taskX": 7569, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.5446164614097], [-13.6889648412979, 11.5661437657192], [-13.6669921850519, 11.5661437657192], [-13.6669921850519, 11.5446164614097], [-13.6889648412979, 11.5446164614097]]]]}, "properties": {"taskId": 446, "taskX": 7569, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.5230875048322], [-13.6889648412979, 11.5446164614097], [-13.6669921850519, 11.5446164614097], [-13.6669921850519, 11.5230875048322], [-13.6889648412979, 11.5230875048322]]]]}, "properties": {"taskId": 445, "taskX": 7569, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.5015568988999], [-13.6889648412979, 11.5230875048322], [-13.6669921850519, 11.5230875048322], [-13.6669921850519, 11.5015568988999], [-13.6889648412979, 11.5015568988999]]]]}, "properties": {"taskId": 444, "taskX": 7569, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.480024646527], [-13.6889648412979, 11.5015568988999], [-13.6669921850519, 11.5015568988999], [-13.6669921850519, 11.480024646527], [-13.6889648412979, 11.480024646527]]]]}, "properties": {"taskId": 443, "taskX": 7569, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.4584907506287], [-13.6889648412979, 11.480024646527], [-13.6669921850519, 11.480024646527], [-13.6669921850519, 11.4584907506287], [-13.6889648412979, 11.4584907506287]]]]}, "properties": {"taskId": 442, "taskX": 7569, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.4369552141218], [-13.6889648412979, 11.4584907506287], [-13.6669921850519, 11.4584907506287], [-13.6669921850519, 11.4369552141218], [-13.6889648412979, 11.4369552141218]]]]}, "properties": {"taskId": 441, "taskX": 7569, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.4154180399237], [-13.6889648412979, 11.4369552141218], [-13.6669921850519, 11.4369552141218], [-13.6669921850519, 11.4154180399237], [-13.6889648412979, 11.4154180399237]]]]}, "properties": {"taskId": 440, "taskX": 7569, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.3938792309534], [-13.6889648412979, 11.4154180399237], [-13.6669921850519, 11.4154180399237], [-13.6669921850519, 11.3938792309534], [-13.6889648412979, 11.3938792309534]]]]}, "properties": {"taskId": 439, "taskX": 7569, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.3723387901308], [-13.6889648412979, 11.3938792309534], [-13.6669921850519, 11.3938792309534], [-13.6669921850519, 11.3723387901308], [-13.6889648412979, 11.3723387901308]]]]}, "properties": {"taskId": 438, "taskX": 7569, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.3507967203771], [-13.6889648412979, 11.3723387901308], [-13.6669921850519, 11.3723387901308], [-13.6669921850519, 11.3507967203771], [-13.6889648412979, 11.3507967203771]]]]}, "properties": {"taskId": 437, "taskX": 7569, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.3292530246144], [-13.6889648412979, 11.3507967203771], [-13.6669921850519, 11.3507967203771], [-13.6669921850519, 11.3292530246144], [-13.6889648412979, 11.3292530246144]]]]}, "properties": {"taskId": 436, "taskX": 7569, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.6889648412979, 11.3077077057662], [-13.6889648412979, 11.3292530246144], [-13.6669921850519, 11.3292530246144], [-13.6669921850519, 11.3077077057662], [-13.6889648412979, 11.3077077057662]]]]}, "properties": {"taskId": 435, "taskX": 7569, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 12.2541277354958], [-13.710937497544, 12.2755988883965], [-13.6889648412979, 12.2755988883965], [-13.6889648412979, 12.2541277354958], [-13.710937497544, 12.2541277354958]]]]}, "properties": {"taskId": 434, "taskX": 7568, "taskY": 8754, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 12.2326548348556], [-13.710937497544, 12.2541277354958], [-13.6889648412979, 12.2541277354958], [-13.6889648412979, 12.2326548348556], [-13.710937497544, 12.2326548348556]]]]}, "properties": {"taskId": 433, "taskX": 7568, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 12.2111801893498], [-13.710937497544, 12.2326548348556], [-13.6889648412979, 12.2326548348556], [-13.6889648412979, 12.2111801893498], [-13.710937497544, 12.2111801893498]]]]}, "properties": {"taskId": 432, "taskX": 7568, "taskY": 8752, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 12.1897038018535], [-13.710937497544, 12.2111801893498], [-13.6889648412979, 12.2111801893498], [-13.6889648412979, 12.1897038018535], [-13.710937497544, 12.1897038018535]]]]}, "properties": {"taskId": 431, "taskX": 7568, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 12.1682256752432], [-13.710937497544, 12.1897038018535], [-13.6889648412979, 12.1897038018535], [-13.6889648412979, 12.1682256752432], [-13.710937497544, 12.1682256752432]]]]}, "properties": {"taskId": 430, "taskX": 7568, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 12.1467458123965], [-13.710937497544, 12.1682256752432], [-13.6889648412979, 12.1682256752432], [-13.6889648412979, 12.1467458123965], [-13.710937497544, 12.1467458123965]]]]}, "properties": {"taskId": 429, "taskX": 7568, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 12.1252642161921], [-13.710937497544, 12.1467458123965], [-13.6889648412979, 12.1467458123965], [-13.6889648412979, 12.1252642161921], [-13.710937497544, 12.1252642161921]]]]}, "properties": {"taskId": 428, "taskX": 7568, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 12.10378088951], [-13.710937497544, 12.1252642161921], [-13.6889648412979, 12.1252642161921], [-13.6889648412979, 12.10378088951], [-13.710937497544, 12.10378088951]]]]}, "properties": {"taskId": 427, "taskX": 7568, "taskY": 8747, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 12.0822958352314], [-13.710937497544, 12.10378088951], [-13.6889648412979, 12.10378088951], [-13.6889648412979, 12.0822958352314], [-13.710937497544, 12.0822958352314]]]]}, "properties": {"taskId": 426, "taskX": 7568, "taskY": 8746, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 12.0608090562388], [-13.710937497544, 12.0822958352314], [-13.6889648412979, 12.0822958352314], [-13.6889648412979, 12.0608090562388], [-13.710937497544, 12.0608090562388]]]]}, "properties": {"taskId": 425, "taskX": 7568, "taskY": 8745, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 12.0393205554158], [-13.710937497544, 12.0608090562388], [-13.6889648412979, 12.0608090562388], [-13.6889648412979, 12.0393205554158], [-13.710937497544, 12.0393205554158]]]]}, "properties": {"taskId": 424, "taskX": 7568, "taskY": 8744, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 12.0178303356471], [-13.710937497544, 12.0393205554158], [-13.6889648412979, 12.0393205554158], [-13.6889648412979, 12.0178303356471], [-13.710937497544, 12.0178303356471]]]]}, "properties": {"taskId": 423, "taskX": 7568, "taskY": 8743, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.9963383998188], [-13.710937497544, 12.0178303356471], [-13.6889648412979, 12.0178303356471], [-13.6889648412979, 11.9963383998188], [-13.710937497544, 11.9963383998188]]]]}, "properties": {"taskId": 422, "taskX": 7568, "taskY": 8742, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.9748447508181], [-13.710937497544, 11.9963383998188], [-13.6889648412979, 11.9963383998188], [-13.6889648412979, 11.9748447508181], [-13.710937497544, 11.9748447508181]]]]}, "properties": {"taskId": 421, "taskX": 7568, "taskY": 8741, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.9533493915333], [-13.710937497544, 11.9748447508181], [-13.6889648412979, 11.9748447508181], [-13.6889648412979, 11.9533493915333], [-13.710937497544, 11.9533493915333]]]]}, "properties": {"taskId": 420, "taskX": 7568, "taskY": 8740, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.9318523248542], [-13.710937497544, 11.9533493915333], [-13.6889648412979, 11.9533493915333], [-13.6889648412979, 11.9318523248542], [-13.710937497544, 11.9318523248542]]]]}, "properties": {"taskId": 419, "taskX": 7568, "taskY": 8739, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.9103535536714], [-13.710937497544, 11.9318523248542], [-13.6889648412979, 11.9318523248542], [-13.6889648412979, 11.9103535536714], [-13.710937497544, 11.9103535536714]]]]}, "properties": {"taskId": 418, "taskX": 7568, "taskY": 8738, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.888853080877], [-13.710937497544, 11.9103535536714], [-13.6889648412979, 11.9103535536714], [-13.6889648412979, 11.888853080877], [-13.710937497544, 11.888853080877]]]]}, "properties": {"taskId": 417, "taskX": 7568, "taskY": 8737, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.867350909364], [-13.710937497544, 11.888853080877], [-13.6889648412979, 11.888853080877], [-13.6889648412979, 11.867350909364], [-13.710937497544, 11.867350909364]]]]}, "properties": {"taskId": 416, "taskX": 7568, "taskY": 8736, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.8458470420268], [-13.710937497544, 11.867350909364], [-13.6889648412979, 11.867350909364], [-13.6889648412979, 11.8458470420268], [-13.710937497544, 11.8458470420268]]]]}, "properties": {"taskId": 415, "taskX": 7568, "taskY": 8735, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.8243414817611], [-13.710937497544, 11.8458470420268], [-13.6889648412979, 11.8458470420268], [-13.6889648412979, 11.8243414817611], [-13.710937497544, 11.8243414817611]]]]}, "properties": {"taskId": 414, "taskX": 7568, "taskY": 8734, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.8028342314634], [-13.710937497544, 11.8243414817611], [-13.6889648412979, 11.8243414817611], [-13.6889648412979, 11.8028342314634], [-13.710937497544, 11.8028342314634]]]]}, "properties": {"taskId": 413, "taskX": 7568, "taskY": 8733, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.7813252940317], [-13.710937497544, 11.8028342314634], [-13.6889648412979, 11.8028342314634], [-13.6889648412979, 11.7813252940317], [-13.710937497544, 11.7813252940317]]]]}, "properties": {"taskId": 412, "taskX": 7568, "taskY": 8732, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.759814672365], [-13.710937497544, 11.7813252940317], [-13.6889648412979, 11.7813252940317], [-13.6889648412979, 11.759814672365], [-13.710937497544, 11.759814672365]]]]}, "properties": {"taskId": 411, "taskX": 7568, "taskY": 8731, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.7383023693636], [-13.710937497544, 11.759814672365], [-13.6889648412979, 11.759814672365], [-13.6889648412979, 11.7383023693636], [-13.710937497544, 11.7383023693636]]]]}, "properties": {"taskId": 410, "taskX": 7568, "taskY": 8730, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.7167883879289], [-13.710937497544, 11.7383023693636], [-13.6889648412979, 11.7383023693636], [-13.6889648412979, 11.7167883879289], [-13.710937497544, 11.7167883879289]]]]}, "properties": {"taskId": 409, "taskX": 7568, "taskY": 8729, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.6952727309636], [-13.710937497544, 11.7167883879289], [-13.6889648412979, 11.7167883879289], [-13.6889648412979, 11.6952727309636], [-13.710937497544, 11.6952727309636]]]]}, "properties": {"taskId": 408, "taskX": 7568, "taskY": 8728, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.6737554013713], [-13.710937497544, 11.6952727309636], [-13.6889648412979, 11.6952727309636], [-13.6889648412979, 11.6737554013713], [-13.710937497544, 11.6737554013713]]]]}, "properties": {"taskId": 407, "taskX": 7568, "taskY": 8727, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.652236402057], [-13.710937497544, 11.6737554013713], [-13.6889648412979, 11.6737554013713], [-13.6889648412979, 11.652236402057], [-13.710937497544, 11.652236402057]]]]}, "properties": {"taskId": 406, "taskX": 7568, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.6307157359267], [-13.710937497544, 11.652236402057], [-13.6889648412979, 11.652236402057], [-13.6889648412979, 11.6307157359267], [-13.710937497544, 11.6307157359267]]]]}, "properties": {"taskId": 405, "taskX": 7568, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.5876694148488], [-13.710937497544, 11.6091934058879], [-13.6889648412979, 11.6091934058879], [-13.6889648412979, 11.5876694148488], [-13.710937497544, 11.5876694148488]]]]}, "properties": {"taskId": 403, "taskX": 7568, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.5661437657192], [-13.710937497544, 11.5876694148488], [-13.6889648412979, 11.5876694148488], [-13.6889648412979, 11.5661437657192], [-13.710937497544, 11.5661437657192]]]]}, "properties": {"taskId": 402, "taskX": 7568, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.5446164614097], [-13.710937497544, 11.5661437657192], [-13.6889648412979, 11.5661437657192], [-13.6889648412979, 11.5446164614097], [-13.710937497544, 11.5446164614097]]]]}, "properties": {"taskId": 401, "taskX": 7568, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.5230875048322], [-13.710937497544, 11.5446164614097], [-13.6889648412979, 11.5446164614097], [-13.6889648412979, 11.5230875048322], [-13.710937497544, 11.5230875048322]]]]}, "properties": {"taskId": 400, "taskX": 7568, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.5015568988999], [-13.710937497544, 11.5230875048322], [-13.6889648412979, 11.5230875048322], [-13.6889648412979, 11.5015568988999], [-13.710937497544, 11.5015568988999]]]]}, "properties": {"taskId": 399, "taskX": 7568, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.480024646527], [-13.710937497544, 11.5015568988999], [-13.6889648412979, 11.5015568988999], [-13.6889648412979, 11.480024646527], [-13.710937497544, 11.480024646527]]]]}, "properties": {"taskId": 398, "taskX": 7568, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.4584907506287], [-13.710937497544, 11.480024646527], [-13.6889648412979, 11.480024646527], [-13.6889648412979, 11.4584907506287], [-13.710937497544, 11.4584907506287]]]]}, "properties": {"taskId": 397, "taskX": 7568, "taskY": 8717, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.4369552141218], [-13.710937497544, 11.4584907506287], [-13.6889648412979, 11.4584907506287], [-13.6889648412979, 11.4369552141218], [-13.710937497544, 11.4369552141218]]]]}, "properties": {"taskId": 396, "taskX": 7568, "taskY": 8716, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.4154180399237], [-13.710937497544, 11.4369552141218], [-13.6889648412979, 11.4369552141218], [-13.6889648412979, 11.4154180399237], [-13.710937497544, 11.4154180399237]]]]}, "properties": {"taskId": 395, "taskX": 7568, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.3938792309534], [-13.710937497544, 11.4154180399237], [-13.6889648412979, 11.4154180399237], [-13.6889648412979, 11.3938792309534], [-13.710937497544, 11.3938792309534]]]]}, "properties": {"taskId": 394, "taskX": 7568, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.3723387901308], [-13.710937497544, 11.3938792309534], [-13.6889648412979, 11.3938792309534], [-13.6889648412979, 11.3723387901308], [-13.710937497544, 11.3723387901308]]]]}, "properties": {"taskId": 393, "taskX": 7568, "taskY": 8713, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.3507967203771], [-13.710937497544, 11.3723387901308], [-13.6889648412979, 11.3723387901308], [-13.6889648412979, 11.3507967203771], [-13.710937497544, 11.3507967203771]]]]}, "properties": {"taskId": 392, "taskX": 7568, "taskY": 8712, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.3292530246144], [-13.710937497544, 11.3507967203771], [-13.6889648412979, 11.3507967203771], [-13.6889648412979, 11.3292530246144], [-13.710937497544, 11.3292530246144]]]]}, "properties": {"taskId": 391, "taskX": 7568, "taskY": 8711, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.710937497544, 11.3077077057662], [-13.710937497544, 11.3292530246144], [-13.6889648412979, 11.3292530246144], [-13.6889648412979, 11.3077077057662], [-13.710937497544, 11.3077077057662]]]]}, "properties": {"taskId": 390, "taskX": 7568, "taskY": 8710, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 12.2541277354958], [-13.7329101537901, 12.2755988883965], [-13.710937497544, 12.2755988883965], [-13.710937497544, 12.2541277354958], [-13.7329101537901, 12.2541277354958]]]]}, "properties": {"taskId": 389, "taskX": 7567, "taskY": 8754, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 12.2326548348556], [-13.7329101537901, 12.2541277354958], [-13.710937497544, 12.2541277354958], [-13.710937497544, 12.2326548348556], [-13.7329101537901, 12.2326548348556]]]]}, "properties": {"taskId": 388, "taskX": 7567, "taskY": 8753, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 12.1897038018535], [-13.7329101537901, 12.2111801893498], [-13.710937497544, 12.2111801893498], [-13.710937497544, 12.1897038018535], [-13.7329101537901, 12.1897038018535]]]]}, "properties": {"taskId": 386, "taskX": 7567, "taskY": 8751, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 12.1682256752432], [-13.7329101537901, 12.1897038018535], [-13.710937497544, 12.1897038018535], [-13.710937497544, 12.1682256752432], [-13.7329101537901, 12.1682256752432]]]]}, "properties": {"taskId": 385, "taskX": 7567, "taskY": 8750, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 12.1467458123965], [-13.7329101537901, 12.1682256752432], [-13.710937497544, 12.1682256752432], [-13.710937497544, 12.1467458123965], [-13.7329101537901, 12.1467458123965]]]]}, "properties": {"taskId": 384, "taskX": 7567, "taskY": 8749, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.7329101537901, 12.1252642161921], [-13.7329101537901, 12.1467458123965], [-13.710937497544, 12.1467458123965], [-13.710937497544, 12.1252642161921], [-13.7329101537901, 12.1252642161921]]]]}, "properties": {"taskId": 383, "taskX": 7567, "taskY": 8748, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9746093724968, 11.6091934058879], [-13.9746093724968, 11.6307157359267], [-13.9526367162507, 11.6307157359267], [-13.9526367162507, 11.6091934058879], [-13.9746093724968, 11.6091934058879]]]]}, "properties": {"taskId": 42, "taskX": 7556, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9746093724968, 11.5876694148488], [-13.9746093724968, 11.6091934058879], [-13.9526367162507, 11.6091934058879], [-13.9526367162507, 11.5876694148488], [-13.9746093724968, 11.5876694148488]]]]}, "properties": {"taskId": 41, "taskX": 7556, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9746093724968, 11.5661437657192], [-13.9746093724968, 11.5876694148488], [-13.9526367162507, 11.5876694148488], [-13.9526367162507, 11.5661437657192], [-13.9746093724968, 11.5661437657192]]]]}, "properties": {"taskId": 40, "taskX": 7556, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9746093724968, 11.5446164614097], [-13.9746093724968, 11.5661437657192], [-13.9526367162507, 11.5661437657192], [-13.9526367162507, 11.5446164614097], [-13.9746093724968, 11.5446164614097]]]]}, "properties": {"taskId": 39, "taskX": 7556, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9746093724968, 11.5230875048322], [-13.9746093724968, 11.5446164614097], [-13.9526367162507, 11.5446164614097], [-13.9526367162507, 11.5230875048322], [-13.9746093724968, 11.5230875048322]]]]}, "properties": {"taskId": 38, "taskX": 7556, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9746093724968, 11.5015568988999], [-13.9746093724968, 11.5230875048322], [-13.9526367162507, 11.5230875048322], [-13.9526367162507, 11.5015568988999], [-13.9746093724968, 11.5015568988999]]]]}, "properties": {"taskId": 37, "taskX": 7556, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9746093724968, 11.480024646527], [-13.9746093724968, 11.5015568988999], [-13.9526367162507, 11.5015568988999], [-13.9526367162507, 11.480024646527], [-13.9746093724968, 11.480024646527]]]]}, "properties": {"taskId": 36, "taskX": 7556, "taskY": 8718, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9746093724968, 11.4154180399237], [-13.9746093724968, 11.4369552141218], [-13.9526367162507, 11.4369552141218], [-13.9526367162507, 11.4154180399237], [-13.9746093724968, 11.4154180399237]]]]}, "properties": {"taskId": 35, "taskX": 7556, "taskY": 8715, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9746093724968, 11.3938792309534], [-13.9746093724968, 11.4154180399237], [-13.9526367162507, 11.4154180399237], [-13.9526367162507, 11.3938792309534], [-13.9746093724968, 11.3938792309534]]]]}, "properties": {"taskId": 34, "taskX": 7556, "taskY": 8714, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9965820287428, 11.652236402057], [-13.9965820287428, 11.6737554013713], [-13.9746093724968, 11.6737554013713], [-13.9746093724968, 11.652236402057], [-13.9965820287428, 11.652236402057]]]]}, "properties": {"taskId": 33, "taskX": 7555, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9965820287428, 11.6307157359267], [-13.9965820287428, 11.652236402057], [-13.9746093724968, 11.652236402057], [-13.9746093724968, 11.6307157359267], [-13.9965820287428, 11.6307157359267]]]]}, "properties": {"taskId": 32, "taskX": 7555, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9965820287428, 11.6091934058879], [-13.9965820287428, 11.6307157359267], [-13.9746093724968, 11.6307157359267], [-13.9746093724968, 11.6091934058879], [-13.9965820287428, 11.6091934058879]]]]}, "properties": {"taskId": 31, "taskX": 7555, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9965820287428, 11.5876694148488], [-13.9965820287428, 11.6091934058879], [-13.9746093724968, 11.6091934058879], [-13.9746093724968, 11.5876694148488], [-13.9965820287428, 11.5876694148488]]]]}, "properties": {"taskId": 30, "taskX": 7555, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9965820287428, 11.5661437657192], [-13.9965820287428, 11.5876694148488], [-13.9746093724968, 11.5876694148488], [-13.9746093724968, 11.5661437657192], [-13.9965820287428, 11.5661437657192]]]]}, "properties": {"taskId": 29, "taskX": 7555, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9965820287428, 11.5446164614097], [-13.9965820287428, 11.5661437657192], [-13.9746093724968, 11.5661437657192], [-13.9746093724968, 11.5446164614097], [-13.9965820287428, 11.5446164614097]]]]}, "properties": {"taskId": 28, "taskX": 7555, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9965820287428, 11.5230875048322], [-13.9965820287428, 11.5446164614097], [-13.9746093724968, 11.5446164614097], [-13.9746093724968, 11.5230875048322], [-13.9965820287428, 11.5230875048322]]]]}, "properties": {"taskId": 27, "taskX": 7555, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-13.9965820287428, 11.5015568988999], [-13.9965820287428, 11.5230875048322], [-13.9746093724968, 11.5230875048322], [-13.9746093724968, 11.5015568988999], [-13.9965820287428, 11.5015568988999]]]]}, "properties": {"taskId": 26, "taskX": 7555, "taskY": 8719, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-14.0185546849889, 11.652236402057], [-14.0185546849889, 11.6737554013713], [-13.9965820287428, 11.6737554013713], [-13.9965820287428, 11.652236402057], [-14.0185546849889, 11.652236402057]]]]}, "properties": {"taskId": 25, "taskX": 7554, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-14.0185546849889, 11.6307157359267], [-14.0185546849889, 11.652236402057], [-13.9965820287428, 11.652236402057], [-13.9965820287428, 11.6307157359267], [-14.0185546849889, 11.6307157359267]]]]}, "properties": {"taskId": 24, "taskX": 7554, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-14.0185546849889, 11.6091934058879], [-14.0185546849889, 11.6307157359267], [-13.9965820287428, 11.6307157359267], [-13.9965820287428, 11.6091934058879], [-14.0185546849889, 11.6091934058879]]]]}, "properties": {"taskId": 23, "taskX": 7554, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-14.0185546849889, 11.5876694148488], [-14.0185546849889, 11.6091934058879], [-13.9965820287428, 11.6091934058879], [-13.9965820287428, 11.5876694148488], [-14.0185546849889, 11.5876694148488]]]]}, "properties": {"taskId": 22, "taskX": 7554, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-14.0185546849889, 11.5661437657192], [-14.0185546849889, 11.5876694148488], [-13.9965820287428, 11.5876694148488], [-13.9965820287428, 11.5661437657192], [-14.0185546849889, 11.5661437657192]]]]}, "properties": {"taskId": 21, "taskX": 7554, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-14.0185546849889, 11.5446164614097], [-14.0185546849889, 11.5661437657192], [-13.9965820287428, 11.5661437657192], [-13.9965820287428, 11.5446164614097], [-14.0185546849889, 11.5446164614097]]]]}, "properties": {"taskId": 20, "taskX": 7554, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-14.0185546849889, 11.5230875048322], [-14.0185546849889, 11.5446164614097], [-13.9965820287428, 11.5446164614097], [-13.9965820287428, 11.5230875048322], [-14.0185546849889, 11.5230875048322]]]]}, "properties": {"taskId": 19, "taskX": 7554, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-14.040527341235, 11.652236402057], [-14.040527341235, 11.6737554013713], [-14.0185546849889, 11.6737554013713], [-14.0185546849889, 11.652236402057], [-14.040527341235, 11.652236402057]]]]}, "properties": {"taskId": 18, "taskX": 7553, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-14.040527341235, 11.5876694148488], [-14.040527341235, 11.6091934058879], [-14.0185546849889, 11.6091934058879], [-14.0185546849889, 11.5876694148488], [-14.040527341235, 11.5876694148488]]]]}, "properties": {"taskId": 15, "taskX": 7553, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-14.040527341235, 11.5661437657192], [-14.040527341235, 11.5876694148488], [-14.0185546849889, 11.5876694148488], [-14.0185546849889, 11.5661437657192], [-14.040527341235, 11.5661437657192]]]]}, "properties": {"taskId": 14, "taskX": 7553, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-14.040527341235, 11.5446164614097], [-14.040527341235, 11.5661437657192], [-14.0185546849889, 11.5661437657192], [-14.0185546849889, 11.5446164614097], [-14.040527341235, 11.5446164614097]]]]}, "properties": {"taskId": 13, "taskX": 7553, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-14.040527341235, 11.5230875048322], [-14.040527341235, 11.5446164614097], [-14.0185546849889, 11.5446164614097], [-14.0185546849889, 11.5230875048322], [-14.040527341235, 11.5230875048322]]]]}, "properties": {"taskId": 12, "taskX": 7553, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-14.0624999974811, 11.652236402057], [-14.0624999974811, 11.6737554013713], [-14.040527341235, 11.6737554013713], [-14.040527341235, 11.652236402057], [-14.0624999974811, 11.652236402057]]]]}, "properties": {"taskId": 11, "taskX": 7552, "taskY": 8726, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-14.0624999974811, 11.6307157359267], [-14.0624999974811, 11.652236402057], [-14.040527341235, 11.652236402057], [-14.040527341235, 11.6307157359267], [-14.0624999974811, 11.6307157359267]]]]}, "properties": {"taskId": 10, "taskX": 7552, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-14.0624999974811, 11.6091934058879], [-14.0624999974811, 11.6307157359267], [-14.040527341235, 11.6307157359267], [-14.040527341235, 11.6091934058879], [-14.0624999974811, 11.6091934058879]]]]}, "properties": {"taskId": 9, "taskX": 7552, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-14.0624999974811, 11.5876694148488], [-14.0624999974811, 11.6091934058879], [-14.040527341235, 11.6091934058879], [-14.040527341235, 11.5876694148488], [-14.0624999974811, 11.5876694148488]]]]}, "properties": {"taskId": 8, "taskX": 7552, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-14.0624999974811, 11.5661437657192], [-14.0624999974811, 11.5876694148488], [-14.040527341235, 11.5876694148488], [-14.040527341235, 11.5661437657192], [-14.0624999974811, 11.5661437657192]]]]}, "properties": {"taskId": 7, "taskX": 7552, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-14.0624999974811, 11.5446164614097], [-14.0624999974811, 11.5661437657192], [-14.040527341235, 11.5661437657192], [-14.040527341235, 11.5446164614097], [-14.0624999974811, 11.5446164614097]]]]}, "properties": {"taskId": 6, "taskX": 7552, "taskY": 8721, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-14.0624999974811, 11.5230875048322], [-14.0624999974811, 11.5446164614097], [-14.040527341235, 11.5446164614097], [-14.040527341235, 11.5230875048322], [-14.0624999974811, 11.5230875048322]]]]}, "properties": {"taskId": 5, "taskX": 7552, "taskY": 8720, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-14.0844726537271, 11.6307157359267], [-14.0844726537271, 11.652236402057], [-14.0624999974811, 11.652236402057], [-14.0624999974811, 11.6307157359267], [-14.0844726537271, 11.6307157359267]]]]}, "properties": {"taskId": 4, "taskX": 7551, "taskY": 8725, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-14.0844726537271, 11.6091934058879], [-14.0844726537271, 11.6307157359267], [-14.0624999974811, 11.6307157359267], [-14.0624999974811, 11.6091934058879], [-14.0844726537271, 11.6091934058879]]]]}, "properties": {"taskId": 3, "taskX": 7551, "taskY": 8724, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-14.0844726537271, 11.5876694148488], [-14.0844726537271, 11.6091934058879], [-14.0624999974811, 11.6091934058879], [-14.0624999974811, 11.5876694148488], [-14.0844726537271, 11.5876694148488]]]]}, "properties": {"taskId": 2, "taskX": 7551, "taskY": 8723, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-14.0844726537271, 11.5661437657192], [-14.0844726537271, 11.5876694148488], [-14.0624999974811, 11.5876694148488], [-14.0624999974811, 11.5661437657192], [-14.0844726537271, 11.5661437657192]]]]}, "properties": {"taskId": 1, "taskX": 7551, "taskY": 8722, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}]}, "defaultLocale": "en", "projectInfo": {"locale": "en", "name": "Guinea Flood Response - Gaoual Roads", "shortDescription": "September 2018 - Heavy rains have caused severe flooding in a region near Gaoual, Guinea. \n\nAt the request of OSM Guinea and Geosynapse, HOT has activated to support the mapping for response and recovery to this incident. \n\nYour participation is greatly needed, and welcome!", "description": "The objective of this project is to map the significant roads in the Gaoual Prefecture. Please note this project is of intermediate difficulty, if you are new to OpenStreetMap, sorry - your interest is appreciated, but it's not a good learning experience. You are welcome to try the less difficult building mapping projects at For more proficient mappers, this project is in Africa and the Highway Tag Africa schema for the road network should be applied. See instructions for more detail.\n\nSeptember 2018 - Heavy rains have caused severe flooding in a region near Gaoual, Guinea. Beyond the immediate impact to homes and infrastructure, displacing 100s of people so far, there is expected long-term impact to crops, and livelihoods. At the request of OSM Guinea and Geosynapse, HOT has activated to support the mapping for response and recovery to this incident. Your participation is greatly needed, and welcome! Let us help minimize the impact and expedite the recovery from these floods with a great basemap!", "instructions": "Project Specific Mapping Notes\n========================\n* Refer to the Highway Tag Africa wiki-page for details on Road Classification schema for Africa: \n* Some roads are already mapped and classified by locals; do not worry about changing classification unless you are sure it is wrong. Mostly you will be fixing up geometry and adding unclassified and lower classified roads where lacking.\n* Align all imagery to existing mapping (i.e. use the mapped roads to align all imagery, see below example). \n* Some squares will already be partially or fully mapped, map in more if needed or fix up the existing mapping, or just mark it \"Completely Mapped\" if it is already done.\n\nImagery\n=======\n* Use Bing for alignment; it matches existing road network the best without offset. Check DigitalGlobe premium once major roads are traced, it is newer and may reveal recently constructed roads; make sure to adjust for any offset.\n* Check other imagery sources if you have a tile that is either cloudy or no hi-resolution imagery available; please mark the task as Bad Imagery if none are available.\n\nRoads and paths\n==========\n* Please map roads and major paths as completely as possible by connecting them to the main road networks where ever possible.\n* Very short segments that do not connect to anything should not be mapped.\n* Short segments of a road or path that you cannot see through the trees/buildings but seem very likely to exist should be mapped to keep the road network complete.\n* Try and map a little beyond your task square so the person who maps the task square next to yours can easily connect them.\n* Always connect roads to other roads where they meet and never end roads on landuse or other area polygon edges.\n\nYou will most often use the following Road Classifications:\n* **highway=unclassified** \u2013 This is for roads that connect small villages and settlements\n* **highway=residential** \u2013 These are roads that are in settlements but only are used for access to houses and buildings.\n* **highway=service** - These are typically alleys or driveways leading to one or just a few structures. They are not required for this response unless they are the only access to structures a significant distance from a more major road.\n* **highway=track** \u2013 This is for roads that only lead to farms, fields or forests. They do not connect settlements or residential areas. These are not required for this response unless they are significant to getting to smaller villages and farms.\n* **highway=path** - For now, only worry about mapping paths that are significant (i.e. connect small villages to larger settlements if there is not a more significant track or larger road.)\n* **Footpaths** or anything that rescuers won't be able, or have a better option, to use, are not necessary to trace.", "perTaskInstructions": ""}, "mapperLevel": "INTERMEDIATE", "enforceMapperLevel": true, "enforceValidatorRole": true, "private": false, "entitiesToMap": "Roads Only - Other features such as buildings will be done separately (Les routes seulement \u2013 les autres \u00e9l\u00e9ments tels que les b\u00e2timents seront mapper s\u00e9par\u00e9ment.)", "changesetComment": "#hotosm-project-5182 #GuineaFloods2018 #Gaoual #Guinea Requested Road Network Update and Completion - #SOSGaoual #Map4Gn #OSMGuinee", "dueDate": null, "imagery": null, "mappingTypes": ["ROADS"], "campaignTag": "Disaster Response", "organisationTag": "OSM Guinea", "licenseId": null, "allowedUsernames": [], "priorityAreas": null, "created": "2018-09-06T22:41:04.915845", "lastUpdated": "2018-11-07T18:20:19.238104", "author": "russdeffner", "activeMappers": 0, "taskCreationMode": "GRID"}
diff --git a/tests/fixtures/my-bucket/example_tasks/5236?as_file=false b/tests/fixtures/my-bucket/example_tasks/5236?as_file=false
new file mode 100644
index 0000000..4388f8d
--- /dev/null
+++ b/tests/fixtures/my-bucket/example_tasks/5236?as_file=false
@@ -0,0 +1 @@
+{"projectId": 5236, "projectStatus": "PUBLISHED", "projectPriority": "URGENT", "areaOfInterest": {"type": "MultiPolygon", "coordinates": [[[[121.899056156717, 21.1992329758164], [122.045540308199, 21.1172673253737], [121.994271223984, 20.7136134127379], [122.104134505234, 20.4530607457274], [122.126107161484, 20.137063316815], [122.206673344217, 19.9512877364355], [122.082161848984, 19.5928821867652], [122.030892094217, 19.2889911615471], [122.052864750467, 18.9776088057538], [122.228646000467, 18.6309441338138], [122.397102808199, 18.3531024378292], [122.375130151949, 18.2000980333181], [122.250618656717, 18.0887378564272], [122.213997786484, 17.7612092152486], [122.257943098984, 17.5099294294644], [121.869759058199, 17.4819879887782], [121.650032495699, 17.4470549127198], [121.422982161484, 17.614671901292], [121.335091536484, 17.7472586478578], [121.254524683199, 17.8309469948039], [121.444954817734, 18.2627069640542], [121.137337630234, 18.4156560836611], [120.946907495699, 18.4017571294941], [120.924934839449, 18.6240036975593], [121.173958500467, 18.8320963017832], [121.093392317734, 19.0883890902149], [121.291146223984, 19.4133781686471], [121.532845442734, 19.6204797217345], [121.818489973984, 19.6480733871196], [122.008919437967, 19.9857064273023], [121.745247562967, 20.2333038894091], [121.679329594217, 20.645089367149], [121.899056156717, 21.1992329758164]]]]}, "tasks": {"type": "FeatureCollection", "features": [{"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 18.2293513352315], [121.508789040735, 18.2293513352315], [121.508789040735, 18.2502199739071], [121.486816384489, 18.2502199739071], [121.486816384489, 18.2293513352315]]]]}, "properties": {"taskId": 3967, "taskX": 13721, "taskY": 9036, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.38244626732, 18.4118667620183], [121.387939431381, 18.4118667620183], [121.387939431381, 18.4170786554759], [121.38244626732, 18.4170786554759], [121.38244626732, 18.4118667620183]]]]}, "properties": {"taskId": 4584, "taskX": 54865, "taskY": 36179, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.371459939197, 18.4222903910698], [121.376953103258, 18.4222903910698], [121.376953103258, 18.4275019687616], [121.371459939197, 18.4275019687616], [121.371459939197, 18.4222903910698]]]]}, "properties": {"taskId": 4576, "taskX": 54863, "taskY": 36181, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.365966775135, 18.4066547107354], [121.371459939197, 18.4066547107354], [121.371459939197, 18.4118667620183], [121.365966775135, 18.4118667620183], [121.365966775135, 18.4066547107354]]]]}, "properties": {"taskId": 4577, "taskX": 54862, "taskY": 36178, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.371459939197, 18.4066547107354], [121.376953103258, 18.4066547107354], [121.376953103258, 18.4118667620183], [121.371459939197, 18.4118667620183], [121.371459939197, 18.4066547107354]]]]}, "properties": {"taskId": 4579, "taskX": 54863, "taskY": 36178, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 17.7696122440617], [121.486816384489, 17.7696122440617], [121.486816384489, 17.7905353905046], [121.464843728242, 17.7905353905046], [121.464843728242, 17.7696122440617]]]]}, "properties": {"taskId": 3981, "taskX": 13720, "taskY": 9014, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.1876065493462], [121.574707009473, 18.1876065493462], [121.574707009473, 18.2084801928881], [121.552734353227, 18.2084801928881], [121.552734353227, 18.1876065493462]]]]}, "properties": {"taskId": 3973, "taskX": 13724, "taskY": 9034, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698303200857, 17.5582825456386], [121.698989846365, 17.5582825456386], [121.698989846365, 17.558937199542], [121.698303200857, 17.558937199542], [121.698303200857, 17.5582825456386]]]]}, "properties": {"taskId": 4226, "taskX": 439380, "taskY": 288125, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.6858951936713], [121.739501931318, 17.6858951936713], [121.739501931318, 17.6963619623342], [121.728515603195, 17.6963619623342], [121.728515603195, 17.6858951936713]]]]}, "properties": {"taskId": 4253, "taskX": 27464, "taskY": 18020, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.613159157903, 18.0570897635212], [121.618652321965, 18.0570897635212], [121.618652321965, 18.0623123014185], [121.613159157903, 18.0623123014185], [121.613159157903, 18.0570897635212]]]]}, "properties": {"taskId": 4408, "taskX": 54907, "taskY": 36111, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.084442116982, 18.6019983120146], [121.085815407998, 18.6019983120146], [121.085815407998, 18.6032998536031], [121.084442116982, 18.6032998536031], [121.084442116982, 18.6019983120146]]]]}, "properties": {"taskId": 4319, "taskX": 219243, "taskY": 144862, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 18.1980436836125], [121.585693337596, 18.1980436836125], [121.585693337596, 18.2084801928881], [121.574707009473, 18.2084801928881], [121.574707009473, 18.1980436836125]]]]}, "properties": {"taskId": 4402, "taskX": 27450, "taskY": 18069, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.6858951936713], [121.712036111011, 17.6858951936713], [121.712036111011, 17.6911286542392], [121.706542946949, 17.6911286542392], [121.706542946949, 17.6858951936713]]]]}, "properties": {"taskId": 4597, "taskX": 54924, "taskY": 36040, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.712036111011, 17.6492567037506], [121.717529275072, 17.6492567037506], [121.717529275072, 17.6544912305301], [121.712036111011, 17.6544912305301], [121.712036111011, 17.6492567037506]]]]}, "properties": {"taskId": 4276, "taskX": 54925, "taskY": 36033, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 18.4275019687616], [121.343994118889, 18.4275019687616], [121.343994118889, 18.4379246502857], [121.333007790766, 18.4379246502857], [121.333007790766, 18.4275019687616]]]]}, "properties": {"taskId": 4302, "taskX": 27428, "taskY": 18091, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.223144509536, 18.5655511094825], [121.225891091567, 18.5655511094825], [121.225891091567, 18.568154739547], [121.223144509536, 18.568154739547], [121.223144509536, 18.5655511094825]]]]}, "properties": {"taskId": 4570, "taskX": 109672, "taskY": 72417, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.38244626732, 18.3962301348468], [121.387939431381, 18.3962301348468], [121.387939431381, 18.4014425016654], [121.38244626732, 18.4014425016654], [121.38244626732, 18.3962301348468]]]]}, "properties": {"taskId": 4587, "taskX": 54865, "taskY": 36176, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.283569314212, 18.5317003041803], [121.289062478274, 18.5317003041803], [121.289062478274, 18.5369085570839], [121.283569314212, 18.5369085570839], [121.283569314212, 18.5317003041803]]]]}, "properties": {"taskId": 3987, "taskX": 54847, "taskY": 36202, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.4118667620183], [121.38244626732, 18.4118667620183], [121.38244626732, 18.4170786554759], [121.376953103258, 18.4170786554759], [121.376953103258, 18.4118667620183]]]]}, "properties": {"taskId": 4582, "taskX": 54864, "taskY": 36179, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.720275857103, 17.6414046282956], [121.723022439134, 17.6414046282956], [121.723022439134, 17.6440220248121], [121.720275857103, 17.6440220248121], [121.720275857103, 17.6414046282956]]]]}, "properties": {"taskId": 4412, "taskX": 109853, "taskY": 72063, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 17.8114560854768], [121.475830056365, 17.8114560854768], [121.475830056365, 17.8219155128794], [121.464843728242, 17.8219155128794], [121.464843728242, 17.8114560854768]]]]}, "properties": {"taskId": 4425, "taskX": 27440, "taskY": 18032, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.475830056365, 17.8219155128794], [121.486816384489, 17.8219155128794], [121.486816384489, 17.8323743264764], [121.475830056365, 17.8323743264764], [121.475830056365, 17.8219155128794]]]]}, "properties": {"taskId": 4428, "taskX": 27441, "taskY": 18033, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 18.0205276547308], [121.629638650088, 18.0205276547308], [121.629638650088, 18.0309747467668], [121.618652321965, 18.0309747467668], [121.618652321965, 18.0205276547308]]]]}, "properties": {"taskId": 4429, "taskX": 27454, "taskY": 18052, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.503295876673, 17.7015951179171], [121.508789040735, 17.7015951179171], [121.508789040735, 17.7068281209488], [121.503295876673, 17.7068281209488], [121.503295876673, 17.7015951179171]]]]}, "properties": {"taskId": 4420, "taskX": 54887, "taskY": 36043, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.6858951936713], [121.701049782888, 17.6858951936713], [121.701049782888, 17.6911286542392], [121.695556618826, 17.6911286542392], [121.695556618826, 17.6858951936713]]]]}, "properties": {"taskId": 4601, "taskX": 54922, "taskY": 36040, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.6911286542392], [121.706542946949, 17.6911286542392], [121.706542946949, 17.6963619623342], [121.701049782888, 17.6963619623342], [121.701049782888, 17.6911286542392]]]]}, "properties": {"taskId": 4604, "taskX": 54923, "taskY": 36041, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698303200857, 17.6937453273483], [121.698989846365, 17.6937453273483], [121.698989846365, 17.694399489669], [121.698303200857, 17.694399489669], [121.698303200857, 17.6937453273483]]]]}, "properties": {"taskId": 4645, "taskX": 439380, "taskY": 288332, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.696929909841, 17.695053649607], [121.698303200857, 17.695053649607], [121.698303200857, 17.6963619623342], [121.696929909841, 17.6963619623342], [121.696929909841, 17.695053649607]]]]}, "properties": {"taskId": 4612, "taskX": 219689, "taskY": 144167, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.70036313738, 17.695053649607], [121.701049782888, 17.695053649607], [121.701049782888, 17.6957078071621], [121.70036313738, 17.6957078071621], [121.70036313738, 17.695053649607]]]]}, "properties": {"taskId": 4639, "taskX": 439383, "taskY": 288334, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.699676491872, 17.6937453273483], [121.70036313738, 17.6937453273483], [121.70036313738, 17.694399489669], [121.699676491872, 17.694399489669], [121.699676491872, 17.6937453273483]]]]}, "properties": {"taskId": 4641, "taskX": 439382, "taskY": 288332, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.5497718295439], [121.698303200857, 17.5497718295439], [121.698303200857, 17.5523905540115], [121.695556618826, 17.5523905540115], [121.695556618826, 17.5497718295439]]]]}, "properties": {"taskId": 4213, "taskX": 109844, "taskY": 72028, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.753234841472, 17.5681021056307], [121.755981423503, 17.5681021056307], [121.755981423503, 17.5707205649901], [121.753234841472, 17.5707205649901], [121.753234841472, 17.5681021056307]]]]}, "properties": {"taskId": 4240, "taskX": 109865, "taskY": 72035, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 20.4424552567539], [121.972961403933, 20.4424552567539], [121.972961403933, 20.4450288469673], [121.970214821902, 20.4450288469673], [121.970214821902, 20.4424552567539]]]]}, "properties": {"taskId": 4533, "taskX": 109944, "taskY": 73142, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.646118142272, 18.1093081519656], [121.651611306334, 18.1093081519656], [121.651611306334, 18.1145291357018], [121.646118142272, 18.1145291357018], [121.646118142272, 18.1093081519656]]]]}, "properties": {"taskId": 4400, "taskX": 54913, "taskY": 36121, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.1093081519656], [121.646118142272, 18.1093081519656], [121.646118142272, 18.1145291357018], [121.640624978211, 18.1145291357018], [121.640624978211, 18.1093081519656]]]]}, "properties": {"taskId": 4398, "taskX": 54912, "taskY": 36121, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.104087012639], [121.646118142272, 18.104087012639], [121.646118142272, 18.1093081519656], [121.640624978211, 18.1093081519656], [121.640624978211, 18.104087012639]]]]}, "properties": {"taskId": 4397, "taskX": 54912, "taskY": 36120, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.371459939197, 18.4118667620183], [121.374206521227, 18.4118667620183], [121.374206521227, 18.4144727284777], [121.371459939197, 18.4144727284777], [121.371459939197, 18.4118667620183]]]]}, "properties": {"taskId": 4593, "taskX": 109726, "taskY": 72358, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.646118142272, 18.104087012639], [121.651611306334, 18.104087012639], [121.651611306334, 18.1093081519656], [121.646118142272, 18.1093081519656], [121.646118142272, 18.104087012639]]]]}, "properties": {"taskId": 4399, "taskX": 54913, "taskY": 36120, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.5916668753295], [121.761474587564, 17.5916668753295], [121.761474587564, 17.602139120297], [121.750488259441, 17.602139120297], [121.750488259441, 17.5916668753295]]]]}, "properties": {"taskId": 4730, "taskX": 27466, "taskY": 18011, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 20.4373079470634], [121.975707985963, 20.4373079470634], [121.975707985963, 20.4424552567539], [121.970214821902, 20.4424552567539], [121.970214821902, 20.4373079470634]]]]}, "properties": {"taskId": 4529, "taskX": 54972, "taskY": 36570, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.223144509536, 18.5629474396796], [121.225891091567, 18.5629474396796], [121.225891091567, 18.5655511094825], [121.223144509536, 18.5655511094825], [121.223144509536, 18.5629474396796]]]]}, "properties": {"taskId": 4569, "taskX": 109672, "taskY": 72416, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.687316872734, 17.657108436848], [121.690063454765, 17.657108436848], [121.690063454765, 17.6597256051114], [121.687316872734, 17.6597256051114], [121.687316872734, 17.657108436848]]]]}, "properties": {"taskId": 4540, "taskX": 109841, "taskY": 72069, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.365966775135, 18.4118667620183], [121.371459939197, 18.4118667620183], [121.371459939197, 18.4170786554759], [121.365966775135, 18.4170786554759], [121.365966775135, 18.4118667620183]]]]}, "properties": {"taskId": 4578, "taskX": 54862, "taskY": 36179, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698303200857, 17.5550092406214], [121.701049782888, 17.5550092406214], [121.701049782888, 17.5576278893685], [121.698303200857, 17.5576278893685], [121.698303200857, 17.5550092406214]]]]}, "properties": {"taskId": 4211, "taskX": 109845, "taskY": 72030, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.1249706362482], [121.684570290703, 18.1249706362482], [121.684570290703, 18.1354115139683], [121.67358396258, 18.1354115139683], [121.67358396258, 18.1249706362482]]]]}, "properties": {"taskId": 4415, "taskX": 27459, "taskY": 18062, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.974334694948, 20.4450288469673], [121.975707985963, 20.4450288469673], [121.975707985963, 20.4463156259142], [121.974334694948, 20.4463156259142], [121.974334694948, 20.4450288469673]]]]}, "properties": {"taskId": 4543, "taskX": 219891, "taskY": 146286, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.393432595443, 18.3962301348468], [121.398925759504, 18.3962301348468], [121.398925759504, 18.4014425016654], [121.393432595443, 18.4014425016654], [121.393432595443, 18.3962301348468]]]]}, "properties": {"taskId": 4591, "taskX": 54867, "taskY": 36176, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.4222903910698], [121.426391579812, 18.4222903910698], [121.426391579812, 18.4275019687616], [121.42089841575, 18.4275019687616], [121.42089841575, 18.4222903910698]]]]}, "properties": {"taskId": 4666, "taskX": 54872, "taskY": 36181, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 18.4379246502857], [121.448364236058, 18.4379246502857], [121.448364236058, 18.4431357540414], [121.442871071996, 18.4431357540414], [121.442871071996, 18.4379246502857]]]]}, "properties": {"taskId": 4669, "taskX": 54876, "taskY": 36184, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.475830056365, 17.8114560854768], [121.486816384489, 17.8114560854768], [121.486816384489, 17.8219155128794], [121.475830056365, 17.8219155128794], [121.475830056365, 17.8114560854768]]]]}, "properties": {"taskId": 4427, "taskX": 27441, "taskY": 18032, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.74499509538, 17.7068281209488], [121.750488259441, 17.7068281209488], [121.750488259441, 17.7120609713899], [121.74499509538, 17.7120609713899], [121.74499509538, 17.7068281209488]]]]}, "properties": {"taskId": 4547, "taskX": 54931, "taskY": 36044, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.409912087627, 18.4118667620183], [121.415405251689, 18.4118667620183], [121.415405251689, 18.4170786554759], [121.409912087627, 18.4170786554759], [121.409912087627, 18.4118667620183]]]]}, "properties": {"taskId": 4522, "taskX": 54870, "taskY": 36179, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.503295876673, 17.6963619623342], [121.508789040735, 17.6963619623342], [121.508789040735, 17.7015951179171], [121.503295876673, 17.7015951179171], [121.503295876673, 17.6963619623342]]]]}, "properties": {"taskId": 4419, "taskX": 54887, "taskY": 36042, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.319274880612, 18.510865705891], [121.322021462643, 18.510865705891], [121.322021462643, 18.513470169461], [121.319274880612, 18.513470169461], [121.319274880612, 18.510865705891]]]]}, "properties": {"taskId": 4063, "taskX": 109707, "taskY": 72396, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.2502199739071], [121.486816384489, 18.2502199739071], [121.486816384489, 18.271086106447], [121.464843728242, 18.271086106447], [121.464843728242, 18.2502199739071]]]]}, "properties": {"taskId": 3966, "taskX": 13720, "taskY": 9037, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.316528298582, 18.5082612026827], [121.319274880612, 18.5082612026827], [121.319274880612, 18.510865705891], [121.316528298582, 18.510865705891], [121.316528298582, 18.5082612026827]]]]}, "properties": {"taskId": 4058, "taskX": 109706, "taskY": 72395, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698989846365, 17.5576278893685], [121.699676491872, 17.5576278893685], [121.699676491872, 17.5582825456386], [121.698989846365, 17.5582825456386], [121.698989846365, 17.5576278893685]]]]}, "properties": {"taskId": 4227, "taskX": 439381, "taskY": 288124, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.387939431381, 18.3545255259514], [121.398925759504, 18.3545255259514], [121.398925759504, 18.3649526233622], [121.387939431381, 18.3649526233622], [121.387939431381, 18.3545255259514]]]]}, "properties": {"taskId": 4491, "taskX": 27433, "taskY": 18084, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 17.6963619623342], [121.503295876673, 17.6963619623342], [121.503295876673, 17.7015951179171], [121.497802712612, 17.7015951179171], [121.497802712612, 17.6963619623342]]]]}, "properties": {"taskId": 4417, "taskX": 54886, "taskY": 36042, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.0205276547308], [121.684570290703, 18.0205276547308], [121.684570290703, 18.0309747467668], [121.67358396258, 18.0309747467668], [121.67358396258, 18.0205276547308]]]]}, "properties": {"taskId": 4483, "taskX": 27459, "taskY": 18052, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.113281228305, 18.6150132799934], [121.118774392367, 18.6150132799934], [121.118774392367, 18.620218988415], [121.113281228305, 18.620218988415], [121.113281228305, 18.6150132799934]]]]}, "properties": {"taskId": 4321, "taskX": 54816, "taskY": 36218, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.3649526233622], [121.387939431381, 18.3649526233622], [121.387939431381, 18.3753790908532], [121.376953103258, 18.3753790908532], [121.376953103258, 18.3649526233622]]]]}, "properties": {"taskId": 4490, "taskX": 27432, "taskY": 18085, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.327514626705, 18.4900285707562], [121.333007790766, 18.4900285707562], [121.333007790766, 18.4952380922353], [121.327514626705, 18.4952380922353], [121.327514626705, 18.4900285707562]]]]}, "properties": {"taskId": 4051, "taskX": 54855, "taskY": 36194, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.720275857103, 17.638787193754], [121.723022439134, 17.638787193754], [121.723022439134, 17.6414046282956], [121.720275857103, 17.6414046282956], [121.720275857103, 17.638787193754]]]]}, "properties": {"taskId": 4411, "taskX": 109853, "taskY": 72062, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.518344184812], [121.81640622818, 17.518344184812], [121.81640622818, 17.5392965531931], [121.794433571933, 17.5392965531931], [121.794433571933, 17.518344184812]]]]}, "properties": {"taskId": 4383, "taskX": 13735, "taskY": 9002, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.1876065493462], [121.651611306334, 18.1876065493462], [121.651611306334, 18.1980436836125], [121.640624978211, 18.1980436836125], [121.640624978211, 18.1876065493462]]]]}, "properties": {"taskId": 4433, "taskX": 27456, "taskY": 18068, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.1980436836125], [121.651611306334, 18.1980436836125], [121.651611306334, 18.2084801928881], [121.640624978211, 18.2084801928881], [121.640624978211, 18.1980436836125]]]]}, "properties": {"taskId": 4434, "taskX": 27456, "taskY": 18069, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.269836404059, 18.5343044504727], [121.272582986089, 18.5343044504727], [121.272582986089, 18.5369085570839], [121.269836404059, 18.5369085570839], [121.269836404059, 18.5343044504727]]]]}, "properties": {"taskId": 4568, "taskX": 109689, "taskY": 72405, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.670837380549, 18.2893419146663], [121.67358396258, 18.2893419146663], [121.67358396258, 18.2919497303851], [121.670837380549, 18.2919497303851], [121.670837380549, 18.2893419146663]]]]}, "properties": {"taskId": 4244, "taskX": 109835, "taskY": 72311, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 17.7696122440617], [122.03613279064, 17.8114560854767], [122.080078103132, 17.8114560854767], [122.080078103132, 17.7696122440617], [122.03613279064, 17.7696122440617]]]]}, "properties": {"taskId": 1221, "taskX": 6873, "taskY": 4507, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.481323220427, 17.7172936692013], [121.486816384489, 17.7172936692013], [121.486816384489, 17.7225262143437], [121.481323220427, 17.7225262143437], [121.481323220427, 17.7172936692013]]]]}, "properties": {"taskId": 4031, "taskX": 54883, "taskY": 36046, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.278076150151, 18.526491892571], [121.283569314212, 18.526491892571], [121.283569314212, 18.5317003041803], [121.278076150151, 18.5317003041803], [121.278076150151, 18.526491892571]]]]}, "properties": {"taskId": 3978, "taskX": 54846, "taskY": 36201, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.278076150151, 18.5369085570839], [121.283569314212, 18.5369085570839], [121.283569314212, 18.5421166512436], [121.278076150151, 18.5421166512436], [121.278076150151, 18.5369085570839]]]]}, "properties": {"taskId": 3986, "taskX": 54846, "taskY": 36203, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.283569314212, 18.5369085570839], [121.289062478274, 18.5369085570839], [121.289062478274, 18.5421166512436], [121.283569314212, 18.5421166512436], [121.283569314212, 18.5369085570839]]]]}, "properties": {"taskId": 3988, "taskX": 54847, "taskY": 36203, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.283569314212, 18.5212833222942], [121.289062478274, 18.5212833222942], [121.289062478274, 18.526491892571], [121.283569314212, 18.526491892571], [121.283569314212, 18.5212833222942]]]]}, "properties": {"taskId": 3979, "taskX": 54847, "taskY": 36200, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.063598610948, 18.3128108432568], [122.069091775009, 18.3128108432568], [122.069091775009, 18.318025728832], [122.063598610948, 18.318025728832], [122.063598610948, 18.3128108432568]]]]}, "properties": {"taskId": 3915, "taskX": 54989, "taskY": 36160, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.481323220427, 17.7225262143437], [121.486816384489, 17.7225262143437], [121.486816384489, 17.7277586067781], [121.481323220427, 17.7277586067781], [121.481323220427, 17.7225262143437]]]]}, "properties": {"taskId": 4032, "taskX": 54883, "taskY": 36047, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698989846365, 17.5582825456386], [121.699676491872, 17.5582825456386], [121.699676491872, 17.558937199542], [121.698989846365, 17.558937199542], [121.698989846365, 17.5582825456386]]]]}, "properties": {"taskId": 4228, "taskX": 439381, "taskY": 288125, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.5654836083839], [121.753234841472, 17.5654836083839], [121.753234841472, 17.5681021056307], [121.750488259441, 17.5681021056307], [121.750488259441, 17.5654836083839]]]]}, "properties": {"taskId": 4237, "taskX": 109864, "taskY": 72034, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.398925759504, 18.3128108432568], [121.42089841575, 18.3128108432568], [121.42089841575, 18.3336694425994], [121.398925759504, 18.3336694425994], [121.398925759504, 18.3128108432568]]]]}, "properties": {"taskId": 4519, "taskX": 13717, "taskY": 9040, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.387939431381, 18.4066547107354], [121.398925759504, 18.4066547107354], [121.398925759504, 18.4170786554759], [121.387939431381, 18.4170786554759], [121.387939431381, 18.4066547107354]]]]}, "properties": {"taskId": 4500, "taskX": 27433, "taskY": 18089, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.327514626705, 18.5004474552763], [121.333007790766, 18.5004474552763], [121.333007790766, 18.505656659841], [121.327514626705, 18.505656659841], [121.327514626705, 18.5004474552763]]]]}, "properties": {"taskId": 4055, "taskX": 54855, "taskY": 36196, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679248788018, 17.8333548087704], [121.679420449395, 17.8333548087704], [121.679420449395, 17.8335182219613], [121.679248788018, 17.8335182219613], [121.679248788018, 17.8333548087704]]]]}, "properties": {"taskId": 4187, "taskX": 1757409, "taskY": 1154182, "taskZoom": 21, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679248788018, 17.8335182219613], [121.679420449395, 17.8335182219613], [121.679420449395, 17.8336816350023], [121.679248788018, 17.8336816350023], [121.679248788018, 17.8335182219613]]]]}, "properties": {"taskId": 4188, "taskX": 1757409, "taskY": 1154183, "taskZoom": 21, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.113281228305, 18.620218988415], [121.116027810336, 18.620218988415], [121.116027810336, 18.6228217828704], [121.113281228305, 18.6228217828704], [121.113281228305, 18.620218988415]]]]}, "properties": {"taskId": 4341, "taskX": 109632, "taskY": 72438, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.398925759504, 18.3858049281171], [121.409912087627, 18.3858049281171], [121.409912087627, 18.3962301348468], [121.398925759504, 18.3962301348468], [121.398925759504, 18.3858049281171]]]]}, "properties": {"taskId": 4466, "taskX": 27434, "taskY": 18087, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.431884743873, 18.3962301348468], [121.442871071996, 18.3962301348468], [121.442871071996, 18.4066547107354], [121.431884743873, 18.4066547107354], [121.431884743873, 18.3962301348468]]]]}, "properties": {"taskId": 4507, "taskX": 27437, "taskY": 18088, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 18.2084801928881], [121.596679665719, 18.2084801928881], [121.596679665719, 18.2293513352315], [121.574707009473, 18.2293513352315], [121.574707009473, 18.2084801928881]]]]}, "properties": {"taskId": 3976, "taskX": 13725, "taskY": 9035, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.4066547107354], [121.431884743873, 18.4066547107354], [121.431884743873, 18.4170786554759], [121.42089841575, 18.4170786554759], [121.42089841575, 18.4066547107354]]]]}, "properties": {"taskId": 4506, "taskX": 27436, "taskY": 18089, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.190185525167, 18.5837756851588], [121.195678689228, 18.5837756851588], [121.195678689228, 18.5889823489055], [121.190185525167, 18.5889823489055], [121.190185525167, 18.5837756851588]]]]}, "properties": {"taskId": 4561, "taskX": 54830, "taskY": 36212, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.225891091567, 18.5655511094825], [121.228637673597, 18.5655511094825], [121.228637673597, 18.568154739547], [121.225891091567, 18.568154739547], [121.225891091567, 18.5655511094825]]]]}, "properties": {"taskId": 4572, "taskX": 109673, "taskY": 72417, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.387939431381, 18.4014425016654], [121.393432595443, 18.4014425016654], [121.393432595443, 18.4066547107354], [121.387939431381, 18.4066547107354], [121.387939431381, 18.4014425016654]]]]}, "properties": {"taskId": 4590, "taskX": 54866, "taskY": 36177, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.387939431381, 18.3858049281171], [121.393432595443, 18.3858049281171], [121.393432595443, 18.3910176103179], [121.387939431381, 18.3910176103179], [121.387939431381, 18.3858049281171]]]]}, "properties": {"taskId": 4525, "taskX": 54866, "taskY": 36174, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.393432595443, 18.3910176103179], [121.398925759504, 18.3910176103179], [121.398925759504, 18.3962301348468], [121.393432595443, 18.3962301348468], [121.393432595443, 18.3910176103179]]]]}, "properties": {"taskId": 4528, "taskX": 54867, "taskY": 36175, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.3753790908532], [121.387939431381, 18.3753790908532], [121.387939431381, 18.3858049281171], [121.376953103258, 18.3858049281171], [121.376953103258, 18.3753790908532]]]]}, "properties": {"taskId": 4485, "taskX": 27432, "taskY": 18086, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.31103513452, 18.513470169461], [121.313781716551, 18.513470169461], [121.313781716551, 18.5160745933881], [121.31103513452, 18.5160745933881], [121.31103513452, 18.513470169461]]]]}, "properties": {"taskId": 4066, "taskX": 109704, "taskY": 72397, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 18.5473245866212], [121.250610329843, 18.5473245866212], [121.250610329843, 18.5525323631785], [121.245117165782, 18.5525323631785], [121.245117165782, 18.5473245866212]]]]}, "properties": {"taskId": 4362, "taskX": 54840, "taskY": 36205, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.261596657966, 18.5343044504727], [121.264343239997, 18.5343044504727], [121.264343239997, 18.5369085570839], [121.261596657966, 18.5369085570839], [121.261596657966, 18.5343044504727]]]]}, "properties": {"taskId": 4554, "taskX": 109686, "taskY": 72405, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.365966775135, 18.4587681168231], [121.376953103258, 18.4587681168231], [121.376953103258, 18.4691889012235], [121.365966775135, 18.4691889012235], [121.365966775135, 18.4587681168231]]]]}, "properties": {"taskId": 3991, "taskX": 27431, "taskY": 18094, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.319274880612, 18.513470169461], [121.322021462643, 18.513470169461], [121.322021462643, 18.5160745933881], [121.319274880612, 18.5160745933881], [121.319274880612, 18.513470169461]]]]}, "properties": {"taskId": 4064, "taskX": 109707, "taskY": 72397, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.393432595443, 18.3858049281171], [121.398925759504, 18.3858049281171], [121.398925759504, 18.3910176103179], [121.393432595443, 18.3910176103179], [121.393432595443, 18.3858049281171]]]]}, "properties": {"taskId": 4527, "taskX": 54867, "taskY": 36174, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.972961403933, 20.4450288469673], [121.974334694948, 20.4450288469673], [121.974334694948, 20.4463156259142], [121.972961403933, 20.4463156259142], [121.972961403933, 20.4450288469673]]]]}, "properties": {"taskId": 4541, "taskX": 219890, "taskY": 146286, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.974334694948, 20.4463156259142], [121.975707985963, 20.4463156259142], [121.975707985963, 20.447602394087], [121.974334694948, 20.447602394087], [121.974334694948, 20.4463156259142]]]]}, "properties": {"taskId": 4544, "taskX": 219891, "taskY": 146287, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.264343239997, 18.5317003041803], [121.267089822028, 18.5317003041803], [121.267089822028, 18.5343044504727], [121.264343239997, 18.5343044504727], [121.264343239997, 18.5317003041803]]]]}, "properties": {"taskId": 4555, "taskX": 109687, "taskY": 72404, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.6754278152737], [121.739501931318, 17.6754278152737], [121.739501931318, 17.6858951936713], [121.728515603195, 17.6858951936713], [121.728515603195, 17.6754278152737]]]]}, "properties": {"taskId": 4258, "taskX": 27464, "taskY": 18019, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.322021462643, 18.4691889012235], [121.333007790766, 18.4691889012235], [121.333007790766, 18.4796090526366], [121.322021462643, 18.4796090526366], [121.322021462643, 18.4691889012235]]]]}, "properties": {"taskId": 3996, "taskX": 27427, "taskY": 18095, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.354980447012, 18.4587681168231], [121.365966775135, 18.4587681168231], [121.365966775135, 18.4691889012235], [121.354980447012, 18.4691889012235], [121.354980447012, 18.4587681168231]]]]}, "properties": {"taskId": 3989, "taskX": 27430, "taskY": 18094, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.365966775135, 18.4691889012235], [121.376953103258, 18.4691889012235], [121.376953103258, 18.4796090526366], [121.365966775135, 18.4796090526366], [121.365966775135, 18.4691889012235]]]]}, "properties": {"taskId": 3992, "taskX": 27431, "taskY": 18095, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.322021462643, 18.4587681168231], [121.333007790766, 18.4587681168231], [121.333007790766, 18.4691889012235], [121.322021462643, 18.4691889012235], [121.322021462643, 18.4587681168231]]]]}, "properties": {"taskId": 3995, "taskX": 27427, "taskY": 18094, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.31103513452, 18.4952380922353], [121.316528298582, 18.4952380922353], [121.316528298582, 18.5004474552763], [121.31103513452, 18.5004474552763], [121.31103513452, 18.4952380922353]]]]}, "properties": {"taskId": 4002, "taskX": 54852, "taskY": 36195, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.316528298582, 18.4952380922353], [121.322021462643, 18.4952380922353], [121.322021462643, 18.5004474552763], [121.316528298582, 18.5004474552763], [121.316528298582, 18.4952380922353]]]]}, "properties": {"taskId": 4004, "taskX": 54853, "taskY": 36195, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.343994118889, 18.4691889012235], [121.354980447012, 18.4691889012235], [121.354980447012, 18.4796090526366], [121.343994118889, 18.4796090526366], [121.343994118889, 18.4691889012235]]]]}, "properties": {"taskId": 4012, "taskX": 27429, "taskY": 18095, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.316528298582, 18.5160745933881], [121.322021462643, 18.5160745933881], [121.322021462643, 18.5212833222942], [121.316528298582, 18.5212833222942], [121.316528298582, 18.5160745933881]]]]}, "properties": {"taskId": 4020, "taskX": 54853, "taskY": 36199, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.354980447012, 18.4691889012235], [121.365966775135, 18.4691889012235], [121.365966775135, 18.4796090526366], [121.354980447012, 18.4796090526366], [121.354980447012, 18.4691889012235]]]]}, "properties": {"taskId": 3990, "taskX": 27430, "taskY": 18095, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 18.4743990560726], [121.338500954828, 18.4743990560726], [121.338500954828, 18.4796090526366], [121.333007790766, 18.4796090526366], [121.333007790766, 18.4743990560726]]]]}, "properties": {"taskId": 4014, "taskX": 54856, "taskY": 36191, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.31103513452, 18.4691889012235], [121.322021462643, 18.4691889012235], [121.322021462643, 18.4796090526366], [121.31103513452, 18.4796090526366], [121.31103513452, 18.4691889012235]]]]}, "properties": {"taskId": 3994, "taskX": 27426, "taskY": 18095, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.322021462643, 18.4796090526366], [121.333007790766, 18.4796090526366], [121.333007790766, 18.4900285707562], [121.322021462643, 18.4900285707562], [121.322021462643, 18.4796090526366]]]]}, "properties": {"taskId": 3999, "taskX": 27427, "taskY": 18096, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.31103513452, 18.4796090526366], [121.322021462643, 18.4796090526366], [121.322021462643, 18.4900285707562], [121.31103513452, 18.4900285707562], [121.31103513452, 18.4796090526366]]]]}, "properties": {"taskId": 3997, "taskX": 27426, "taskY": 18096, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.316528298582, 18.4900285707562], [121.322021462643, 18.4900285707562], [121.322021462643, 18.4952380922353], [121.316528298582, 18.4952380922353], [121.316528298582, 18.4900285707562]]]]}, "properties": {"taskId": 4003, "taskX": 54853, "taskY": 36194, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.343994118889, 18.4587681168231], [121.354980447012, 18.4587681168231], [121.354980447012, 18.4691889012235], [121.343994118889, 18.4691889012235], [121.343994118889, 18.4587681168231]]]]}, "properties": {"taskId": 4011, "taskX": 27429, "taskY": 18094, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.322021462643, 18.510865705891], [121.333007790766, 18.510865705891], [121.333007790766, 18.5212833222942], [121.322021462643, 18.5212833222942], [121.322021462643, 18.510865705891]]]]}, "properties": {"taskId": 4008, "taskX": 27427, "taskY": 18099, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.31103513452, 18.4900285707562], [121.316528298582, 18.4900285707562], [121.316528298582, 18.4952380922353], [121.31103513452, 18.4952380922353], [121.31103513452, 18.4900285707562]]]]}, "properties": {"taskId": 4001, "taskX": 54852, "taskY": 36194, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.31103513452, 18.505656659841], [121.316528298582, 18.505656659841], [121.316528298582, 18.510865705891], [121.31103513452, 18.510865705891], [121.31103513452, 18.505656659841]]]]}, "properties": {"taskId": 4022, "taskX": 54852, "taskY": 36197, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 18.4691889012235], [121.338500954828, 18.4691889012235], [121.338500954828, 18.4743990560726], [121.333007790766, 18.4743990560726], [121.333007790766, 18.4691889012235]]]]}, "properties": {"taskId": 4013, "taskX": 54856, "taskY": 36190, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.338500954828, 18.4691889012235], [121.343994118889, 18.4691889012235], [121.343994118889, 18.4743990560726], [121.338500954828, 18.4743990560726], [121.338500954828, 18.4691889012235]]]]}, "properties": {"taskId": 4015, "taskX": 54857, "taskY": 36190, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.31103513452, 18.5160745933881], [121.316528298582, 18.5160745933881], [121.316528298582, 18.5212833222942], [121.31103513452, 18.5212833222942], [121.31103513452, 18.5160745933881]]]]}, "properties": {"taskId": 4018, "taskX": 54852, "taskY": 36199, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.31103513452, 18.5004474552763], [121.316528298582, 18.5004474552763], [121.316528298582, 18.505656659841], [121.31103513452, 18.505656659841], [121.31103513452, 18.5004474552763]]]]}, "properties": {"taskId": 4021, "taskX": 54852, "taskY": 36196, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.316528298582, 18.5004474552763], [121.322021462643, 18.5004474552763], [121.322021462643, 18.505656659841], [121.316528298582, 18.505656659841], [121.316528298582, 18.5004474552763]]]]}, "properties": {"taskId": 4023, "taskX": 54853, "taskY": 36196, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.084442116982, 18.5993951989841], [121.085815407998, 18.5993951989841], [121.085815407998, 18.6006967604747], [121.084442116982, 18.6006967604747], [121.084442116982, 18.5993951989841]]]]}, "properties": {"taskId": 4047, "taskX": 219243, "taskY": 144860, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.327514626705, 18.4952380922353], [121.333007790766, 18.4952380922353], [121.333007790766, 18.5004474552763], [121.327514626705, 18.5004474552763], [121.327514626705, 18.4952380922353]]]]}, "properties": {"taskId": 4052, "taskX": 54855, "taskY": 36195, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.518344184812], [121.706542946949, 17.518344184812], [121.706542946949, 17.5392965531931], [121.684570290703, 17.5392965531931], [121.684570290703, 17.518344184812]]]]}, "properties": {"taskId": 4037, "taskX": 13730, "taskY": 9002, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.5392965531931], [121.728515603195, 17.5392965531931], [121.728515603195, 17.5602465002479], [121.706542946949, 17.5602465002479], [121.706542946949, 17.5392965531931]]]]}, "properties": {"taskId": 4040, "taskX": 13731, "taskY": 9003, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.084442116982, 18.6006967604747], [121.085815407998, 18.6006967604747], [121.085815407998, 18.6019983120146], [121.084442116982, 18.6019983120146], [121.084442116982, 18.6006967604747]]]]}, "properties": {"taskId": 4048, "taskX": 219243, "taskY": 144861, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.083068825967, 18.5993951989841], [121.084442116982, 18.5993951989841], [121.084442116982, 18.6006967604747], [121.083068825967, 18.6006967604747], [121.083068825967, 18.5993951989841]]]]}, "properties": {"taskId": 4045, "taskX": 219242, "taskY": 144860, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 17.8333548087704], [121.679248788018, 17.8333548087704], [121.679248788018, 17.8335182219613], [121.679077126642, 17.8335182219613], [121.679077126642, 17.8333548087704]]]]}, "properties": {"taskId": 4185, "taskX": 1757408, "taskY": 1154182, "taskZoom": 21, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.5392965531931], [121.695556618826, 17.5392965531931], [121.695556618826, 17.5497718295439], [121.684570290703, 17.5497718295439], [121.684570290703, 17.5392965531931]]]]}, "properties": {"taskId": 4041, "taskX": 27460, "taskY": 18006, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698303200857, 17.5497718295439], [121.701049782888, 17.5497718295439], [121.701049782888, 17.5523905540115], [121.698303200857, 17.5523905540115], [121.698303200857, 17.5497718295439]]]]}, "properties": {"taskId": 4215, "taskX": 109845, "taskY": 72028, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698989846365, 17.558937199542], [121.699676491872, 17.558937199542], [121.699676491872, 17.5595918510784], [121.698989846365, 17.5595918510784], [121.698989846365, 17.558937199542]]]]}, "properties": {"taskId": 4223, "taskX": 439381, "taskY": 288126, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.518344184812], [121.728515603195, 17.518344184812], [121.728515603195, 17.5392965531931], [121.706542946949, 17.5392965531931], [121.706542946949, 17.518344184812]]]]}, "properties": {"taskId": 4039, "taskX": 13731, "taskY": 9002, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.083068825967, 18.6006967604747], [121.084442116982, 18.6006967604747], [121.084442116982, 18.6019983120146], [121.083068825967, 18.6019983120146], [121.083068825967, 18.6006967604747]]]]}, "properties": {"taskId": 4046, "taskX": 219242, "taskY": 144861, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.5392965531931], [121.706542946949, 17.5392965531931], [121.706542946949, 17.5497718295439], [121.695556618826, 17.5497718295439], [121.695556618826, 17.5392965531931]]]]}, "properties": {"taskId": 4043, "taskX": 27461, "taskY": 18006, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 17.6963619623342], [121.497802712612, 17.6963619623342], [121.497802712612, 17.7068281209488], [121.486816384489, 17.7068281209488], [121.486816384489, 17.6963619623342]]]]}, "properties": {"taskId": 4034, "taskX": 27442, "taskY": 18021, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 18.2502199739071], [121.508789040735, 18.2502199739071], [121.508789040735, 18.271086106447], [121.486816384489, 18.271086106447], [121.486816384489, 18.2502199739071]]]]}, "properties": {"taskId": 3968, "taskX": 13721, "taskY": 9037, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.692810036795, 17.6544912305301], [121.695556618826, 17.6544912305301], [121.695556618826, 17.657108436848], [121.692810036795, 17.657108436848], [121.692810036795, 17.6544912305301]]]]}, "properties": {"taskId": 4027, "taskX": 109843, "taskY": 72068, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.690063454765, 17.657108436848], [121.692810036795, 17.657108436848], [121.692810036795, 17.6597256051114], [121.690063454765, 17.6597256051114], [121.690063454765, 17.657108436848]]]]}, "properties": {"taskId": 4026, "taskX": 109842, "taskY": 72069, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.690063454765, 17.6544912305301], [121.692810036795, 17.6544912305301], [121.692810036795, 17.657108436848], [121.690063454765, 17.657108436848], [121.690063454765, 17.6544912305301]]]]}, "properties": {"taskId": 4025, "taskX": 109842, "taskY": 72068, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.692810036795, 17.657108436848], [121.695556618826, 17.657108436848], [121.695556618826, 17.6597256051114], [121.692810036795, 17.6597256051114], [121.692810036795, 17.657108436848]]]]}, "properties": {"taskId": 4028, "taskX": 109843, "taskY": 72069, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.322021462643, 18.4952380922353], [121.327514626705, 18.4952380922353], [121.327514626705, 18.5004474552763], [121.322021462643, 18.5004474552763], [121.322021462643, 18.4952380922353]]]]}, "properties": {"taskId": 4050, "taskX": 54854, "taskY": 36195, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.475830056365, 17.7225262143437], [121.481323220427, 17.7225262143437], [121.481323220427, 17.7277586067781], [121.475830056365, 17.7277586067781], [121.475830056365, 17.7225262143437]]]]}, "properties": {"taskId": 4030, "taskX": 54882, "taskY": 36047, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.322021462643, 18.4900285707562], [121.327514626705, 18.4900285707562], [121.327514626705, 18.4952380922353], [121.322021462643, 18.4952380922353], [121.322021462643, 18.4900285707562]]]]}, "properties": {"taskId": 4049, "taskX": 54854, "taskY": 36194, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.681823708672, 17.8323743264764], [121.684570290703, 17.8323743264764], [121.684570290703, 17.8349889339319], [121.681823708672, 17.8349889339319], [121.681823708672, 17.8323743264764]]]]}, "properties": {"taskId": 4147, "taskX": 109839, "taskY": 72136, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 17.8362962232647], [121.679763772149, 17.8362962232647], [121.679763772149, 17.8369498643321], [121.679077126642, 17.8369498643321], [121.679077126642, 17.8362962232647]]]]}, "properties": {"taskId": 4153, "taskX": 439352, "taskY": 288550, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 17.8376035030001], [121.681823708672, 17.8376035030001], [121.681823708672, 17.8402180336762], [121.679077126642, 17.8402180336762], [121.679077126642, 17.8376035030001]]]]}, "properties": {"taskId": 4141, "taskX": 109838, "taskY": 72138, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.681823708672, 17.8402180336762], [121.684570290703, 17.8402180336762], [121.684570290703, 17.8428325259552], [121.681823708672, 17.8428325259552], [121.681823708672, 17.8402180336762]]]]}, "properties": {"taskId": 4144, "taskX": 109839, "taskY": 72139, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679763772149, 17.8369498643321], [121.680450417657, 17.8369498643321], [121.680450417657, 17.8376035030001], [121.679763772149, 17.8376035030001], [121.679763772149, 17.8369498643321]]]]}, "properties": {"taskId": 4156, "taskX": 439353, "taskY": 288551, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 17.6858951936713], [121.497802712612, 17.6858951936713], [121.497802712612, 17.6963619623342], [121.486816384489, 17.6963619623342], [121.486816384489, 17.6858951936713]]]]}, "properties": {"taskId": 4033, "taskX": 27442, "taskY": 18020, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.264343239997, 18.5343044504727], [121.265716531013, 18.5343044504727], [121.265716531013, 18.5356065087388], [121.264343239997, 18.5356065087388], [121.264343239997, 18.5343044504727]]]]}, "properties": {"taskId": 4557, "taskX": 219374, "taskY": 144810, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.415405251689, 18.4717939984313], [121.41815183372, 18.4717939984313], [121.41815183372, 18.4743990560726], [121.415405251689, 18.4743990560726], [121.415405251689, 18.4717939984313]]]]}, "properties": {"taskId": 4446, "taskX": 109742, "taskY": 72381, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.4014425016654], [121.38244626732, 18.4014425016654], [121.38244626732, 18.4066547107354], [121.376953103258, 18.4066547107354], [121.376953103258, 18.4014425016654]]]]}, "properties": {"taskId": 4586, "taskX": 54864, "taskY": 36177, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698303200857, 17.5576278893685], [121.698989846365, 17.5576278893685], [121.698989846365, 17.5582825456386], [121.698303200857, 17.5582825456386], [121.698303200857, 17.5576278893685]]]]}, "properties": {"taskId": 4225, "taskX": 439380, "taskY": 288124, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.190185525167, 18.5889823489055], [121.195678689228, 18.5889823489055], [121.195678689228, 18.5941888535266], [121.190185525167, 18.5941888535266], [121.190185525167, 18.5889823489055]]]]}, "properties": {"taskId": 4562, "taskX": 54830, "taskY": 36213, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.365966775135, 18.4222903910698], [121.371459939197, 18.4222903910698], [121.371459939197, 18.4275019687616], [121.365966775135, 18.4275019687616], [121.365966775135, 18.4222903910698]]]]}, "properties": {"taskId": 4574, "taskX": 54862, "taskY": 36181, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.4066547107354], [121.38244626732, 18.4066547107354], [121.38244626732, 18.4118667620183], [121.376953103258, 18.4118667620183], [121.376953103258, 18.4066547107354]]]]}, "properties": {"taskId": 4581, "taskX": 54864, "taskY": 36178, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 17.518344184812], [121.838378884426, 17.518344184812], [121.838378884426, 17.5392965531931], [121.81640622818, 17.5392965531931], [121.81640622818, 17.518344184812]]]]}, "properties": {"taskId": 4249, "taskX": 13736, "taskY": 9002, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 17.7068281209488], [121.74499509538, 17.7068281209488], [121.74499509538, 17.7120609713899], [121.739501931318, 17.7120609713899], [121.739501931318, 17.7068281209488]]]]}, "properties": {"taskId": 4545, "taskX": 54930, "taskY": 36044, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.74499509538, 17.7120609713899], [121.750488259441, 17.7120609713899], [121.750488259441, 17.7172936692013], [121.74499509538, 17.7172936692013], [121.74499509538, 17.7120609713899]]]]}, "properties": {"taskId": 4548, "taskX": 54931, "taskY": 36045, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.415405251689, 18.4118667620183], [121.42089841575, 18.4118667620183], [121.42089841575, 18.4170786554759], [121.415405251689, 18.4170786554759], [121.415405251689, 18.4118667620183]]]]}, "properties": {"taskId": 4524, "taskX": 54871, "taskY": 36179, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.0205276547308], [121.67358396258, 18.0205276547308], [121.67358396258, 18.0309747467668], [121.662597634457, 18.0309747467668], [121.662597634457, 18.0205276547308]]]]}, "properties": {"taskId": 4481, "taskX": 27458, "taskY": 18052, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.453857400119, 18.4170786554759], [121.464843728242, 18.4170786554759], [121.464843728242, 18.4275019687616], [121.453857400119, 18.4275019687616], [121.453857400119, 18.4170786554759]]]]}, "properties": {"taskId": 4515, "taskX": 27439, "taskY": 18090, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.371459939197, 18.4144727284777], [121.374206521227, 18.4144727284777], [121.374206521227, 18.4170786554759], [121.371459939197, 18.4170786554759], [121.371459939197, 18.4144727284777]]]]}, "properties": {"taskId": 4594, "taskX": 109726, "taskY": 72359, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.322021462643, 18.505656659841], [121.327514626705, 18.505656659841], [121.327514626705, 18.510865705891], [121.322021462643, 18.510865705891], [121.322021462643, 18.505656659841]]]]}, "properties": {"taskId": 4054, "taskX": 54854, "taskY": 36197, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.195678689228, 18.5889823489055], [121.20117185329, 18.5889823489055], [121.20117185329, 18.5941888535266], [121.195678689228, 18.5941888535266], [121.195678689228, 18.5889823489055]]]]}, "properties": {"taskId": 4564, "taskX": 54831, "taskY": 36213, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.0309747467668], [121.67358396258, 18.0309747467668], [121.67358396258, 18.0414212187671], [121.662597634457, 18.0414212187671], [121.662597634457, 18.0309747467668]]]]}, "properties": {"taskId": 4482, "taskX": 27458, "taskY": 18053, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 17.8219155128794], [121.475830056365, 17.8219155128794], [121.475830056365, 17.8323743264764], [121.464843728242, 17.8323743264764], [121.464843728242, 17.8219155128794]]]]}, "properties": {"taskId": 4426, "taskX": 27440, "taskY": 18033, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.431884743873, 18.4275019687616], [121.442871071996, 18.4275019687616], [121.442871071996, 18.4379246502857], [121.431884743873, 18.4379246502857], [121.431884743873, 18.4275019687616]]]]}, "properties": {"taskId": 4512, "taskX": 27437, "taskY": 18091, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.393432595443, 18.4014425016654], [121.398925759504, 18.4014425016654], [121.398925759504, 18.4066547107354], [121.393432595443, 18.4066547107354], [121.393432595443, 18.4014425016654]]]]}, "properties": {"taskId": 4592, "taskX": 54867, "taskY": 36177, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.6283170754359], [121.701049782888, 17.6283170754359], [121.701049782888, 17.6335522106155], [121.695556618826, 17.6335522106155], [121.695556618826, 17.6283170754359]]]]}, "properties": {"taskId": 4374, "taskX": 54922, "taskY": 36029, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.3858049281171], [121.387939431381, 18.3858049281171], [121.387939431381, 18.3962301348468], [121.376953103258, 18.3962301348468], [121.376953103258, 18.3858049281171]]]]}, "properties": {"taskId": 4486, "taskX": 27432, "taskY": 18087, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.610412575873, 18.070145817174], [121.613159157903, 18.070145817174], [121.613159157903, 18.0727569114491], [121.610412575873, 18.0727569114491], [121.610412575873, 18.070145817174]]]]}, "properties": {"taskId": 3712, "taskX": 109813, "taskY": 72227, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.256103493905, 18.5369085570839], [121.261596657966, 18.5369085570839], [121.261596657966, 18.5421166512436], [121.256103493905, 18.5421166512436], [121.256103493905, 18.5369085570839]]]]}, "properties": {"taskId": 4354, "taskX": 54842, "taskY": 36203, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 17.6963619623342], [121.750488259441, 17.6963619623342], [121.750488259441, 17.7068281209488], [121.739501931318, 17.7068281209488], [121.739501931318, 17.6963619623342]]]]}, "properties": {"taskId": 4256, "taskX": 27465, "taskY": 18021, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.341247536858, 18.4665837644539], [121.343994118889, 18.4665837644539], [121.343994118889, 18.4691889012235], [121.341247536858, 18.4691889012235], [121.341247536858, 18.4665837644539]]]]}, "properties": {"taskId": 4336, "taskX": 109715, "taskY": 72379, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 18.4275019687616], [121.453857400119, 18.4275019687616], [121.453857400119, 18.4379246502857], [121.442871071996, 18.4379246502857], [121.442871071996, 18.4275019687616]]]]}, "properties": {"taskId": 4514, "taskX": 27438, "taskY": 18091, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.398925759504, 18.3649526233622], [121.409912087627, 18.3649526233622], [121.409912087627, 18.3753790908532], [121.398925759504, 18.3753790908532], [121.398925759504, 18.3649526233622]]]]}, "properties": {"taskId": 4494, "taskX": 27434, "taskY": 18085, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698303200857, 17.5523905540115], [121.701049782888, 17.5523905540115], [121.701049782888, 17.5550092406214], [121.698303200857, 17.5550092406214], [121.698303200857, 17.5523905540115]]]]}, "properties": {"taskId": 4216, "taskX": 109845, "taskY": 72029, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698303200857, 17.5595918510784], [121.698989846365, 17.5595918510784], [121.698989846365, 17.5602465002479], [121.698303200857, 17.5602465002479], [121.698303200857, 17.5595918510784]]]]}, "properties": {"taskId": 4222, "taskX": 439380, "taskY": 288127, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.2919497303851], [121.486816384489, 18.2919497303851], [121.486816384489, 18.3128108432568], [121.464843728242, 18.3128108432568], [121.464843728242, 18.2919497303851]]]]}, "properties": {"taskId": 3970, "taskX": 13720, "taskY": 9039, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.541748025104, 18.4066547107354], [121.552734353227, 18.4066547107354], [121.552734353227, 18.4170786554759], [121.541748025104, 18.4170786554759], [121.541748025104, 18.4066547107354]]]]}, "properties": {"taskId": 4300, "taskX": 27447, "taskY": 18089, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 17.8428325259552], [121.668090798519, 17.8428325259552], [121.668090798519, 17.8480613953027], [121.662597634457, 17.8480613953027], [121.662597634457, 17.8428325259552]]]]}, "properties": {"taskId": 4133, "taskX": 54916, "taskY": 36070, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.283569314212, 18.526491892571], [121.289062478274, 18.526491892571], [121.289062478274, 18.5317003041803], [121.283569314212, 18.5317003041803], [121.283569314212, 18.526491892571]]]]}, "properties": {"taskId": 3980, "taskX": 54847, "taskY": 36201, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698989846365, 17.5595918510784], [121.699676491872, 17.5595918510784], [121.699676491872, 17.5602465002479], [121.698989846365, 17.5602465002479], [121.698989846365, 17.5595918510784]]]]}, "properties": {"taskId": 4224, "taskX": 439381, "taskY": 288127, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 17.7905353905046], [121.508789040735, 17.7905353905046], [121.508789040735, 17.800996044581], [121.497802712612, 17.800996044581], [121.497802712612, 17.7905353905046]]]]}, "properties": {"taskId": 4107, "taskX": 27443, "taskY": 18030, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698303200857, 17.558937199542], [121.698989846365, 17.558937199542], [121.698989846365, 17.5595918510784], [121.698303200857, 17.5595918510784], [121.698303200857, 17.558937199542]]]]}, "properties": {"taskId": 4221, "taskX": 439380, "taskY": 288126, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.327514626705, 18.505656659841], [121.333007790766, 18.505656659841], [121.333007790766, 18.510865705891], [121.327514626705, 18.510865705891], [121.327514626705, 18.505656659841]]]]}, "properties": {"taskId": 4056, "taskX": 54855, "taskY": 36197, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.319274880612, 18.5082612026827], [121.322021462643, 18.5082612026827], [121.322021462643, 18.510865705891], [121.319274880612, 18.510865705891], [121.319274880612, 18.5082612026827]]]]}, "properties": {"taskId": 4060, "taskX": 109707, "taskY": 72395, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.313781716551, 18.513470169461], [121.316528298582, 18.513470169461], [121.316528298582, 18.5160745933881], [121.313781716551, 18.5160745933881], [121.313781716551, 18.513470169461]]]]}, "properties": {"taskId": 4068, "taskX": 109705, "taskY": 72397, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.319274880612, 18.505656659841], [121.322021462643, 18.505656659841], [121.322021462643, 18.5082612026827], [121.319274880612, 18.5082612026827], [121.319274880612, 18.505656659841]]]]}, "properties": {"taskId": 4059, "taskX": 109707, "taskY": 72394, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.316528298582, 18.510865705891], [121.319274880612, 18.510865705891], [121.319274880612, 18.513470169461], [121.316528298582, 18.513470169461], [121.316528298582, 18.510865705891]]]]}, "properties": {"taskId": 4061, "taskX": 109706, "taskY": 72396, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.316528298582, 18.513470169461], [121.319274880612, 18.513470169461], [121.319274880612, 18.5160745933881], [121.316528298582, 18.5160745933881], [121.316528298582, 18.513470169461]]]]}, "properties": {"taskId": 4062, "taskX": 109706, "taskY": 72397, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.31103513452, 18.510865705891], [121.313781716551, 18.510865705891], [121.313781716551, 18.513470169461], [121.31103513452, 18.513470169461], [121.31103513452, 18.510865705891]]]]}, "properties": {"taskId": 4065, "taskX": 109704, "taskY": 72396, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.085815407998, 18.605902906924], [121.087188699013, 18.605902906924], [121.087188699013, 18.6072044186551], [121.085815407998, 18.6072044186551], [121.085815407998, 18.605902906924]]]]}, "properties": {"taskId": 4070, "taskX": 219244, "taskY": 144865, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.087188699013, 18.605902906924], [121.088561990029, 18.605902906924], [121.088561990029, 18.6072044186551], [121.087188699013, 18.6072044186551], [121.087188699013, 18.605902906924]]]]}, "properties": {"taskId": 4072, "taskX": 219245, "taskY": 144865, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.681137063165, 17.8362962232647], [121.681823708672, 17.8362962232647], [121.681823708672, 17.8369498643321], [121.681137063165, 17.8369498643321], [121.681137063165, 17.8362962232647]]]]}, "properties": {"taskId": 4159, "taskX": 439355, "taskY": 288550, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 17.7382229333659], [121.750488259441, 17.7382229333659], [121.750488259441, 17.7486866486513], [121.739501931318, 17.7486866486513], [121.739501931318, 17.7382229333659]]]]}, "properties": {"taskId": 4080, "taskX": 27465, "taskY": 18025, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.365966775135, 17.8532901110035], [121.371459939197, 17.8532901110035], [121.371459939197, 17.8585186730187], [121.365966775135, 17.8585186730187], [121.365966775135, 17.8532901110035]]]]}, "properties": {"taskId": 3729, "taskX": 54862, "taskY": 36072, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.409912087627, 18.4587681168231], [121.42089841575, 18.4587681168231], [121.42089841575, 18.4691889012235], [121.409912087627, 18.4691889012235], [121.409912087627, 18.4587681168231]]]]}, "properties": {"taskId": 4439, "taskX": 27435, "taskY": 18094, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 17.8376035030001], [121.679077126642, 17.8376035030001], [121.679077126642, 17.8428325259552], [121.67358396258, 17.8428325259552], [121.67358396258, 17.8376035030001]]]]}, "properties": {"taskId": 4138, "taskX": 54918, "taskY": 36069, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.604919411811, 18.0623123014185], [121.607665993842, 18.0623123014185], [121.607665993842, 18.0649235121539], [121.604919411811, 18.0649235121539], [121.604919411811, 18.0623123014185]]]]}, "properties": {"taskId": 4087, "taskX": 109811, "taskY": 72224, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.374206521227, 17.8532901110035], [121.376953103258, 17.8532901110035], [121.376953103258, 17.8559044112242], [121.374206521227, 17.8559044112242], [121.374206521227, 17.8532901110035]]]]}, "properties": {"taskId": 4075, "taskX": 109727, "taskY": 72144, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 17.7068281209488], [121.464843728242, 17.7068281209488], [121.464843728242, 17.7277586067781], [121.442871071996, 17.7277586067781], [121.442871071996, 17.7068281209488]]]]}, "properties": {"taskId": 4092, "taskX": 13719, "taskY": 9011, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.6073750150926], [121.720275857103, 17.6073750150926], [121.720275857103, 17.6099929055511], [121.717529275072, 17.6099929055511], [121.717529275072, 17.6073750150926]]]]}, "properties": {"taskId": 4093, "taskX": 109852, "taskY": 72050, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 17.800996044581], [121.497802712612, 17.800996044581], [121.497802712612, 17.8114560854768], [121.486816384489, 17.8114560854768], [121.486816384489, 17.800996044581]]]]}, "properties": {"taskId": 4106, "taskX": 27442, "taskY": 18031, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 17.8336407817561], [121.679098584314, 17.8336407817561], [121.679098584314, 17.8336612083803], [121.679077126642, 17.8336612083803], [121.679077126642, 17.8336407817561]]]]}, "properties": {"taskId": 4197, "taskX": 14059264, "taskY": 9233470, "taskZoom": 24, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67916295733, 17.8335182219613], [121.679248788018, 17.8335182219613], [121.679248788018, 17.8335999285005], [121.67916295733, 17.8335999285005], [121.67916295733, 17.8335182219613]]]]}, "properties": {"taskId": 4191, "taskX": 3514817, "taskY": 2308366, "taskZoom": 22, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679098584314, 17.8336612083803], [121.679120041986, 17.8336612083803], [121.679120041986, 17.8336816350023], [121.679098584314, 17.8336816350023], [121.679098584314, 17.8336612083803]]]]}, "properties": {"taskId": 4200, "taskX": 14059265, "taskY": 9233471, "taskZoom": 24, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.786193825841, 17.5000088782172], [121.788940407872, 17.5000088782172], [121.788940407872, 17.5026283210481], [121.786193825841, 17.5026283210481], [121.786193825841, 17.5000088782172]]]]}, "properties": {"taskId": 4100, "taskX": 109877, "taskY": 72009, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.135009743747, 18.4483466997417], [122.140502907809, 18.4483466997417], [122.140502907809, 18.4535574873484], [122.135009743747, 18.4535574873484], [122.135009743747, 18.4483466997417]]]]}, "properties": {"taskId": 4081, "taskX": 55002, "taskY": 36186, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.140502907809, 18.4535574873484], [122.14599607187, 18.4535574873484], [122.14599607187, 18.4587681168231], [122.140502907809, 18.4587681168231], [122.140502907809, 18.4535574873484]]]]}, "properties": {"taskId": 4084, "taskX": 55003, "taskY": 36187, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.135009743747, 18.4535574873484], [122.140502907809, 18.4535574873484], [122.140502907809, 18.4587681168231], [122.135009743747, 18.4587681168231], [122.135009743747, 18.4535574873484]]]]}, "properties": {"taskId": 4082, "taskX": 55002, "taskY": 36187, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.140502907809, 18.4483466997417], [122.14599607187, 18.4483466997417], [122.14599607187, 18.4535574873484], [122.140502907809, 18.4535574873484], [122.140502907809, 18.4483466997417]]]]}, "properties": {"taskId": 4083, "taskX": 55003, "taskY": 36186, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.604919411811, 18.0649235121539], [121.607665993842, 18.0649235121539], [121.607665993842, 18.067534684074], [121.604919411811, 18.067534684074], [121.604919411811, 18.0649235121539]]]]}, "properties": {"taskId": 4088, "taskX": 109811, "taskY": 72225, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.60217282978, 18.0623123014185], [121.604919411811, 18.0623123014185], [121.604919411811, 18.0649235121539], [121.60217282978, 18.0649235121539], [121.60217282978, 18.0623123014185]]]]}, "properties": {"taskId": 4085, "taskX": 109810, "taskY": 72224, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679420449395, 17.8333548087704], [121.679763772149, 17.8333548087704], [121.679763772149, 17.8336816350023], [121.679420449395, 17.8336816350023], [121.679420449395, 17.8333548087704]]]]}, "properties": {"taskId": 4184, "taskX": 878705, "taskY": 577091, "taskZoom": 20, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 17.5811940234556], [121.596679665719, 17.5811940234556], [121.596679665719, 17.602139120297], [121.574707009473, 17.602139120297], [121.574707009473, 17.5811940234556]]]]}, "properties": {"taskId": 4116, "taskX": 13725, "taskY": 9005, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.8323743264764], [121.662597634457, 17.8323743264764], [121.662597634457, 17.8532901110035], [121.640624978211, 17.8532901110035], [121.640624978211, 17.8323743264764]]]]}, "properties": {"taskId": 4122, "taskX": 13728, "taskY": 9017, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 17.8323743264764], [121.67358396258, 17.8323743264764], [121.67358396258, 17.8428325259552], [121.662597634457, 17.8428325259552], [121.662597634457, 17.8323743264764]]]]}, "properties": {"taskId": 4125, "taskX": 27458, "taskY": 18034, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.68251035418, 17.8369498643321], [121.683196999688, 17.8369498643321], [121.683196999688, 17.8376035030001], [121.68251035418, 17.8376035030001], [121.68251035418, 17.8369498643321]]]]}, "properties": {"taskId": 4172, "taskX": 439357, "taskY": 288551, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.683196999688, 17.8349889339319], [121.684570290703, 17.8349889339319], [121.684570290703, 17.8362962232647], [121.683196999688, 17.8362962232647], [121.683196999688, 17.8349889339319]]]]}, "properties": {"taskId": 4167, "taskX": 219679, "taskY": 144274, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.278076150151, 18.5212833222942], [121.283569314212, 18.5212833222942], [121.283569314212, 18.526491892571], [121.278076150151, 18.526491892571], [121.278076150151, 18.5212833222942]]]]}, "properties": {"taskId": 3977, "taskX": 54846, "taskY": 36200, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 18.2815182321454], [121.497802712612, 18.2815182321454], [121.497802712612, 18.2919497303851], [121.486816384489, 18.2919497303851], [121.486816384489, 18.2815182321454]]]]}, "properties": {"taskId": 4110, "taskX": 27442, "taskY": 18077, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.681823708672, 17.8349889339319], [121.683196999688, 17.8349889339319], [121.683196999688, 17.8362962232647], [121.681823708672, 17.8362962232647], [121.681823708672, 17.8349889339319]]]]}, "properties": {"taskId": 4165, "taskX": 219678, "taskY": 144274, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.683196999688, 17.8362962232647], [121.684570290703, 17.8362962232647], [121.684570290703, 17.8376035030001], [121.683196999688, 17.8376035030001], [121.683196999688, 17.8362962232647]]]]}, "properties": {"taskId": 4168, "taskX": 219679, "taskY": 144275, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.338500954828, 18.4743990560726], [121.343994118889, 18.4743990560726], [121.343994118889, 18.4796090526366], [121.338500954828, 18.4796090526366], [121.338500954828, 18.4743990560726]]]]}, "properties": {"taskId": 4016, "taskX": 54857, "taskY": 36191, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 17.7905353905046], [121.497802712612, 17.7905353905046], [121.497802712612, 17.800996044581], [121.486816384489, 17.800996044581], [121.486816384489, 17.7905353905046]]]]}, "properties": {"taskId": 4105, "taskX": 27442, "taskY": 18030, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 17.800996044581], [121.508789040735, 17.800996044581], [121.508789040735, 17.8114560854768], [121.497802712612, 17.8114560854768], [121.497802712612, 17.800996044581]]]]}, "properties": {"taskId": 4108, "taskX": 27443, "taskY": 18031, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 17.8480613953027], [121.684570290703, 17.8480613953027], [121.684570290703, 17.8532901110035], [121.679077126642, 17.8532901110035], [121.679077126642, 17.8480613953027]]]]}, "properties": {"taskId": 4132, "taskX": 54919, "taskY": 36071, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 17.8336612083803], [121.679098584314, 17.8336612083803], [121.679098584314, 17.8336816350023], [121.679077126642, 17.8336816350023], [121.679077126642, 17.8336612083803]]]]}, "properties": {"taskId": 4198, "taskX": 14059264, "taskY": 9233471, "taskZoom": 24, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.68251035418, 17.8362962232647], [121.683196999688, 17.8362962232647], [121.683196999688, 17.8369498643321], [121.68251035418, 17.8369498643321], [121.68251035418, 17.8362962232647]]]]}, "properties": {"taskId": 4171, "taskX": 439357, "taskY": 288550, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679763772149, 17.8330279819388], [121.680450417657, 17.8330279819388], [121.680450417657, 17.8336816350023], [121.679763772149, 17.8336816350023], [121.679763772149, 17.8330279819388]]]]}, "properties": {"taskId": 4180, "taskX": 439353, "taskY": 288545, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 17.8335182219613], [121.67916295733, 17.8335182219613], [121.67916295733, 17.8335999285005], [121.679077126642, 17.8335999285005], [121.679077126642, 17.8335182219613]]]]}, "properties": {"taskId": 4189, "taskX": 3514816, "taskY": 2308366, "taskZoom": 22, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67916295733, 17.8335999285005], [121.679248788018, 17.8335999285005], [121.679248788018, 17.8336816350023], [121.67916295733, 17.8336816350023], [121.67916295733, 17.8335999285005]]]]}, "properties": {"taskId": 4192, "taskX": 3514817, "taskY": 2308367, "taskZoom": 22, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 17.6754278152737], [121.74499509538, 17.6754278152737], [121.74499509538, 17.6806615806697], [121.739501931318, 17.6806615806697], [121.739501931318, 17.6754278152737]]]]}, "properties": {"taskId": 4269, "taskX": 54930, "taskY": 36038, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.593933083688, 18.0832009002027], [121.596679665719, 18.0832009002027], [121.596679665719, 18.0858118002802], [121.593933083688, 18.0858118002802], [121.593933083688, 18.0832009002027]]]]}, "properties": {"taskId": 4103, "taskX": 109807, "taskY": 72232, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 17.8428325259552], [121.684570290703, 17.8428325259552], [121.684570290703, 17.8480613953027], [121.679077126642, 17.8480613953027], [121.679077126642, 17.8428325259552]]]]}, "properties": {"taskId": 4131, "taskX": 54919, "taskY": 36070, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.668090798519, 17.8480613953027], [121.67358396258, 17.8480613953027], [121.67358396258, 17.8532901110035], [121.668090798519, 17.8532901110035], [121.668090798519, 17.8480613953027]]]]}, "properties": {"taskId": 4136, "taskX": 54917, "taskY": 36071, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.681823708672, 17.8362962232647], [121.68251035418, 17.8362962232647], [121.68251035418, 17.8369498643321], [121.681823708672, 17.8369498643321], [121.681823708672, 17.8362962232647]]]]}, "properties": {"taskId": 4169, "taskX": 439356, "taskY": 288550, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78344724381, 17.5000088782172], [121.786193825841, 17.5000088782172], [121.786193825841, 17.5026283210481], [121.78344724381, 17.5026283210481], [121.78344724381, 17.5000088782172]]]]}, "properties": {"taskId": 4098, "taskX": 109876, "taskY": 72009, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.398925759504, 18.4587681168231], [121.409912087627, 18.4587681168231], [121.409912087627, 18.4691889012235], [121.398925759504, 18.4691889012235], [121.398925759504, 18.4587681168231]]]]}, "properties": {"taskId": 4437, "taskX": 27434, "taskY": 18094, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.786193825841, 17.497389397627], [121.788940407872, 17.497389397627], [121.788940407872, 17.5000088782172], [121.786193825841, 17.5000088782172], [121.786193825841, 17.497389397627]]]]}, "properties": {"taskId": 4099, "taskX": 109877, "taskY": 72008, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.409912087627, 18.4691889012235], [121.415405251689, 18.4691889012235], [121.415405251689, 18.4743990560726], [121.409912087627, 18.4743990560726], [121.409912087627, 18.4691889012235]]]]}, "properties": {"taskId": 4441, "taskX": 54870, "taskY": 36190, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.699676491872, 17.558937199542], [121.70036313738, 17.558937199542], [121.70036313738, 17.5595918510784], [121.699676491872, 17.5595918510784], [121.699676491872, 17.558937199542]]]]}, "properties": {"taskId": 4233, "taskX": 439382, "taskY": 288126, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.591186501657, 18.0832009002027], [121.593933083688, 18.0832009002027], [121.593933083688, 18.0858118002802], [121.591186501657, 18.0858118002802], [121.591186501657, 18.0832009002027]]]]}, "properties": {"taskId": 4101, "taskX": 109806, "taskY": 72232, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.593933083688, 18.0858118002802], [121.596679665719, 18.0858118002802], [121.596679665719, 18.0884226615038], [121.593933083688, 18.0884226615038], [121.593933083688, 18.0858118002802]]]]}, "properties": {"taskId": 4104, "taskX": 109807, "taskY": 72233, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 17.8480613953027], [121.679077126642, 17.8480613953027], [121.679077126642, 17.8532901110035], [121.67358396258, 17.8532901110035], [121.67358396258, 17.8480613953027]]]]}, "properties": {"taskId": 4130, "taskX": 54918, "taskY": 36071, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.70036313738, 17.5595918510784], [121.701049782888, 17.5595918510784], [121.701049782888, 17.5602465002479], [121.70036313738, 17.5602465002479], [121.70036313738, 17.5595918510784]]]]}, "properties": {"taskId": 4236, "taskX": 439383, "taskY": 288127, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.681823708672, 17.8369498643321], [121.68251035418, 17.8369498643321], [121.68251035418, 17.8376035030001], [121.681823708672, 17.8376035030001], [121.681823708672, 17.8369498643321]]]]}, "properties": {"taskId": 4170, "taskX": 439356, "taskY": 288551, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.409912087627, 18.4743990560726], [121.415405251689, 18.4743990560726], [121.415405251689, 18.4796090526366], [121.409912087627, 18.4796090526366], [121.409912087627, 18.4743990560726]]]]}, "properties": {"taskId": 4442, "taskX": 54870, "taskY": 36191, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.415405251689, 18.4743990560726], [121.42089841575, 18.4743990560726], [121.42089841575, 18.4796090526366], [121.415405251689, 18.4796090526366], [121.415405251689, 18.4743990560726]]]]}, "properties": {"taskId": 4444, "taskX": 54871, "taskY": 36191, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.313781716551, 18.510865705891], [121.316528298582, 18.510865705891], [121.316528298582, 18.513470169461], [121.313781716551, 18.513470169461], [121.313781716551, 18.510865705891]]]]}, "properties": {"taskId": 4067, "taskX": 109705, "taskY": 72396, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.41815183372, 18.4717939984313], [121.42089841575, 18.4717939984313], [121.42089841575, 18.4743990560726], [121.41815183372, 18.4743990560726], [121.41815183372, 18.4717939984313]]]]}, "properties": {"taskId": 4448, "taskX": 109743, "taskY": 72381, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.4275019687616], [121.387939431381, 18.4275019687616], [121.387939431381, 18.4379246502857], [121.376953103258, 18.4379246502857], [121.376953103258, 18.4275019687616]]]]}, "properties": {"taskId": 4450, "taskX": 27432, "taskY": 18091, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.41815183372, 18.4691889012235], [121.42089841575, 18.4691889012235], [121.42089841575, 18.4717939984313], [121.41815183372, 18.4717939984313], [121.41815183372, 18.4691889012235]]]]}, "properties": {"taskId": 4447, "taskX": 109743, "taskY": 72380, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.387939431381, 18.4170786554759], [121.398925759504, 18.4170786554759], [121.398925759504, 18.4275019687616], [121.387939431381, 18.4275019687616], [121.387939431381, 18.4170786554759]]]]}, "properties": {"taskId": 4451, "taskX": 27433, "taskY": 18090, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.4170786554759], [121.387939431381, 18.4170786554759], [121.387939431381, 18.4275019687616], [121.376953103258, 18.4275019687616], [121.376953103258, 18.4170786554759]]]]}, "properties": {"taskId": 4449, "taskX": 27432, "taskY": 18090, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.681137063165, 17.8369498643321], [121.681823708672, 17.8369498643321], [121.681823708672, 17.8376035030001], [121.681137063165, 17.8376035030001], [121.681137063165, 17.8369498643321]]]]}, "properties": {"taskId": 4160, "taskX": 439355, "taskY": 288551, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.681823708672, 17.8376035030001], [121.684570290703, 17.8376035030001], [121.684570290703, 17.8402180336762], [121.681823708672, 17.8402180336762], [121.681823708672, 17.8376035030001]]]]}, "properties": {"taskId": 4143, "taskX": 109839, "taskY": 72138, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 17.8369498643321], [121.679763772149, 17.8369498643321], [121.679763772149, 17.8376035030001], [121.679077126642, 17.8376035030001], [121.679077126642, 17.8369498643321]]]]}, "properties": {"taskId": 4154, "taskX": 439352, "taskY": 288551, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.96472165784, 20.4424552567539], [121.967468239871, 20.4424552567539], [121.967468239871, 20.4450288469673], [121.96472165784, 20.4450288469673], [121.96472165784, 20.4424552567539]]]]}, "properties": {"taskId": 4457, "taskX": 109942, "taskY": 73142, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.398925759504, 18.3753790908532], [121.409912087627, 18.3753790908532], [121.409912087627, 18.3858049281171], [121.398925759504, 18.3858049281171], [121.398925759504, 18.3753790908532]]]]}, "properties": {"taskId": 4465, "taskX": 27434, "taskY": 18086, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 18.271086106447], [121.497802712612, 18.271086106447], [121.497802712612, 18.2815182321454], [121.486816384489, 18.2815182321454], [121.486816384489, 18.271086106447]]]]}, "properties": {"taskId": 4109, "taskX": 27442, "taskY": 18076, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 18.2815182321454], [121.508789040735, 18.2815182321454], [121.508789040735, 18.2919497303851], [121.497802712612, 18.2919497303851], [121.497802712612, 18.2815182321454]]]]}, "properties": {"taskId": 4112, "taskX": 27443, "taskY": 18077, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.591186501657, 18.0858118002802], [121.593933083688, 18.0858118002802], [121.593933083688, 18.0884226615038], [121.591186501657, 18.0884226615038], [121.591186501657, 18.0858118002802]]]]}, "properties": {"taskId": 4102, "taskX": 109806, "taskY": 72233, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 18.3962301348468], [121.453857400119, 18.3962301348468], [121.453857400119, 18.4066547107354], [121.442871071996, 18.4066547107354], [121.442871071996, 18.3962301348468]]]]}, "properties": {"taskId": 4473, "taskX": 27438, "taskY": 18088, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.453857400119, 18.3962301348468], [121.464843728242, 18.3962301348468], [121.464843728242, 18.4066547107354], [121.453857400119, 18.4066547107354], [121.453857400119, 18.3962301348468]]]]}, "properties": {"taskId": 4475, "taskX": 27439, "taskY": 18088, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.6440220248121], [121.761474587564, 17.6440220248121], [121.761474587564, 17.6544912305301], [121.750488259441, 17.6544912305301], [121.750488259441, 17.6440220248121]]]]}, "properties": {"taskId": 4201, "taskX": 27466, "taskY": 18016, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.699676491872, 17.5576278893685], [121.70036313738, 17.5576278893685], [121.70036313738, 17.5582825456386], [121.699676491872, 17.5582825456386], [121.699676491872, 17.5576278893685]]]]}, "properties": {"taskId": 4229, "taskX": 439382, "taskY": 288124, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.70036313738, 17.5582825456386], [121.701049782888, 17.5582825456386], [121.701049782888, 17.558937199542], [121.70036313738, 17.558937199542], [121.70036313738, 17.5582825456386]]]]}, "properties": {"taskId": 4232, "taskX": 439383, "taskY": 288125, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.5550092406214], [121.698303200857, 17.5550092406214], [121.698303200857, 17.5576278893685], [121.695556618826, 17.5576278893685], [121.695556618826, 17.5550092406214]]]]}, "properties": {"taskId": 4209, "taskX": 109844, "taskY": 72030, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.234130837659, 18.5525323631785], [121.23962400172, 18.5525323631785], [121.23962400172, 18.5577399808773], [121.234130837659, 18.5577399808773], [121.234130837659, 18.5525323631785]]]]}, "properties": {"taskId": 4369, "taskX": 54838, "taskY": 36206, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 18.4066547107354], [121.453857400119, 18.4066547107354], [121.453857400119, 18.4170786554759], [121.442871071996, 18.4170786554759], [121.442871071996, 18.4066547107354]]]]}, "properties": {"taskId": 4474, "taskX": 27438, "taskY": 18089, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.453857400119, 18.4066547107354], [121.464843728242, 18.4066547107354], [121.464843728242, 18.4170786554759], [121.453857400119, 18.4170786554759], [121.453857400119, 18.4066547107354]]]]}, "properties": {"taskId": 4476, "taskX": 27439, "taskY": 18089, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.6544912305301], [121.761474587564, 17.6544912305301], [121.761474587564, 17.6649598274553], [121.750488259441, 17.6649598274553], [121.750488259441, 17.6544912305301]]]]}, "properties": {"taskId": 4202, "taskX": 27466, "taskY": 18017, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.699676491872, 17.5595918510784], [121.70036313738, 17.5595918510784], [121.70036313738, 17.5602465002479], [121.699676491872, 17.5602465002479], [121.699676491872, 17.5595918510784]]]]}, "properties": {"taskId": 4234, "taskX": 439382, "taskY": 288127, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 17.5811940234556], [121.574707009473, 17.5811940234556], [121.574707009473, 17.5916668753295], [121.56372068135, 17.5916668753295], [121.56372068135, 17.5811940234556]]]]}, "properties": {"taskId": 4119, "taskX": 27449, "taskY": 18010, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.668090798519, 17.8428325259552], [121.67358396258, 17.8428325259552], [121.67358396258, 17.8480613953027], [121.668090798519, 17.8480613953027], [121.668090798519, 17.8428325259552]]]]}, "properties": {"taskId": 4135, "taskX": 54917, "taskY": 36070, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.670837380549, 18.2867340597168], [121.67358396258, 18.2867340597168], [121.67358396258, 18.2893419146663], [121.670837380549, 18.2893419146663], [121.670837380549, 18.2867340597168]]]]}, "properties": {"taskId": 4243, "taskX": 109835, "taskY": 72310, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.680450417657, 17.8362962232647], [121.681137063165, 17.8362962232647], [121.681137063165, 17.8369498643321], [121.680450417657, 17.8369498643321], [121.680450417657, 17.8362962232647]]]]}, "properties": {"taskId": 4157, "taskX": 439354, "taskY": 288550, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.5916668753295], [121.56372068135, 17.5916668753295], [121.56372068135, 17.602139120297], [121.552734353227, 17.602139120297], [121.552734353227, 17.5916668753295]]]]}, "properties": {"taskId": 4118, "taskX": 27448, "taskY": 18011, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 17.8480613953027], [121.668090798519, 17.8480613953027], [121.668090798519, 17.8532901110035], [121.662597634457, 17.8532901110035], [121.662597634457, 17.8480613953027]]]]}, "properties": {"taskId": 4134, "taskX": 54916, "taskY": 36071, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.668090798519, 18.2893419146663], [121.670837380549, 18.2893419146663], [121.670837380549, 18.2919497303851], [121.668090798519, 18.2919497303851], [121.668090798519, 18.2893419146663]]]]}, "properties": {"taskId": 4242, "taskX": 109834, "taskY": 72311, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.680450417657, 17.8369498643321], [121.681137063165, 17.8369498643321], [121.681137063165, 17.8376035030001], [121.680450417657, 17.8376035030001], [121.680450417657, 17.8369498643321]]]]}, "properties": {"taskId": 4158, "taskX": 439354, "taskY": 288551, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 17.5916668753295], [121.574707009473, 17.5916668753295], [121.574707009473, 17.602139120297], [121.56372068135, 17.602139120297], [121.56372068135, 17.5916668753295]]]]}, "properties": {"taskId": 4120, "taskX": 27449, "taskY": 18011, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 17.8951143006479], [121.398925759504, 17.8951143006479], [121.398925759504, 17.9160227007731], [121.376953103258, 17.9160227007731], [121.376953103258, 17.8951143006479]]]]}, "properties": {"taskId": 4161, "taskX": 13716, "taskY": 9020, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.398925759504, 17.9160227007731], [121.42089841575, 17.9160227007731], [121.42089841575, 17.9369286344414], [121.398925759504, 17.9369286344414], [121.398925759504, 17.9160227007731]]]]}, "properties": {"taskId": 4164, "taskX": 13717, "taskY": 9021, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.6440220248121], [121.772460915687, 17.6440220248121], [121.772460915687, 17.6544912305301], [121.761474587564, 17.6544912305301], [121.761474587564, 17.6440220248121]]]]}, "properties": {"taskId": 4203, "taskX": 27467, "taskY": 18016, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.5576278893685], [121.698303200857, 17.5576278893685], [121.698303200857, 17.5602465002479], [121.695556618826, 17.5602465002479], [121.695556618826, 17.5576278893685]]]]}, "properties": {"taskId": 4210, "taskX": 109844, "taskY": 72031, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.699676491872, 17.5582825456386], [121.70036313738, 17.5582825456386], [121.70036313738, 17.558937199542], [121.699676491872, 17.558937199542], [121.699676491872, 17.5582825456386]]]]}, "properties": {"taskId": 4230, "taskX": 439382, "taskY": 288125, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679420449395, 17.8330279819388], [121.679763772149, 17.8330279819388], [121.679763772149, 17.8333548087704], [121.679420449395, 17.8333548087704], [121.679420449395, 17.8330279819388]]]]}, "properties": {"taskId": 4183, "taskX": 878705, "taskY": 577090, "taskZoom": 20, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 17.8428325259552], [121.679077126642, 17.8428325259552], [121.679077126642, 17.8480613953027], [121.67358396258, 17.8480613953027], [121.67358396258, 17.8428325259552]]]]}, "properties": {"taskId": 4129, "taskX": 54918, "taskY": 36070, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.680450417657, 17.8349889339319], [121.681823708672, 17.8349889339319], [121.681823708672, 17.8362962232647], [121.680450417657, 17.8362962232647], [121.680450417657, 17.8349889339319]]]]}, "properties": {"taskId": 4151, "taskX": 219677, "taskY": 144274, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679763772149, 17.8323743264764], [121.680450417657, 17.8323743264764], [121.680450417657, 17.8330279819388], [121.679763772149, 17.8330279819388], [121.679763772149, 17.8323743264764]]]]}, "properties": {"taskId": 4179, "taskX": 439353, "taskY": 288544, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679098584314, 17.8336407817561], [121.679120041986, 17.8336407817561], [121.679120041986, 17.8336612083803], [121.679098584314, 17.8336612083803], [121.679098584314, 17.8336407817561]]]]}, "properties": {"taskId": 4199, "taskX": 14059265, "taskY": 9233470, "taskZoom": 24, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 17.8402180336762], [121.681823708672, 17.8402180336762], [121.681823708672, 17.8428325259552], [121.679077126642, 17.8428325259552], [121.679077126642, 17.8402180336762]]]]}, "properties": {"taskId": 4142, "taskX": 109838, "taskY": 72139, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.5497718295439], [121.706542946949, 17.5497718295439], [121.706542946949, 17.5550092406214], [121.701049782888, 17.5550092406214], [121.701049782888, 17.5497718295439]]]]}, "properties": {"taskId": 4207, "taskX": 54923, "taskY": 36014, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679763772149, 17.8362962232647], [121.680450417657, 17.8362962232647], [121.680450417657, 17.8369498643321], [121.679763772149, 17.8369498643321], [121.679763772149, 17.8362962232647]]]]}, "properties": {"taskId": 4155, "taskX": 439353, "taskY": 288550, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 17.9160227007731], [121.398925759504, 17.9160227007731], [121.398925759504, 17.9369286344414], [121.376953103258, 17.9369286344414], [121.376953103258, 17.9160227007731]]]]}, "properties": {"taskId": 4162, "taskX": 13716, "taskY": 9021, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.398925759504, 17.8951143006479], [121.42089841575, 17.8951143006479], [121.42089841575, 17.9160227007731], [121.398925759504, 17.9160227007731], [121.398925759504, 17.8951143006479]]]]}, "properties": {"taskId": 4163, "taskX": 13717, "taskY": 9020, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679120041986, 17.8335999285005], [121.67916295733, 17.8335999285005], [121.67916295733, 17.8336407817561], [121.679120041986, 17.8336407817561], [121.679120041986, 17.8335999285005]]]]}, "properties": {"taskId": 4195, "taskX": 7029633, "taskY": 4616734, "taskZoom": 23, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.5681021056307], [121.753234841472, 17.5681021056307], [121.753234841472, 17.5707205649901], [121.750488259441, 17.5707205649901], [121.750488259441, 17.5681021056307]]]]}, "properties": {"taskId": 4238, "taskX": 109864, "taskY": 72035, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.753234841472, 17.5654836083839], [121.755981423503, 17.5654836083839], [121.755981423503, 17.5681021056307], [121.753234841472, 17.5681021056307], [121.753234841472, 17.5654836083839]]]]}, "properties": {"taskId": 4239, "taskX": 109865, "taskY": 72034, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.668090798519, 18.2867340597168], [121.670837380549, 18.2867340597168], [121.670837380549, 18.2893419146663], [121.668090798519, 18.2893419146663], [121.668090798519, 18.2867340597168]]]]}, "properties": {"taskId": 4241, "taskX": 109834, "taskY": 72310, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 18.271086106447], [121.508789040735, 18.271086106447], [121.508789040735, 18.2815182321454], [121.497802712612, 18.2815182321454], [121.497802712612, 18.271086106447]]]]}, "properties": {"taskId": 4111, "taskX": 27443, "taskY": 18076, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.374206521227, 17.8559044112242], [121.376953103258, 17.8559044112242], [121.376953103258, 17.8585186730187], [121.374206521227, 17.8585186730187], [121.374206521227, 17.8559044112242]]]]}, "properties": {"taskId": 4076, "taskX": 109727, "taskY": 72145, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 17.8532901110035], [121.640624978211, 17.8532901110035], [121.640624978211, 17.8637470813091], [121.629638650088, 17.8637470813091], [121.629638650088, 17.8532901110035]]]]}, "properties": {"taskId": 4479, "taskX": 27455, "taskY": 18036, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.316528298582, 18.505656659841], [121.319274880612, 18.505656659841], [121.319274880612, 18.5082612026827], [121.316528298582, 18.5082612026827], [121.316528298582, 18.505656659841]]]]}, "properties": {"taskId": 4057, "taskX": 109706, "taskY": 72394, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.116027810336, 18.620218988415], [121.118774392367, 18.620218988415], [121.118774392367, 18.6228217828704], [121.116027810336, 18.6228217828704], [121.116027810336, 18.620218988415]]]]}, "properties": {"taskId": 4343, "taskX": 109633, "taskY": 72438, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 17.7696122440617], [121.552734353227, 17.7696122440617], [121.552734353227, 17.7905353905046], [121.530761696981, 17.7905353905046], [121.530761696981, 17.7696122440617]]]]}, "properties": {"taskId": 4295, "taskX": 13723, "taskY": 9014, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 18.3962301348468], [121.541748025104, 18.3962301348468], [121.541748025104, 18.4066547107354], [121.530761696981, 18.4066547107354], [121.530761696981, 18.3962301348468]]]]}, "properties": {"taskId": 4297, "taskX": 27446, "taskY": 18088, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.343994118889, 18.4275019687616], [121.354980447012, 18.4275019687616], [121.354980447012, 18.4379246502857], [121.343994118889, 18.4379246502857], [121.343994118889, 18.4275019687616]]]]}, "properties": {"taskId": 4304, "taskX": 27429, "taskY": 18091, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.343994118889, 18.4170786554759], [121.354980447012, 18.4170786554759], [121.354980447012, 18.4275019687616], [121.343994118889, 18.4275019687616], [121.343994118889, 18.4170786554759]]]]}, "properties": {"taskId": 4303, "taskX": 27429, "taskY": 18090, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.6073750150926], [121.690063454765, 17.6073750150926], [121.690063454765, 17.6126107580436], [121.684570290703, 17.6126107580436], [121.684570290703, 17.6073750150926]]]]}, "properties": {"taskId": 4310, "taskX": 54920, "taskY": 36025, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.6963619623342], [121.739501931318, 17.6963619623342], [121.739501931318, 17.7068281209488], [121.728515603195, 17.7068281209488], [121.728515603195, 17.6963619623342]]]]}, "properties": {"taskId": 4254, "taskX": 27464, "taskY": 18021, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.087188699013, 18.6046013852398], [121.088561990029, 18.6046013852398], [121.088561990029, 18.605902906924], [121.087188699013, 18.605902906924], [121.087188699013, 18.6046013852398]]]]}, "properties": {"taskId": 4071, "taskX": 219245, "taskY": 144864, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 17.6649598274553], [121.750488259441, 17.6649598274553], [121.750488259441, 17.6754278152737], [121.739501931318, 17.6754278152737], [121.739501931318, 17.6649598274553]]]]}, "properties": {"taskId": 4259, "taskX": 27465, "taskY": 18018, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.6649598274553], [121.739501931318, 17.6649598274553], [121.739501931318, 17.6754278152737], [121.728515603195, 17.6754278152737], [121.728515603195, 17.6649598274553]]]]}, "properties": {"taskId": 4257, "taskX": 27464, "taskY": 18018, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.278076150151, 18.5317003041803], [121.283569314212, 18.5317003041803], [121.283569314212, 18.5369085570839], [121.278076150151, 18.5369085570839], [121.278076150151, 18.5317003041803]]]]}, "properties": {"taskId": 3985, "taskX": 54846, "taskY": 36202, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.23962400172, 18.5577399808773], [121.245117165782, 18.5577399808773], [121.245117165782, 18.5629474396796], [121.23962400172, 18.5629474396796], [121.23962400172, 18.5577399808773]]]]}, "properties": {"taskId": 4372, "taskX": 54839, "taskY": 36207, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.118774392367, 18.6150132799934], [121.124267556428, 18.6150132799934], [121.124267556428, 18.620218988415], [121.118774392367, 18.620218988415], [121.118774392367, 18.6150132799934]]]]}, "properties": {"taskId": 4323, "taskX": 54817, "taskY": 36218, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.409912087627, 18.3545255259514], [121.42089841575, 18.3545255259514], [121.42089841575, 18.3649526233622], [121.409912087627, 18.3649526233622], [121.409912087627, 18.3545255259514]]]]}, "properties": {"taskId": 4495, "taskX": 27435, "taskY": 18084, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.398925759504, 18.4066547107354], [121.409912087627, 18.4066547107354], [121.409912087627, 18.4170786554759], [121.398925759504, 18.4170786554759], [121.398925759504, 18.4066547107354]]]]}, "properties": {"taskId": 4502, "taskX": 27434, "taskY": 18089, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.264343239997, 18.5356065087388], [121.265716531013, 18.5356065087388], [121.265716531013, 18.5369085570839], [121.264343239997, 18.5369085570839], [121.264343239997, 18.5356065087388]]]]}, "properties": {"taskId": 4558, "taskX": 219374, "taskY": 144811, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 17.7696122440617], [121.508789040735, 17.7696122440617], [121.508789040735, 17.7905353905046], [121.486816384489, 17.7905353905046], [121.486816384489, 17.7696122440617]]]]}, "properties": {"taskId": 3983, "taskX": 13721, "taskY": 9014, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 17.8742034365596], [122.014160134394, 17.8742034365596], [122.014160134394, 17.8951143006479], [121.992187478148, 17.8951143006479], [121.992187478148, 17.8742034365596]]]]}, "properties": {"taskId": 4266, "taskX": 13744, "taskY": 9019, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.74499509538, 17.6754278152737], [121.750488259441, 17.6754278152737], [121.750488259441, 17.6806615806697], [121.74499509538, 17.6806615806697], [121.74499509538, 17.6754278152737]]]]}, "properties": {"taskId": 4271, "taskX": 54931, "taskY": 36038, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.014160134394, 17.8742034365596], [122.03613279064, 17.8742034365596], [122.03613279064, 17.8951143006479], [122.014160134394, 17.8951143006479], [122.014160134394, 17.8742034365596]]]]}, "properties": {"taskId": 4268, "taskX": 13745, "taskY": 9019, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.6492567037506], [121.712036111011, 17.6492567037506], [121.712036111011, 17.6544912305301], [121.706542946949, 17.6544912305301], [121.706542946949, 17.6492567037506]]]]}, "properties": {"taskId": 4274, "taskX": 54924, "taskY": 36033, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.6440220248121], [121.712036111011, 17.6440220248121], [121.712036111011, 17.6492567037506], [121.706542946949, 17.6492567037506], [121.706542946949, 17.6440220248121]]]]}, "properties": {"taskId": 4273, "taskX": 54924, "taskY": 36032, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.721649148118, 17.6335522106155], [121.723022439134, 17.6335522106155], [121.723022439134, 17.6348609706555], [121.721649148118, 17.6348609706555], [121.721649148118, 17.6335522106155]]]]}, "properties": {"taskId": 4283, "taskX": 219707, "taskY": 144120, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.721649148118, 17.6348609706555], [121.723022439134, 17.6348609706555], [121.723022439134, 17.6361697211924], [121.721649148118, 17.6361697211924], [121.721649148118, 17.6348609706555]]]]}, "properties": {"taskId": 4284, "taskX": 219707, "taskY": 144121, "taskZoom": 18, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.7015951179171], [121.698303200857, 17.7015951179171], [121.698303200857, 17.7042116385043], [121.695556618826, 17.7042116385043], [121.695556618826, 17.7015951179171]]]]}, "properties": {"taskId": 4289, "taskX": 109844, "taskY": 72086, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.118774392367, 18.620218988415], [121.121520974398, 18.620218988415], [121.121520974398, 18.6228217828704], [121.118774392367, 18.6228217828704], [121.118774392367, 18.620218988415]]]]}, "properties": {"taskId": 4345, "taskX": 109634, "taskY": 72438, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.234130837659, 18.5577399808773], [121.23962400172, 18.5577399808773], [121.23962400172, 18.5629474396796], [121.234130837659, 18.5629474396796], [121.234130837659, 18.5577399808773]]]]}, "properties": {"taskId": 4370, "taskX": 54838, "taskY": 36207, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.083068825967, 18.605902906924], [121.084442116982, 18.605902906924], [121.084442116982, 18.6072044186551], [121.083068825967, 18.6072044186551], [121.083068825967, 18.605902906924]]]]}, "properties": {"taskId": 4314, "taskX": 219242, "taskY": 144865, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.6963619623342], [121.706542946949, 17.6963619623342], [121.706542946949, 17.7015951179171], [121.701049782888, 17.7015951179171], [121.701049782888, 17.6963619623342]]]]}, "properties": {"taskId": 4287, "taskX": 54923, "taskY": 36042, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.5392965531931], [121.81640622818, 17.5392965531931], [121.81640622818, 17.5602465002479], [121.794433571933, 17.5602465002479], [121.794433571933, 17.5392965531931]]]]}, "properties": {"taskId": 4384, "taskX": 13735, "taskY": 9003, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.7042116385043], [121.698303200857, 17.7042116385043], [121.698303200857, 17.7068281209488], [121.695556618826, 17.7068281209488], [121.695556618826, 17.7042116385043]]]]}, "properties": {"taskId": 4290, "taskX": 109844, "taskY": 72087, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698303200857, 17.7042116385043], [121.701049782888, 17.7042116385043], [121.701049782888, 17.7068281209488], [121.698303200857, 17.7068281209488], [121.698303200857, 17.7042116385043]]]]}, "properties": {"taskId": 4292, "taskX": 109845, "taskY": 72087, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.113281228305, 18.6228217828704], [121.116027810336, 18.6228217828704], [121.116027810336, 18.6254245374825], [121.113281228305, 18.6254245374825], [121.113281228305, 18.6228217828704]]]]}, "properties": {"taskId": 4342, "taskX": 109632, "taskY": 72439, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.256103493905, 18.5473245866212], [121.261596657966, 18.5473245866212], [121.261596657966, 18.5525323631785], [121.256103493905, 18.5525323631785], [121.256103493905, 18.5473245866212]]]]}, "properties": {"taskId": 4358, "taskX": 54842, "taskY": 36205, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.085815407998, 18.6046013852398], [121.087188699013, 18.6046013852398], [121.087188699013, 18.605902906924], [121.085815407998, 18.605902906924], [121.085815407998, 18.6046013852398]]]]}, "properties": {"taskId": 4069, "taskX": 219244, "taskY": 144864, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 18.4587681168231], [121.338500954828, 18.4587681168231], [121.338500954828, 18.4639785881275], [121.333007790766, 18.4639785881275], [121.333007790766, 18.4587681168231]]]]}, "properties": {"taskId": 4325, "taskX": 54856, "taskY": 36188, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 18.5577399808773], [121.250610329843, 18.5577399808773], [121.250610329843, 18.5629474396796], [121.245117165782, 18.5629474396796], [121.245117165782, 18.5577399808773]]]]}, "properties": {"taskId": 4366, "taskX": 54840, "taskY": 36207, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.116027810336, 18.6228217828704], [121.118774392367, 18.6228217828704], [121.118774392367, 18.6254245374825], [121.116027810336, 18.6254245374825], [121.116027810336, 18.6228217828704]]]]}, "properties": {"taskId": 4344, "taskX": 109633, "taskY": 72439, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 17.518344184812], [121.860351540672, 17.518344184812], [121.860351540672, 17.5392965531931], [121.838378884426, 17.5392965531931], [121.838378884426, 17.518344184812]]]]}, "properties": {"taskId": 4251, "taskX": 13737, "taskY": 9002, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.121520974398, 18.6228217828704], [121.124267556428, 18.6228217828704], [121.124267556428, 18.6254245374825], [121.121520974398, 18.6254245374825], [121.121520974398, 18.6228217828704]]]]}, "properties": {"taskId": 4348, "taskX": 109635, "taskY": 72439, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 17.8335999285005], [121.679120041986, 17.8335999285005], [121.679120041986, 17.8336407817561], [121.679077126642, 17.8336407817561], [121.679077126642, 17.8335999285005]]]]}, "properties": {"taskId": 4193, "taskX": 7029632, "taskY": 4616734, "taskZoom": 23, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 17.8637470813091], [121.640624978211, 17.8637470813091], [121.640624978211, 17.8742034365596], [121.629638650088, 17.8742034365596], [121.629638650088, 17.8637470813091]]]]}, "properties": {"taskId": 4480, "taskX": 27455, "taskY": 18037, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.338500954828, 18.4587681168231], [121.341247536858, 18.4587681168231], [121.341247536858, 18.461373372249], [121.338500954828, 18.461373372249], [121.338500954828, 18.4587681168231]]]]}, "properties": {"taskId": 4329, "taskX": 109714, "taskY": 72376, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.731262185226, 17.5707205649901], [121.734008767257, 17.5707205649901], [121.734008767257, 17.5733389864572], [121.731262185226, 17.5733389864572], [121.731262185226, 17.5707205649901]]]]}, "properties": {"taskId": 4247, "taskX": 109857, "taskY": 72036, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.272582986089, 18.5369085570839], [121.278076150151, 18.5369085570839], [121.278076150151, 18.5421166512436], [121.272582986089, 18.5421166512436], [121.272582986089, 18.5369085570839]]]]}, "properties": {"taskId": 4352, "taskX": 54845, "taskY": 36203, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.250610329843, 18.5421166512436], [121.256103493905, 18.5421166512436], [121.256103493905, 18.5473245866212], [121.250610329843, 18.5473245866212], [121.250610329843, 18.5421166512436]]]]}, "properties": {"taskId": 4363, "taskX": 54841, "taskY": 36204, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 17.5392965531931], [121.860351540672, 17.5392965531931], [121.860351540672, 17.5602465002479], [121.838378884426, 17.5602465002479], [121.838378884426, 17.5392965531931]]]]}, "properties": {"taskId": 4252, "taskX": 13737, "taskY": 9003, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.569213845411, 17.9787330924414], [121.574707009473, 17.9787330924414], [121.574707009473, 17.9839579543074], [121.569213845411, 17.9839579543074], [121.569213845411, 17.9787330924414]]]]}, "properties": {"taskId": 4395, "taskX": 54899, "taskY": 36096, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 18.1876065493462], [121.596679665719, 18.1876065493462], [121.596679665719, 18.1980436836125], [121.585693337596, 18.1980436836125], [121.585693337596, 18.1876065493462]]]]}, "properties": {"taskId": 4403, "taskX": 27451, "taskY": 18068, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.0414212187671], [121.92626950941, 18.0414212187671], [121.92626950941, 18.0623123014185], [121.904296853164, 18.0623123014185], [121.904296853164, 18.0414212187671]]]]}, "properties": {"taskId": 4550, "taskX": 13740, "taskY": 9027, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.267089822028, 18.5369085570839], [121.272582986089, 18.5369085570839], [121.272582986089, 18.5421166512436], [121.267089822028, 18.5421166512436], [121.267089822028, 18.5369085570839]]]]}, "properties": {"taskId": 4350, "taskX": 54844, "taskY": 36203, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 18.5421166512436], [121.250610329843, 18.5421166512436], [121.250610329843, 18.5473245866212], [121.245117165782, 18.5473245866212], [121.245117165782, 18.5421166512436]]]]}, "properties": {"taskId": 4361, "taskX": 54840, "taskY": 36204, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.250610329843, 18.5473245866212], [121.256103493905, 18.5473245866212], [121.256103493905, 18.5525323631785], [121.250610329843, 18.5525323631785], [121.250610329843, 18.5473245866212]]]]}, "properties": {"taskId": 4364, "taskX": 54841, "taskY": 36205, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.083068825967, 18.6046013852398], [121.084442116982, 18.6046013852398], [121.084442116982, 18.605902906924], [121.083068825967, 18.605902906924], [121.083068825967, 18.6046013852398]]]]}, "properties": {"taskId": 4313, "taskX": 219242, "taskY": 144864, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.335754372797, 18.4665837644539], [121.338500954828, 18.4665837644539], [121.338500954828, 18.4691889012235], [121.335754372797, 18.4691889012235], [121.335754372797, 18.4665837644539]]]]}, "properties": {"taskId": 4340, "taskX": 109713, "taskY": 72379, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.9787330924414], [121.56372068135, 17.9787330924414], [121.56372068135, 17.9891826615141], [121.552734353227, 17.9891826615141], [121.552734353227, 17.9787330924414]]]]}, "properties": {"taskId": 4389, "taskX": 27448, "taskY": 18048, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.354980447012, 18.3962301348468], [121.365966775135, 18.3962301348468], [121.365966775135, 18.4066547107354], [121.354980447012, 18.4066547107354], [121.354980447012, 18.3962301348468]]]]}, "properties": {"taskId": 4305, "taskX": 27430, "taskY": 18088, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.354980447012, 18.4066547107354], [121.365966775135, 18.4066547107354], [121.365966775135, 18.4170786554759], [121.354980447012, 18.4170786554759], [121.354980447012, 18.4066547107354]]]]}, "properties": {"taskId": 4306, "taskX": 27430, "taskY": 18089, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.6414046282956], [121.720275857103, 17.6414046282956], [121.720275857103, 17.6440220248121], [121.717529275072, 17.6440220248121], [121.717529275072, 17.6414046282956]]]]}, "properties": {"taskId": 4410, "taskX": 109852, "taskY": 72063, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 17.7015951179171], [121.503295876673, 17.7015951179171], [121.503295876673, 17.7068281209488], [121.497802712612, 17.7068281209488], [121.497802712612, 17.7015951179171]]]]}, "properties": {"taskId": 4418, "taskX": 54886, "taskY": 36043, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 18.0205276547308], [121.640624978211, 18.0205276547308], [121.640624978211, 18.0309747467668], [121.629638650088, 18.0309747467668], [121.629638650088, 18.0205276547308]]]]}, "properties": {"taskId": 4431, "taskX": 27455, "taskY": 18052, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.250610329843, 18.5525323631785], [121.256103493905, 18.5525323631785], [121.256103493905, 18.5577399808773], [121.250610329843, 18.5577399808773], [121.250610329843, 18.5525323631785]]]]}, "properties": {"taskId": 4367, "taskX": 54841, "taskY": 36206, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 18.1876065493462], [121.585693337596, 18.1876065493462], [121.585693337596, 18.1980436836125], [121.574707009473, 18.1980436836125], [121.574707009473, 18.1876065493462]]]]}, "properties": {"taskId": 4401, "taskX": 27450, "taskY": 18068, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.335754372797, 18.4639785881275], [121.338500954828, 18.4639785881275], [121.338500954828, 18.4665837644539], [121.335754372797, 18.4665837644539], [121.335754372797, 18.4639785881275]]]]}, "properties": {"taskId": 4339, "taskX": 109713, "taskY": 72378, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.387939431381, 18.3910176103179], [121.393432595443, 18.3910176103179], [121.393432595443, 18.3962301348468], [121.387939431381, 18.3962301348468], [121.387939431381, 18.3910176103179]]]]}, "properties": {"taskId": 4526, "taskX": 54866, "taskY": 36175, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.70036313738, 17.558937199542], [121.701049782888, 17.558937199542], [121.701049782888, 17.5595918510784], [121.70036313738, 17.5595918510784], [121.70036313738, 17.558937199542]]]]}, "properties": {"taskId": 4235, "taskX": 439383, "taskY": 288126, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.365966775135, 18.3962301348468], [121.376953103258, 18.3962301348468], [121.376953103258, 18.4066547107354], [121.365966775135, 18.4066547107354], [121.365966775135, 18.3962301348468]]]]}, "properties": {"taskId": 4307, "taskX": 27431, "taskY": 18088, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 17.7905353905046], [121.552734353227, 17.7905353905046], [121.552734353227, 17.8114560854768], [121.530761696981, 17.8114560854768], [121.530761696981, 17.7905353905046]]]]}, "properties": {"taskId": 4296, "taskX": 13723, "taskY": 9015, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 18.4066547107354], [121.541748025104, 18.4066547107354], [121.541748025104, 18.4170786554759], [121.530761696981, 18.4170786554759], [121.530761696981, 18.4066547107354]]]]}, "properties": {"taskId": 4298, "taskX": 27446, "taskY": 18089, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 17.8532901110035], [122.014160134394, 17.8532901110035], [122.014160134394, 17.8742034365596], [121.992187478148, 17.8742034365596], [121.992187478148, 17.8532901110035]]]]}, "properties": {"taskId": 4265, "taskX": 13744, "taskY": 9018, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.118774392367, 18.6228217828704], [121.121520974398, 18.6228217828704], [121.121520974398, 18.6254245374825], [121.118774392367, 18.6254245374825], [121.118774392367, 18.6228217828704]]]]}, "properties": {"taskId": 4346, "taskX": 109634, "taskY": 72439, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.7696122440617], [121.640624978211, 17.7696122440617], [121.640624978211, 17.7905353905046], [121.618652321965, 17.7905353905046], [121.618652321965, 17.7696122440617]]]]}, "properties": {"taskId": 4387, "taskX": 13727, "taskY": 9014, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.084442116982, 18.6046013852398], [121.085815407998, 18.6046013852398], [121.085815407998, 18.605902906924], [121.084442116982, 18.605902906924], [121.084442116982, 18.6046013852398]]]]}, "properties": {"taskId": 4315, "taskX": 219243, "taskY": 144864, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.341247536858, 18.4587681168231], [121.343994118889, 18.4587681168231], [121.343994118889, 18.461373372249], [121.341247536858, 18.461373372249], [121.341247536858, 18.4587681168231]]]]}, "properties": {"taskId": 4331, "taskX": 109715, "taskY": 72376, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.690063454765, 17.602139120297], [121.695556618826, 17.602139120297], [121.695556618826, 17.6073750150926], [121.690063454765, 17.6073750150926], [121.690063454765, 17.602139120297]]]]}, "properties": {"taskId": 4311, "taskX": 54921, "taskY": 36024, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.92626950941, 18.0414212187671], [121.948242165656, 18.0414212187671], [121.948242165656, 18.0623123014185], [121.92626950941, 18.0623123014185], [121.92626950941, 18.0414212187671]]]]}, "properties": {"taskId": 4552, "taskX": 13741, "taskY": 9027, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.602139120297], [121.690063454765, 17.602139120297], [121.690063454765, 17.6073750150926], [121.684570290703, 17.6073750150926], [121.684570290703, 17.602139120297]]]]}, "properties": {"taskId": 4309, "taskX": 54920, "taskY": 36024, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.690063454765, 17.6073750150926], [121.695556618826, 17.6073750150926], [121.695556618826, 17.6126107580436], [121.690063454765, 17.6126107580436], [121.690063454765, 17.6073750150926]]]]}, "properties": {"taskId": 4312, "taskX": 54921, "taskY": 36025, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.720275857103, 17.6335522106155], [121.721649148118, 17.6335522106155], [121.721649148118, 17.6348609706555], [121.720275857103, 17.6348609706555], [121.720275857103, 17.6335522106155]]]]}, "properties": {"taskId": 4281, "taskX": 219706, "taskY": 144120, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.083068825967, 18.6019983120146], [121.084442116982, 18.6019983120146], [121.084442116982, 18.6032998536031], [121.083068825967, 18.6032998536031], [121.083068825967, 18.6019983120146]]]]}, "properties": {"taskId": 4317, "taskX": 219242, "taskY": 144862, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.6283170754359], [121.703796364918, 17.6283170754359], [121.703796364918, 17.6309346620284], [121.701049782888, 17.6309346620284], [121.701049782888, 17.6283170754359]]]]}, "properties": {"taskId": 4377, "taskX": 109846, "taskY": 72058, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.703796364918, 17.6283170754359], [121.706542946949, 17.6283170754359], [121.706542946949, 17.6309346620284], [121.703796364918, 17.6309346620284], [121.703796364918, 17.6283170754359]]]]}, "properties": {"taskId": 4379, "taskX": 109847, "taskY": 72058, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.083068825967, 18.6032998536031], [121.084442116982, 18.6032998536031], [121.084442116982, 18.6046013852398], [121.083068825967, 18.6046013852398], [121.083068825967, 18.6032998536031]]]]}, "properties": {"taskId": 4318, "taskX": 219242, "taskY": 144863, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.084442116982, 18.6032998536031], [121.085815407998, 18.6032998536031], [121.085815407998, 18.6046013852398], [121.084442116982, 18.6046013852398], [121.084442116982, 18.6032998536031]]]]}, "properties": {"taskId": 4320, "taskX": 219243, "taskY": 144863, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.6309346620284], [121.703796364918, 17.6309346620284], [121.703796364918, 17.6335522106155], [121.701049782888, 17.6335522106155], [121.701049782888, 17.6309346620284]]]]}, "properties": {"taskId": 4378, "taskX": 109846, "taskY": 72059, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.703796364918, 17.6309346620284], [121.706542946949, 17.6309346620284], [121.706542946949, 17.6335522106155], [121.703796364918, 17.6335522106155], [121.703796364918, 17.6309346620284]]]]}, "properties": {"taskId": 4380, "taskX": 109847, "taskY": 72059, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.261596657966, 18.5369085570839], [121.267089822028, 18.5369085570839], [121.267089822028, 18.5421166512436], [121.261596657966, 18.5421166512436], [121.261596657966, 18.5369085570839]]]]}, "properties": {"taskId": 4356, "taskX": 54843, "taskY": 36203, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.6335522106155], [121.712036111011, 17.6335522106155], [121.712036111011, 17.638787193754], [121.706542946949, 17.638787193754], [121.706542946949, 17.6335522106155]]]]}, "properties": {"taskId": 4277, "taskX": 54924, "taskY": 36030, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.084442116982, 18.605902906924], [121.085815407998, 18.605902906924], [121.085815407998, 18.6072044186551], [121.084442116982, 18.6072044186551], [121.084442116982, 18.605902906924]]]]}, "properties": {"taskId": 4316, "taskX": 219243, "taskY": 144865, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.014160134394, 17.8532901110035], [122.03613279064, 17.8532901110035], [122.03613279064, 17.8742034365596], [122.014160134394, 17.8742034365596], [122.014160134394, 17.8532901110035]]]]}, "properties": {"taskId": 4267, "taskX": 13745, "taskY": 9018, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.256103493905, 18.5421166512436], [121.261596657966, 18.5421166512436], [121.261596657966, 18.5473245866212], [121.256103493905, 18.5473245866212], [121.256103493905, 18.5421166512436]]]]}, "properties": {"taskId": 4357, "taskX": 54842, "taskY": 36204, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 17.9839579543074], [121.569213845411, 17.9839579543074], [121.569213845411, 17.9891826615141], [121.56372068135, 17.9891826615141], [121.56372068135, 17.9839579543074]]]]}, "properties": {"taskId": 4394, "taskX": 54898, "taskY": 36097, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.7696122440617], [121.618652321965, 17.7696122440617], [121.618652321965, 17.7905353905046], [121.596679665719, 17.7905353905046], [121.596679665719, 17.7696122440617]]]]}, "properties": {"taskId": 4385, "taskX": 13726, "taskY": 9014, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.5733389864572], [121.731262185226, 17.5733389864572], [121.731262185226, 17.5759573700272], [121.728515603195, 17.5759573700272], [121.728515603195, 17.5733389864572]]]]}, "properties": {"taskId": 4246, "taskX": 109856, "taskY": 72037, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.9891826615141], [121.56372068135, 17.9891826615141], [121.56372068135, 17.9996316117937], [121.552734353227, 17.9996316117937], [121.552734353227, 17.9891826615141]]]]}, "properties": {"taskId": 4390, "taskX": 27448, "taskY": 18049, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 17.9891826615141], [121.574707009473, 17.9891826615141], [121.574707009473, 17.9996316117937], [121.56372068135, 17.9996316117937], [121.56372068135, 17.9891826615141]]]]}, "properties": {"taskId": 4392, "taskX": 27449, "taskY": 18049, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.569213845411, 17.9839579543074], [121.574707009473, 17.9839579543074], [121.574707009473, 17.9891826615141], [121.569213845411, 17.9891826615141], [121.569213845411, 17.9839579543074]]]]}, "properties": {"taskId": 4396, "taskX": 54899, "taskY": 36097, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 18.4639785881275], [121.335754372797, 18.4639785881275], [121.335754372797, 18.4665837644539], [121.333007790766, 18.4665837644539], [121.333007790766, 18.4639785881275]]]]}, "properties": {"taskId": 4337, "taskX": 109712, "taskY": 72378, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.1249706362482], [121.67358396258, 18.1249706362482], [121.67358396258, 18.1354115139683], [121.662597634457, 18.1354115139683], [121.662597634457, 18.1249706362482]]]]}, "properties": {"taskId": 4413, "taskX": 27458, "taskY": 18062, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.1354115139683], [121.684570290703, 18.1354115139683], [121.684570290703, 18.1458517685528], [121.67358396258, 18.1458517685528], [121.67358396258, 18.1354115139683]]]]}, "properties": {"taskId": 4416, "taskX": 27459, "taskY": 18063, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.503295876673, 17.6858951936713], [121.508789040735, 17.6858951936713], [121.508789040735, 17.6911286542392], [121.503295876673, 17.6911286542392], [121.503295876673, 17.6858951936713]]]]}, "properties": {"taskId": 4423, "taskX": 54887, "taskY": 36040, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.121520974398, 18.620218988415], [121.124267556428, 18.620218988415], [121.124267556428, 18.6228217828704], [121.121520974398, 18.6228217828704], [121.121520974398, 18.620218988415]]]]}, "properties": {"taskId": 4347, "taskX": 109635, "taskY": 72438, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.250610329843, 18.5577399808773], [121.256103493905, 18.5577399808773], [121.256103493905, 18.5629474396796], [121.250610329843, 18.5629474396796], [121.250610329843, 18.5577399808773]]]]}, "properties": {"taskId": 4368, "taskX": 54841, "taskY": 36207, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.261596657966, 18.5317003041803], [121.264343239997, 18.5317003041803], [121.264343239997, 18.5343044504727], [121.261596657966, 18.5343044504727], [121.261596657966, 18.5317003041803]]]]}, "properties": {"taskId": 4553, "taskX": 109686, "taskY": 72404, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.365966775135, 18.4170786554759], [121.371459939197, 18.4170786554759], [121.371459939197, 18.4222903910698], [121.365966775135, 18.4222903910698], [121.365966775135, 18.4170786554759]]]]}, "properties": {"taskId": 4573, "taskX": 54862, "taskY": 36180, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.371459939197, 18.4170786554759], [121.376953103258, 18.4170786554759], [121.376953103258, 18.4222903910698], [121.371459939197, 18.4222903910698], [121.371459939197, 18.4170786554759]]]]}, "properties": {"taskId": 4575, "taskX": 54863, "taskY": 36180, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 18.0518670704211], [121.613159157903, 18.0518670704211], [121.613159157903, 18.0570897635212], [121.607665993842, 18.0570897635212], [121.607665993842, 18.0518670704211]]]]}, "properties": {"taskId": 4405, "taskX": 54906, "taskY": 36110, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.613159157903, 18.0518670704211], [121.618652321965, 18.0518670704211], [121.618652321965, 18.0570897635212], [121.613159157903, 18.0570897635212], [121.613159157903, 18.0518670704211]]]]}, "properties": {"taskId": 4407, "taskX": 54907, "taskY": 36110, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698989846365, 17.6957078071621], [121.699676491872, 17.6957078071621], [121.699676491872, 17.6963619623342], [121.698989846365, 17.6963619623342], [121.698989846365, 17.6957078071621]]]]}, "properties": {"taskId": 4636, "taskX": 439381, "taskY": 288335, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.426391579812, 18.432713388513], [121.431884743873, 18.432713388513], [121.431884743873, 18.4379246502857], [121.426391579812, 18.4379246502857], [121.426391579812, 18.432713388513]]]]}, "properties": {"taskId": 4660, "taskX": 54873, "taskY": 36183, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 17.8114560854768], [121.684570290703, 17.8114560854768], [121.684570290703, 17.8219155128794], [121.67358396258, 17.8219155128794], [121.67358396258, 17.8114560854768]]]]}, "properties": {"taskId": 4263, "taskX": 27459, "taskY": 18032, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 17.7120609713899], [121.74499509538, 17.7120609713899], [121.74499509538, 17.7172936692013], [121.739501931318, 17.7172936692013], [121.739501931318, 17.7120609713899]]]]}, "properties": {"taskId": 4546, "taskX": 54930, "taskY": 36045, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 17.800996044581], [121.640624978211, 17.800996044581], [121.640624978211, 17.8114560854768], [121.629638650088, 17.8114560854768], [121.629638650088, 17.800996044581]]]]}, "properties": {"taskId": 4664, "taskX": 27455, "taskY": 18031, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.696243264334, 17.695053649607], [121.696929909841, 17.695053649607], [121.696929909841, 17.6957078071621], [121.696243264334, 17.6957078071621], [121.696243264334, 17.695053649607]]]]}, "properties": {"taskId": 4615, "taskX": 439377, "taskY": 288334, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.800996044581], [121.629638650088, 17.800996044581], [121.629638650088, 17.8114560854768], [121.618652321965, 17.8114560854768], [121.618652321965, 17.800996044581]]]]}, "properties": {"taskId": 4662, "taskX": 27454, "taskY": 18031, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.354980447012, 18.4275019687616], [121.365966775135, 18.4275019687616], [121.365966775135, 18.4379246502857], [121.354980447012, 18.4379246502857], [121.354980447012, 18.4275019687616]]]]}, "properties": {"taskId": 4454, "taskX": 27430, "taskY": 18091, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.195678689228, 18.5837756851588], [121.20117185329, 18.5837756851588], [121.20117185329, 18.5889823489055], [121.195678689228, 18.5889823489055], [121.195678689228, 18.5837756851588]]]]}, "properties": {"taskId": 4563, "taskX": 54831, "taskY": 36212, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.265716531013, 18.5356065087388], [121.267089822028, 18.5356065087388], [121.267089822028, 18.5369085570839], [121.265716531013, 18.5369085570839], [121.265716531013, 18.5356065087388]]]]}, "properties": {"taskId": 4560, "taskX": 219375, "taskY": 144811, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 18.5525323631785], [121.250610329843, 18.5525323631785], [121.250610329843, 18.5577399808773], [121.245117165782, 18.5577399808773], [121.245117165782, 18.5525323631785]]]]}, "properties": {"taskId": 4365, "taskX": 54840, "taskY": 36206, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 17.8532901110035], [121.596679665719, 17.8532901110035], [121.596679665719, 17.8742034365596], [121.574707009473, 17.8742034365596], [121.574707009473, 17.8532901110035]]]]}, "properties": {"taskId": 4651, "taskX": 13725, "taskY": 9018, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.409912087627, 18.4066547107354], [121.415405251689, 18.4066547107354], [121.415405251689, 18.4118667620183], [121.409912087627, 18.4118667620183], [121.409912087627, 18.4066547107354]]]]}, "properties": {"taskId": 4521, "taskX": 54870, "taskY": 36178, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695728280203, 17.696034885046], [121.69589994158, 17.696034885046], [121.69589994158, 17.6961984237646], [121.695728280203, 17.6961984237646], [121.695728280203, 17.696034885046]]]]}, "properties": {"taskId": 4623, "taskX": 1757505, "taskY": 1153342, "taskZoom": 21, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.720275857103, 17.6348609706555], [121.721649148118, 17.6348609706555], [121.721649148118, 17.6361697211924], [121.720275857103, 17.6361697211924], [121.720275857103, 17.6348609706555]]]]}, "properties": {"taskId": 4282, "taskX": 219706, "taskY": 144121, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.69589994158, 17.6957078071621], [121.696243264334, 17.6957078071621], [121.696243264334, 17.696034885046], [121.69589994158, 17.696034885046], [121.69589994158, 17.6957078071621]]]]}, "properties": {"taskId": 4619, "taskX": 878753, "taskY": 576670, "taskZoom": 20, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695642449515, 17.6961984237646], [121.695728280203, 17.6961984237646], [121.695728280203, 17.696280193068], [121.695642449515, 17.696280193068], [121.695642449515, 17.6961984237646]]]]}, "properties": {"taskId": 4627, "taskX": 3515009, "taskY": 2306686, "taskZoom": 22, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.8742034365596], [121.56372068135, 17.8742034365596], [121.56372068135, 17.8846591764432], [121.552734353227, 17.8846591764432], [121.552734353227, 17.8742034365596]]]]}, "properties": {"taskId": 4653, "taskX": 27448, "taskY": 18038, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.712036111011, 17.638787193754], [121.717529275072, 17.638787193754], [121.717529275072, 17.6440220248121], [121.712036111011, 17.6440220248121], [121.712036111011, 17.638787193754]]]]}, "properties": {"taskId": 4280, "taskX": 54925, "taskY": 36031, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.696929909841, 17.6937453273483], [121.698303200857, 17.6937453273483], [121.698303200857, 17.695053649607], [121.696929909841, 17.695053649607], [121.696929909841, 17.6937453273483]]]]}, "properties": {"taskId": 4611, "taskX": 219689, "taskY": 144166, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.695053649607], [121.696243264334, 17.695053649607], [121.696243264334, 17.6957078071621], [121.695556618826, 17.6957078071621], [121.695556618826, 17.695053649607]]]]}, "properties": {"taskId": 4613, "taskX": 439376, "taskY": 288334, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.696243264334, 17.6957078071621], [121.696929909841, 17.6957078071621], [121.696929909841, 17.6963619623342], [121.696243264334, 17.6963619623342], [121.696243264334, 17.6957078071621]]]]}, "properties": {"taskId": 4616, "taskX": 439377, "taskY": 288335, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.699676491872, 17.695053649607], [121.70036313738, 17.695053649607], [121.70036313738, 17.6957078071621], [121.699676491872, 17.6957078071621], [121.699676491872, 17.695053649607]]]]}, "properties": {"taskId": 4637, "taskX": 439382, "taskY": 288334, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.70036313738, 17.6957078071621], [121.701049782888, 17.6957078071621], [121.701049782888, 17.6963619623342], [121.70036313738, 17.6963619623342], [121.70036313738, 17.6957078071621]]]]}, "properties": {"taskId": 4640, "taskX": 439383, "taskY": 288335, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 17.8323743264764], [121.679077126642, 17.8323743264764], [121.679077126642, 17.8376035030001], [121.67358396258, 17.8376035030001], [121.67358396258, 17.8323743264764]]]]}, "properties": {"taskId": 4137, "taskX": 54918, "taskY": 36068, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.38244626732, 18.4014425016654], [121.387939431381, 18.4014425016654], [121.387939431381, 18.4066547107354], [121.38244626732, 18.4066547107354], [121.38244626732, 18.4014425016654]]]]}, "properties": {"taskId": 4588, "taskX": 54865, "taskY": 36177, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 18.4431357540414], [121.448364236058, 18.4431357540414], [121.448364236058, 18.4483466997417], [121.442871071996, 18.4483466997417], [121.442871071996, 18.4431357540414]]]]}, "properties": {"taskId": 4670, "taskX": 54876, "taskY": 36185, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.38244626732, 18.4066547107354], [121.387939431381, 18.4066547107354], [121.387939431381, 18.4118667620183], [121.38244626732, 18.4118667620183], [121.38244626732, 18.4066547107354]]]]}, "properties": {"taskId": 4583, "taskX": 54865, "taskY": 36178, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.432713388513], [121.426391579812, 18.432713388513], [121.426391579812, 18.4379246502857], [121.42089841575, 18.4379246502857], [121.42089841575, 18.432713388513]]]]}, "properties": {"taskId": 4658, "taskX": 54872, "taskY": 36183, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698303200857, 17.7015951179171], [121.701049782888, 17.7015951179171], [121.701049782888, 17.7042116385043], [121.698303200857, 17.7042116385043], [121.698303200857, 17.7015951179171]]]]}, "properties": {"taskId": 4291, "taskX": 109845, "taskY": 72086, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.6957078071621], [121.69589994158, 17.6957078071621], [121.69589994158, 17.696034885046], [121.695556618826, 17.696034885046], [121.695556618826, 17.6957078071621]]]]}, "properties": {"taskId": 4617, "taskX": 878752, "taskY": 576670, "taskZoom": 20, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.696280193068], [121.695642449515, 17.696280193068], [121.695642449515, 17.6963619623342], [121.695556618826, 17.6963619623342], [121.695556618826, 17.696280193068]]]]}, "properties": {"taskId": 4626, "taskX": 3515008, "taskY": 2306687, "taskZoom": 22, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.696034885046], [121.695728280203, 17.696034885046], [121.695728280203, 17.6961984237646], [121.695556618826, 17.6961984237646], [121.695556618826, 17.696034885046]]]]}, "properties": {"taskId": 4621, "taskX": 1757504, "taskY": 1153342, "taskZoom": 21, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695728280203, 17.6961984237646], [121.69589994158, 17.6961984237646], [121.69589994158, 17.6963619623342], [121.695728280203, 17.6963619623342], [121.695728280203, 17.6961984237646]]]]}, "properties": {"taskId": 4624, "taskX": 1757505, "taskY": 1153343, "taskZoom": 21, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698303200857, 17.695053649607], [121.698989846365, 17.695053649607], [121.698989846365, 17.6957078071621], [121.698303200857, 17.6957078071621], [121.698303200857, 17.695053649607]]]]}, "properties": {"taskId": 4633, "taskX": 439380, "taskY": 288334, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.6937453273483], [121.696929909841, 17.6937453273483], [121.696929909841, 17.695053649607], [121.695556618826, 17.695053649607], [121.695556618826, 17.6937453273483]]]]}, "properties": {"taskId": 4609, "taskX": 219688, "taskY": 144166, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.6911286542392], [121.698303200857, 17.6911286542392], [121.698303200857, 17.6937453273483], [121.695556618826, 17.6937453273483], [121.695556618826, 17.6911286542392]]]]}, "properties": {"taskId": 4605, "taskX": 109844, "taskY": 72082, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.8846591764432], [121.56372068135, 17.8846591764432], [121.56372068135, 17.8951143006479], [121.552734353227, 17.8951143006479], [121.552734353227, 17.8846591764432]]]]}, "properties": {"taskId": 4654, "taskX": 27448, "taskY": 18039, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.374206521227, 18.4118667620183], [121.376953103258, 18.4118667620183], [121.376953103258, 18.4144727284777], [121.374206521227, 18.4144727284777], [121.374206521227, 18.4118667620183]]]]}, "properties": {"taskId": 4595, "taskX": 109727, "taskY": 72358, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.426391579812, 18.4275019687616], [121.431884743873, 18.4275019687616], [121.431884743873, 18.432713388513], [121.426391579812, 18.432713388513], [121.426391579812, 18.4275019687616]]]]}, "properties": {"taskId": 4659, "taskX": 54873, "taskY": 36182, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.975707985963, 20.4373079470634], [121.981201150025, 20.4373079470634], [121.981201150025, 20.4424552567539], [121.975707985963, 20.4424552567539], [121.975707985963, 20.4373079470634]]]]}, "properties": {"taskId": 4531, "taskX": 54973, "taskY": 36570, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.4275019687616], [121.426391579812, 18.4275019687616], [121.426391579812, 18.432713388513], [121.42089841575, 18.432713388513], [121.42089841575, 18.4275019687616]]]]}, "properties": {"taskId": 4657, "taskX": 54872, "taskY": 36182, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.7486866486513], [121.695556618826, 17.7486866486513], [121.695556618826, 17.7591497523209], [121.684570290703, 17.7591497523209], [121.684570290703, 17.7486866486513]]]]}, "properties": {"taskId": 4677, "taskX": 27460, "taskY": 18026, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.453857400119, 18.432713388513], [121.459350564181, 18.432713388513], [121.459350564181, 18.4379246502857], [121.453857400119, 18.4379246502857], [121.453857400119, 18.432713388513]]]]}, "properties": {"taskId": 4674, "taskX": 54878, "taskY": 36183, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.0309747467668], [121.684570290703, 18.0309747467668], [121.684570290703, 18.0414212187671], [121.67358396258, 18.0414212187671], [121.67358396258, 18.0309747467668]]]]}, "properties": {"taskId": 4484, "taskX": 27459, "taskY": 18053, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.5811940234556], [121.761474587564, 17.5811940234556], [121.761474587564, 17.5916668753295], [121.750488259441, 17.5916668753295], [121.750488259441, 17.5811940234556]]]]}, "properties": {"taskId": 4729, "taskX": 27466, "taskY": 18010, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 18.4170786554759], [121.453857400119, 18.4170786554759], [121.453857400119, 18.4275019687616], [121.442871071996, 18.4275019687616], [121.442871071996, 18.4170786554759]]]]}, "properties": {"taskId": 4513, "taskX": 27438, "taskY": 18090, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.426391579812, 18.4170786554759], [121.431884743873, 18.4170786554759], [121.431884743873, 18.4222903910698], [121.426391579812, 18.4222903910698], [121.426391579812, 18.4170786554759]]]]}, "properties": {"taskId": 4667, "taskX": 54873, "taskY": 36180, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.2502199739071], [121.574707009473, 18.2502199739071], [121.574707009473, 18.271086106447], [121.552734353227, 18.271086106447], [121.552734353227, 18.2502199739071]]]]}, "properties": {"taskId": 4686, "taskX": 13724, "taskY": 9037, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.5916668753295], [121.772460915687, 17.5916668753295], [121.772460915687, 17.602139120297], [121.761474587564, 17.602139120297], [121.761474587564, 17.5916668753295]]]]}, "properties": {"taskId": 4732, "taskX": 27467, "taskY": 18011, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.459350564181, 18.432713388513], [121.464843728242, 18.432713388513], [121.464843728242, 18.4379246502857], [121.459350564181, 18.4379246502857], [121.459350564181, 18.432713388513]]]]}, "properties": {"taskId": 4676, "taskX": 54879, "taskY": 36183, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.7591497523209], [121.695556618826, 17.7591497523209], [121.695556618826, 17.7696122440617], [121.684570290703, 17.7696122440617], [121.684570290703, 17.7591497523209]]]]}, "properties": {"taskId": 4678, "taskX": 27460, "taskY": 18027, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.2293513352315], [121.486816384489, 18.2293513352315], [121.486816384489, 18.2502199739071], [121.464843728242, 18.2502199739071], [121.464843728242, 18.2293513352315]]]]}, "properties": {"taskId": 3965, "taskX": 13720, "taskY": 9036, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.720275857103, 17.6518739861627], [121.723022439134, 17.6518739861627], [121.723022439134, 17.6544912305301], [121.720275857103, 17.6544912305301], [121.720275857103, 17.6518739861627]]]]}, "properties": {"taskId": 4684, "taskX": 109853, "taskY": 72067, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 17.7696122440617], [121.530761696981, 17.7696122440617], [121.530761696981, 17.7905353905046], [121.508789040735, 17.7905353905046], [121.508789040735, 17.7696122440617]]]]}, "properties": {"taskId": 4293, "taskX": 13722, "taskY": 9014, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.272582986089, 18.5317003041803], [121.278076150151, 18.5317003041803], [121.278076150151, 18.5369085570839], [121.272582986089, 18.5369085570839], [121.272582986089, 18.5317003041803]]]]}, "properties": {"taskId": 4351, "taskX": 54845, "taskY": 36202, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.387939431381, 18.3962301348468], [121.393432595443, 18.3962301348468], [121.393432595443, 18.4014425016654], [121.387939431381, 18.4014425016654], [121.387939431381, 18.3962301348468]]]]}, "properties": {"taskId": 4589, "taskX": 54866, "taskY": 36176, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.553699902049], [121.696929909841, 17.553699902049], [121.696929909841, 17.5550092406214], [121.695556618826, 17.5550092406214], [121.695556618826, 17.553699902049]]]]}, "properties": {"taskId": 4714, "taskX": 219688, "taskY": 144059, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.699333169118, 17.695053649607], [121.699676491872, 17.695053649607], [121.699676491872, 17.6953807286823], [121.699333169118, 17.6953807286823], [121.699333169118, 17.695053649607]]]]}, "properties": {"taskId": 4711, "taskX": 878763, "taskY": 576668, "taskZoom": 20, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.267089822028, 18.5317003041803], [121.269836404059, 18.5317003041803], [121.269836404059, 18.5343044504727], [121.267089822028, 18.5343044504727], [121.267089822028, 18.5317003041803]]]]}, "properties": {"taskId": 4565, "taskX": 109688, "taskY": 72404, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 17.8219155128794], [121.67358396258, 17.8219155128794], [121.67358396258, 17.8323743264764], [121.662597634457, 17.8323743264764], [121.662597634457, 17.8219155128794]]]]}, "properties": {"taskId": 4262, "taskX": 27458, "taskY": 18033, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.6518739861627], [121.720275857103, 17.6518739861627], [121.720275857103, 17.6544912305301], [121.717529275072, 17.6544912305301], [121.717529275072, 17.6518739861627]]]]}, "properties": {"taskId": 4682, "taskX": 109852, "taskY": 72067, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.269836404059, 18.5317003041803], [121.272582986089, 18.5317003041803], [121.272582986089, 18.5343044504727], [121.269836404059, 18.5343044504727], [121.269836404059, 18.5317003041803]]]]}, "properties": {"taskId": 4567, "taskX": 109689, "taskY": 72404, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.267089822028, 18.5343044504727], [121.269836404059, 18.5343044504727], [121.269836404059, 18.5369085570839], [121.267089822028, 18.5369085570839], [121.267089822028, 18.5343044504727]]]]}, "properties": {"taskId": 4566, "taskX": 109688, "taskY": 72405, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.448364236058, 18.4379246502857], [121.453857400119, 18.4379246502857], [121.453857400119, 18.4431357540414], [121.448364236058, 18.4431357540414], [121.448364236058, 18.4379246502857]]]]}, "properties": {"taskId": 4671, "taskX": 54877, "taskY": 36184, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.261596657966, 18.5421166512436], [121.267089822028, 18.5421166512436], [121.267089822028, 18.5473245866212], [121.261596657966, 18.5473245866212], [121.261596657966, 18.5421166512436]]]]}, "properties": {"taskId": 4359, "taskX": 54843, "taskY": 36204, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 18.2293513352315], [121.596679665719, 18.2293513352315], [121.596679665719, 18.2502199739071], [121.574707009473, 18.2502199739071], [121.574707009473, 18.2293513352315]]]]}, "properties": {"taskId": 4687, "taskX": 13725, "taskY": 9036, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.696929909841, 17.5543545725184], [121.697616555349, 17.5543545725184], [121.697616555349, 17.5550092406214], [121.696929909841, 17.5550092406214], [121.696929909841, 17.5543545725184]]]]}, "properties": {"taskId": 4718, "taskX": 439378, "taskY": 288119, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.569213845411, 17.8898868155249], [121.574707009473, 17.8898868155249], [121.574707009473, 17.8951143006479], [121.569213845411, 17.8951143006479], [121.569213845411, 17.8898868155249]]]]}, "properties": {"taskId": 4700, "taskX": 54899, "taskY": 36079, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.2032620163935], [121.657104470395, 18.2032620163935], [121.657104470395, 18.2084801928881], [121.651611306334, 18.2084801928881], [121.651611306334, 18.2032620163935]]]]}, "properties": {"taskId": 4706, "taskX": 54914, "taskY": 36139, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.1980436836125], [121.657104470395, 18.1980436836125], [121.657104470395, 18.2032620163935], [121.651611306334, 18.2032620163935], [121.651611306334, 18.1980436836125]]]]}, "properties": {"taskId": 4705, "taskX": 54914, "taskY": 36138, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.5523905540115], [121.696929909841, 17.5523905540115], [121.696929909841, 17.553699902049], [121.695556618826, 17.553699902049], [121.695556618826, 17.5523905540115]]]]}, "properties": {"taskId": 4713, "taskX": 219688, "taskY": 144058, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.687316872734, 17.6544912305301], [121.690063454765, 17.6544912305301], [121.690063454765, 17.657108436848], [121.687316872734, 17.657108436848], [121.687316872734, 17.6544912305301]]]]}, "properties": {"taskId": 4539, "taskX": 109841, "taskY": 72068, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78344724381, 17.497389397627], [121.786193825841, 17.497389397627], [121.786193825841, 17.5000088782172], [121.78344724381, 17.5000088782172], [121.78344724381, 17.497389397627]]]]}, "properties": {"taskId": 4097, "taskX": 109876, "taskY": 72008, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.225891091567, 18.5629474396796], [121.228637673597, 18.5629474396796], [121.228637673597, 18.5655511094825], [121.225891091567, 18.5655511094825], [121.225891091567, 18.5629474396796]]]]}, "properties": {"taskId": 4571, "taskX": 109673, "taskY": 72416, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.696929909841, 17.5523905540115], [121.698303200857, 17.5523905540115], [121.698303200857, 17.553699902049], [121.696929909841, 17.553699902049], [121.696929909841, 17.5523905540115]]]]}, "properties": {"taskId": 4715, "taskX": 219689, "taskY": 144058, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698989846365, 17.6953807286823], [121.699333169118, 17.6953807286823], [121.699333169118, 17.6957078071621], [121.698989846365, 17.6957078071621], [121.698989846365, 17.6953807286823]]]]}, "properties": {"taskId": 4710, "taskX": 878762, "taskY": 576669, "taskZoom": 20, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.569213845411, 17.8846591764432], [121.574707009473, 17.8846591764432], [121.574707009473, 17.8898868155249], [121.569213845411, 17.8898868155249], [121.569213845411, 17.8846591764432]]]]}, "properties": {"taskId": 4699, "taskX": 54899, "taskY": 36078, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.261596657966, 18.5473245866212], [121.267089822028, 18.5473245866212], [121.267089822028, 18.5525323631785], [121.261596657966, 18.5525323631785], [121.261596657966, 18.5473245866212]]]]}, "properties": {"taskId": 4360, "taskX": 54843, "taskY": 36205, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.680450417657, 17.8336816350023], [121.681823708672, 17.8336816350023], [121.681823708672, 17.8349889339319], [121.680450417657, 17.8349889339319], [121.680450417657, 17.8336816350023]]]]}, "properties": {"taskId": 4176, "taskX": 219677, "taskY": 144273, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.453857400119, 18.4275019687616], [121.459350564181, 18.4275019687616], [121.459350564181, 18.432713388513], [121.453857400119, 18.432713388513], [121.453857400119, 18.4275019687616]]]]}, "properties": {"taskId": 4673, "taskX": 54878, "taskY": 36182, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.265716531013, 18.5343044504727], [121.267089822028, 18.5343044504727], [121.267089822028, 18.5356065087388], [121.265716531013, 18.5356065087388], [121.265716531013, 18.5343044504727]]]]}, "properties": {"taskId": 4559, "taskX": 219375, "taskY": 144810, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 17.8336816350023], [121.680450417657, 17.8336816350023], [121.680450417657, 17.8349889339319], [121.679077126642, 17.8349889339319], [121.679077126642, 17.8336816350023]]]]}, "properties": {"taskId": 4174, "taskX": 219676, "taskY": 144273, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 17.8349889339319], [121.680450417657, 17.8349889339319], [121.680450417657, 17.8362962232647], [121.679077126642, 17.8362962232647], [121.679077126642, 17.8349889339319]]]]}, "properties": {"taskId": 4149, "taskX": 219676, "taskY": 144274, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 17.8742034365596], [121.596679665719, 17.8742034365596], [121.596679665719, 17.8951143006479], [121.574707009473, 17.8951143006479], [121.574707009473, 17.8742034365596]]]]}, "properties": {"taskId": 4652, "taskX": 13725, "taskY": 9019, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.736755349288, 17.5707205649901], [121.739501931318, 17.5707205649901], [121.739501931318, 17.5733389864572], [121.736755349288, 17.5733389864572], [121.736755349288, 17.5707205649901]]]]}, "properties": {"taskId": 4703, "taskX": 109859, "taskY": 72036, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.256103493905, 18.5317003041803], [121.261596657966, 18.5317003041803], [121.261596657966, 18.5369085570839], [121.256103493905, 18.5369085570839], [121.256103493905, 18.5317003041803]]]]}, "properties": {"taskId": 4353, "taskX": 54842, "taskY": 36202, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.5707205649901], [121.736755349288, 17.5707205649901], [121.736755349288, 17.5733389864572], [121.734008767257, 17.5733389864572], [121.734008767257, 17.5707205649901]]]]}, "properties": {"taskId": 4701, "taskX": 109858, "taskY": 72036, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.736755349288, 17.5733389864572], [121.739501931318, 17.5733389864572], [121.739501931318, 17.5759573700272], [121.736755349288, 17.5759573700272], [121.736755349288, 17.5733389864572]]]]}, "properties": {"taskId": 4704, "taskX": 109859, "taskY": 72037, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.4170786554759], [121.426391579812, 18.4170786554759], [121.426391579812, 18.4222903910698], [121.42089841575, 18.4222903910698], [121.42089841575, 18.4170786554759]]]]}, "properties": {"taskId": 4665, "taskX": 54872, "taskY": 36180, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.0205276547308], [121.92626950941, 18.0205276547308], [121.92626950941, 18.0414212187671], [121.904296853164, 18.0414212187671], [121.904296853164, 18.0205276547308]]]]}, "properties": {"taskId": 4549, "taskX": 13740, "taskY": 9026, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.459350564181, 18.4275019687616], [121.464843728242, 18.4275019687616], [121.464843728242, 18.432713388513], [121.459350564181, 18.432713388513], [121.459350564181, 18.4275019687616]]]]}, "properties": {"taskId": 4675, "taskX": 54879, "taskY": 36182, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.821899392241, 18.2815182321454], [121.827392556303, 18.2815182321454], [121.827392556303, 18.2867340597168], [121.821899392241, 18.2867340597168], [121.821899392241, 18.2815182321454]]]]}, "properties": {"taskId": 4691, "taskX": 54945, "taskY": 36154, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 18.2867340597168], [121.821899392241, 18.2867340597168], [121.821899392241, 18.2919497303851], [121.81640622818, 18.2919497303851], [121.81640622818, 18.2867340597168]]]]}, "properties": {"taskId": 4690, "taskX": 54944, "taskY": 36155, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.680450417657, 17.8323743264764], [121.681823708672, 17.8323743264764], [121.681823708672, 17.8336816350023], [121.680450417657, 17.8336816350023], [121.680450417657, 17.8323743264764]]]]}, "properties": {"taskId": 4175, "taskX": 219677, "taskY": 144272, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.3962301348468], [121.514282204796, 18.3962301348468], [121.514282204796, 18.4014425016654], [121.508789040735, 18.4014425016654], [121.508789040735, 18.3962301348468]]]]}, "properties": {"taskId": 4721, "taskX": 54888, "taskY": 36176, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.514282204796, 18.3962301348468], [121.519775368858, 18.3962301348468], [121.519775368858, 18.4014425016654], [121.514282204796, 18.4014425016654], [121.514282204796, 18.3962301348468]]]]}, "properties": {"taskId": 4723, "taskX": 54889, "taskY": 36176, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.697616555349, 17.5543545725184], [121.698303200857, 17.5543545725184], [121.698303200857, 17.5550092406214], [121.697616555349, 17.5550092406214], [121.697616555349, 17.5543545725184]]]]}, "properties": {"taskId": 4720, "taskX": 439379, "taskY": 288119, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.697616555349, 17.553699902049], [121.698303200857, 17.553699902049], [121.698303200857, 17.5543545725184], [121.697616555349, 17.5543545725184], [121.697616555349, 17.553699902049]]]]}, "properties": {"taskId": 4719, "taskX": 439379, "taskY": 288118, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.92626950941, 18.0205276547308], [121.948242165656, 18.0205276547308], [121.948242165656, 18.0414212187671], [121.92626950941, 18.0414212187671], [121.92626950941, 18.0205276547308]]]]}, "properties": {"taskId": 4551, "taskX": 13741, "taskY": 9026, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 18.4665837644539], [121.335754372797, 18.4665837644539], [121.335754372797, 18.4691889012235], [121.333007790766, 18.4691889012235], [121.333007790766, 18.4665837644539]]]]}, "properties": {"taskId": 4338, "taskX": 109712, "taskY": 72379, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.4014425016654], [121.514282204796, 18.4014425016654], [121.514282204796, 18.4066547107354], [121.508789040735, 18.4066547107354], [121.508789040735, 18.4014425016654]]]]}, "properties": {"taskId": 4722, "taskX": 54888, "taskY": 36177, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.31103513452, 18.4587681168231], [121.322021462643, 18.4587681168231], [121.322021462643, 18.4691889012235], [121.31103513452, 18.4691889012235], [121.31103513452, 18.4587681168231]]]]}, "properties": {"taskId": 3993, "taskX": 27426, "taskY": 18094, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.23962400172, 18.5525323631785], [121.245117165782, 18.5525323631785], [121.245117165782, 18.5577399808773], [121.23962400172, 18.5577399808773], [121.23962400172, 18.5525323631785]]]]}, "properties": {"taskId": 4371, "taskX": 54839, "taskY": 36206, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.6492567037506], [121.720275857103, 17.6492567037506], [121.720275857103, 17.6518739861627], [121.717529275072, 17.6518739861627], [121.717529275072, 17.6492567037506]]]]}, "properties": {"taskId": 4681, "taskX": 109852, "taskY": 72066, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.5392965531931], [121.78344724381, 17.5392965531931], [121.78344724381, 17.5497718295439], [121.772460915687, 17.5497718295439], [121.772460915687, 17.5392965531931]]]]}, "properties": {"taskId": 4777, "taskX": 27468, "taskY": 18006, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.322021462643, 18.5004474552763], [121.327514626705, 18.5004474552763], [121.327514626705, 18.505656659841], [121.322021462643, 18.505656659841], [121.322021462643, 18.5004474552763]]]]}, "properties": {"taskId": 4053, "taskX": 54854, "taskY": 36196, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.657108436848], [121.687316872734, 17.657108436848], [121.687316872734, 17.6597256051114], [121.684570290703, 17.6597256051114], [121.684570290703, 17.657108436848]]]]}, "properties": {"taskId": 4538, "taskX": 109840, "taskY": 72069, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78344724381, 17.5392965531931], [121.794433571933, 17.5392965531931], [121.794433571933, 17.5497718295439], [121.78344724381, 17.5497718295439], [121.78344724381, 17.5392965531931]]]]}, "properties": {"taskId": 4779, "taskX": 27469, "taskY": 18006, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695642449515, 17.696280193068], [121.695728280203, 17.696280193068], [121.695728280203, 17.6963619623342], [121.695642449515, 17.6963619623342], [121.695642449515, 17.696280193068]]]]}, "properties": {"taskId": 4628, "taskX": 3515009, "taskY": 2306687, "taskZoom": 22, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.338500954828, 18.461373372249], [121.341247536858, 18.461373372249], [121.341247536858, 18.4639785881275], [121.338500954828, 18.4639785881275], [121.338500954828, 18.461373372249]]]]}, "properties": {"taskId": 4330, "taskX": 109714, "taskY": 72377, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.7905353905046], [121.618652321965, 17.7905353905046], [121.618652321965, 17.8114560854768], [121.596679665719, 17.8114560854768], [121.596679665719, 17.7905353905046]]]]}, "properties": {"taskId": 4386, "taskX": 13726, "taskY": 9015, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.96472165784, 20.4450288469673], [121.967468239871, 20.4450288469673], [121.967468239871, 20.447602394087], [121.96472165784, 20.447602394087], [121.96472165784, 20.4450288469673]]]]}, "properties": {"taskId": 4458, "taskX": 109942, "taskY": 73143, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.4014425016654], [121.426391579812, 18.4014425016654], [121.426391579812, 18.4066547107354], [121.42089841575, 18.4066547107354], [121.42089841575, 18.4014425016654]]]]}, "properties": {"taskId": 4774, "taskX": 54872, "taskY": 36177, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 17.8330279819388], [121.679420449395, 17.8330279819388], [121.679420449395, 17.8333548087704], [121.679077126642, 17.8333548087704], [121.679077126642, 17.8330279819388]]]]}, "properties": {"taskId": 4181, "taskX": 878704, "taskY": 577090, "taskZoom": 20, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.338500954828, 18.4665837644539], [121.341247536858, 18.4665837644539], [121.341247536858, 18.4691889012235], [121.338500954828, 18.4691889012235], [121.338500954828, 18.4665837644539]]]]}, "properties": {"taskId": 4334, "taskX": 109714, "taskY": 72379, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.5811940234556], [121.56372068135, 17.5811940234556], [121.56372068135, 17.5916668753295], [121.552734353227, 17.5916668753295], [121.552734353227, 17.5811940234556]]]]}, "properties": {"taskId": 4117, "taskX": 27448, "taskY": 18010, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 17.8323743264764], [121.679763772149, 17.8323743264764], [121.679763772149, 17.8330279819388], [121.679077126642, 17.8330279819388], [121.679077126642, 17.8323743264764]]]]}, "properties": {"taskId": 4177, "taskX": 439352, "taskY": 288544, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.431884743873, 18.4066547107354], [121.442871071996, 18.4066547107354], [121.442871071996, 18.4170786554759], [121.431884743873, 18.4170786554759], [121.431884743873, 18.4066547107354]]]]}, "properties": {"taskId": 4508, "taskX": 27437, "taskY": 18089, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.3962301348468], [121.38244626732, 18.3962301348468], [121.38244626732, 18.4014425016654], [121.376953103258, 18.4014425016654], [121.376953103258, 18.3962301348468]]]]}, "properties": {"taskId": 4585, "taskX": 54864, "taskY": 36176, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.659851052426, 18.1980436836125], [121.662597634457, 18.1980436836125], [121.662597634457, 18.2006528695364], [121.659851052426, 18.2006528695364], [121.659851052426, 18.1980436836125]]]]}, "properties": {"taskId": 4751, "taskX": 109831, "taskY": 72276, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.699333169118, 17.6953807286823], [121.699676491872, 17.6953807286823], [121.699676491872, 17.6957078071621], [121.699333169118, 17.6957078071621], [121.699333169118, 17.6953807286823]]]]}, "properties": {"taskId": 4712, "taskX": 878763, "taskY": 576669, "taskZoom": 20, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.23962400172, 18.5421166512436], [121.245117165782, 18.5421166512436], [121.245117165782, 18.5473245866212], [121.23962400172, 18.5473245866212], [121.23962400172, 18.5421166512436]]]]}, "properties": {"taskId": 4755, "taskX": 54839, "taskY": 36204, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.722335793626, 17.6093384364956], [121.723022439134, 17.6093384364956], [121.723022439134, 17.6099929055511], [121.722335793626, 17.6099929055511], [121.722335793626, 17.6093384364956]]]]}, "properties": {"taskId": 4740, "taskX": 439415, "taskY": 288203, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.514282204796, 18.4118667620183], [121.519775368858, 18.4118667620183], [121.519775368858, 18.4170786554759], [121.514282204796, 18.4170786554759], [121.514282204796, 18.4118667620183]]]]}, "properties": {"taskId": 4748, "taskX": 54889, "taskY": 36179, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.721649148118, 17.6073750150926], [121.723022439134, 17.6073750150926], [121.723022439134, 17.6086839650673], [121.721649148118, 17.6086839650673], [121.721649148118, 17.6073750150926]]]]}, "properties": {"taskId": 4735, "taskX": 219707, "taskY": 144100, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.722335793626, 17.6086839650673], [121.723022439134, 17.6086839650673], [121.723022439134, 17.6093384364956], [121.722335793626, 17.6093384364956], [121.722335793626, 17.6086839650673]]]]}, "properties": {"taskId": 4739, "taskX": 439415, "taskY": 288202, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.228637673597, 18.5551361918876], [121.231384255628, 18.5551361918876], [121.231384255628, 18.5577399808773], [121.228637673597, 18.5577399808773], [121.228637673597, 18.5551361918876]]]]}, "properties": {"taskId": 4770, "taskX": 109674, "taskY": 72413, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.2293513352315], [121.915283181287, 18.2293513352315], [121.915283181287, 18.2397859676821], [121.904296853164, 18.2397859676821], [121.904296853164, 18.2293513352315]]]]}, "properties": {"taskId": 4741, "taskX": 27480, "taskY": 18072, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.7486866486513], [121.706542946949, 17.7486866486513], [121.706542946949, 17.7591497523209], [121.695556618826, 17.7591497523209], [121.695556618826, 17.7486866486513]]]]}, "properties": {"taskId": 4679, "taskX": 27461, "taskY": 18026, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 18.2006528695364], [121.659851052426, 18.2006528695364], [121.659851052426, 18.2032620163935], [121.657104470395, 18.2032620163935], [121.657104470395, 18.2006528695364]]]]}, "properties": {"taskId": 4750, "taskX": 109830, "taskY": 72277, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 17.8898868155249], [121.569213845411, 17.8898868155249], [121.569213845411, 17.8951143006479], [121.56372068135, 17.8951143006479], [121.56372068135, 17.8898868155249]]]]}, "properties": {"taskId": 4698, "taskX": 54898, "taskY": 36079, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.659851052426, 18.2006528695364], [121.662597634457, 18.2006528695364], [121.662597634457, 18.2032620163935], [121.659851052426, 18.2032620163935], [121.659851052426, 18.2006528695364]]]]}, "properties": {"taskId": 4752, "taskX": 109831, "taskY": 72277, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 18.1980436836125], [121.659851052426, 18.1980436836125], [121.659851052426, 18.2006528695364], [121.657104470395, 18.2006528695364], [121.657104470395, 18.1980436836125]]]]}, "properties": {"taskId": 4749, "taskX": 109830, "taskY": 72276, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 17.9787330924414], [121.569213845411, 17.9787330924414], [121.569213845411, 17.9839579543074], [121.56372068135, 17.9839579543074], [121.56372068135, 17.9787330924414]]]]}, "properties": {"taskId": 4393, "taskX": 54898, "taskY": 36096, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.228637673597, 18.5577399808773], [121.231384255628, 18.5577399808773], [121.231384255628, 18.5603437301429], [121.228637673597, 18.5603437301429], [121.228637673597, 18.5577399808773]]]]}, "properties": {"taskId": 4765, "taskX": 109674, "taskY": 72414, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.415405251689, 18.4691889012235], [121.41815183372, 18.4691889012235], [121.41815183372, 18.4717939984313], [121.415405251689, 18.4717939984313], [121.415405251689, 18.4691889012235]]]]}, "properties": {"taskId": 4445, "taskX": 109742, "taskY": 72380, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.426391579812, 18.4014425016654], [121.431884743873, 18.4014425016654], [121.431884743873, 18.4066547107354], [121.426391579812, 18.4066547107354], [121.426391579812, 18.4014425016654]]]]}, "properties": {"taskId": 4776, "taskX": 54873, "taskY": 36177, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 18.4170786554759], [121.343994118889, 18.4170786554759], [121.343994118889, 18.4275019687616], [121.333007790766, 18.4275019687616], [121.333007790766, 18.4170786554759]]]]}, "properties": {"taskId": 4301, "taskX": 27428, "taskY": 18090, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.234130837659, 18.5499284947547], [121.23687741969, 18.5499284947547], [121.23687741969, 18.5525323631785], [121.234130837659, 18.5525323631785], [121.234130837659, 18.5499284947547]]]]}, "properties": {"taskId": 4758, "taskX": 109676, "taskY": 72411, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.234130837659, 18.5421166512436], [121.23962400172, 18.5421166512436], [121.23962400172, 18.5473245866212], [121.234130837659, 18.5473245866212], [121.234130837659, 18.5421166512436]]]]}, "properties": {"taskId": 4753, "taskX": 54838, "taskY": 36204, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.234130837659, 18.5473245866212], [121.23687741969, 18.5473245866212], [121.23687741969, 18.5499284947547], [121.234130837659, 18.5499284947547], [121.234130837659, 18.5473245866212]]]]}, "properties": {"taskId": 4757, "taskX": 109676, "taskY": 72410, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.23687741969, 18.5499284947547], [121.23962400172, 18.5499284947547], [121.23962400172, 18.5525323631785], [121.23687741969, 18.5525323631785], [121.23687741969, 18.5499284947547]]]]}, "properties": {"taskId": 4760, "taskX": 109677, "taskY": 72411, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.23687741969, 18.5473245866212], [121.23962400172, 18.5473245866212], [121.23962400172, 18.5499284947547], [121.23687741969, 18.5499284947547], [121.23687741969, 18.5473245866212]]]]}, "properties": {"taskId": 4759, "taskX": 109677, "taskY": 72410, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.374206521227, 18.4144727284777], [121.376953103258, 18.4144727284777], [121.376953103258, 18.4170786554759], [121.374206521227, 18.4170786554759], [121.374206521227, 18.4144727284777]]]]}, "properties": {"taskId": 4596, "taskX": 109727, "taskY": 72359, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.223144509536, 18.5525323631785], [121.228637673597, 18.5525323631785], [121.228637673597, 18.5577399808773], [121.223144509536, 18.5577399808773], [121.223144509536, 18.5525323631785]]]]}, "properties": {"taskId": 4761, "taskX": 54836, "taskY": 36206, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.228637673597, 18.5525323631785], [121.231384255628, 18.5525323631785], [121.231384255628, 18.5551361918876], [121.228637673597, 18.5551361918876], [121.228637673597, 18.5525323631785]]]]}, "properties": {"taskId": 4769, "taskX": 109674, "taskY": 72412, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.231384255628, 18.5525323631785], [121.234130837659, 18.5525323631785], [121.234130837659, 18.5551361918876], [121.231384255628, 18.5551361918876], [121.231384255628, 18.5525323631785]]]]}, "properties": {"taskId": 4771, "taskX": 109675, "taskY": 72412, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.5497718295439], [121.78344724381, 17.5497718295439], [121.78344724381, 17.5602465002479], [121.772460915687, 17.5602465002479], [121.772460915687, 17.5497718295439]]]]}, "properties": {"taskId": 4778, "taskX": 27468, "taskY": 18007, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78344724381, 17.5497718295439], [121.794433571933, 17.5497718295439], [121.794433571933, 17.5602465002479], [121.78344724381, 17.5602465002479], [121.78344724381, 17.5497718295439]]]]}, "properties": {"taskId": 4780, "taskX": 27469, "taskY": 18007, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.338500954828, 18.4652811812351], [121.339874245843, 18.4652811812351], [121.339874245843, 18.4665837644539], [121.338500954828, 18.4665837644539], [121.338500954828, 18.4652811812351]]]]}, "properties": {"taskId": 4818, "taskX": 219428, "taskY": 144757, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.387939431381, 18.3753790908532], [121.398925759504, 18.3753790908532], [121.398925759504, 18.3858049281171], [121.387939431381, 18.3858049281171], [121.387939431381, 18.3753790908532]]]]}, "properties": {"taskId": 4487, "taskX": 27433, "taskY": 18086, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.6073750150926], [121.755981423503, 17.6073750150926], [121.755981423503, 17.6126107580436], [121.750488259441, 17.6126107580436], [121.750488259441, 17.6073750150926]]]]}, "properties": {"taskId": 4782, "taskX": 54932, "taskY": 36025, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.720962502611, 17.6086839650673], [121.721649148118, 17.6086839650673], [121.721649148118, 17.6093384364956], [121.720962502611, 17.6093384364956], [121.720962502611, 17.6086839650673]]]]}, "properties": {"taskId": 4803, "taskX": 439413, "taskY": 288202, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.755981423503, 17.602139120297], [121.761474587564, 17.602139120297], [121.761474587564, 17.6073750150926], [121.755981423503, 17.6073750150926], [121.755981423503, 17.602139120297]]]]}, "properties": {"taskId": 4783, "taskX": 54933, "taskY": 36024, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.720275857103, 17.6086839650673], [121.720962502611, 17.6086839650673], [121.720962502611, 17.6093384364956], [121.720275857103, 17.6093384364956], [121.720275857103, 17.6086839650673]]]]}, "properties": {"taskId": 4801, "taskX": 439412, "taskY": 288202, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.1876065493462], [121.657104470395, 18.1876065493462], [121.657104470395, 18.1928251945839], [121.651611306334, 18.1928251945839], [121.651611306334, 18.1876065493462]]]]}, "properties": {"taskId": 4805, "taskX": 54914, "taskY": 36136, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.341247536858, 18.461373372249], [121.342620827874, 18.461373372249], [121.342620827874, 18.462675985132], [121.341247536858, 18.462675985132], [121.341247536858, 18.461373372249]]]]}, "properties": {"taskId": 4813, "taskX": 219430, "taskY": 144754, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.342620827874, 18.462675985132], [121.343994118889, 18.462675985132], [121.343994118889, 18.4639785881275], [121.342620827874, 18.4639785881275], [121.342620827874, 18.462675985132]]]]}, "properties": {"taskId": 4816, "taskX": 219431, "taskY": 144755, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.230010964613, 18.5616455898776], [121.231384255628, 18.5616455898776], [121.231384255628, 18.5629474396796], [121.230010964613, 18.5629474396796], [121.230010964613, 18.5616455898776]]]]}, "properties": {"taskId": 4824, "taskX": 219349, "taskY": 144831, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.232757546643, 18.5577399808773], [121.234130837659, 18.5577399808773], [121.234130837659, 18.5590418604759], [121.232757546643, 18.5590418604759], [121.232757546643, 18.5577399808773]]]]}, "properties": {"taskId": 4791, "taskX": 219351, "taskY": 144828, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.720275857103, 17.6073750150926], [121.721649148118, 17.6073750150926], [121.721649148118, 17.6086839650673], [121.720275857103, 17.6086839650673], [121.720275857103, 17.6073750150926]]]]}, "properties": {"taskId": 4733, "taskX": 219706, "taskY": 144100, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.231384255628, 18.5590418604759], [121.232757546643, 18.5590418604759], [121.232757546643, 18.5603437301429], [121.231384255628, 18.5603437301429], [121.231384255628, 18.5590418604759]]]]}, "properties": {"taskId": 4790, "taskX": 219350, "taskY": 144829, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.231384255628, 18.5577399808773], [121.232757546643, 18.5577399808773], [121.232757546643, 18.5590418604759], [121.231384255628, 18.5590418604759], [121.231384255628, 18.5577399808773]]]]}, "properties": {"taskId": 4789, "taskX": 219350, "taskY": 144828, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.232757546643, 18.5590418604759], [121.234130837659, 18.5590418604759], [121.234130837659, 18.5603437301429], [121.232757546643, 18.5603437301429], [121.232757546643, 18.5590418604759]]]]}, "properties": {"taskId": 4792, "taskX": 219351, "taskY": 144829, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.827392556303, 17.9160227007731], [121.838378884426, 17.9160227007731], [121.838378884426, 17.9264759760701], [121.827392556303, 17.9264759760701], [121.827392556303, 17.9160227007731]]]]}, "properties": {"taskId": 4799, "taskX": 27473, "taskY": 18042, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 17.8951143006479], [121.838378884426, 17.8951143006479], [121.838378884426, 17.9160227007731], [121.81640622818, 17.9160227007731], [121.81640622818, 17.8951143006479]]]]}, "properties": {"taskId": 4793, "taskX": 13736, "taskY": 9020, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.232757546643, 18.5551361918876], [121.234130837659, 18.5551361918876], [121.234130837659, 18.5564380913477], [121.232757546643, 18.5564380913477], [121.232757546643, 18.5551361918876]]]]}, "properties": {"taskId": 4787, "taskX": 219351, "taskY": 144826, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.232757546643, 18.5564380913477], [121.234130837659, 18.5564380913477], [121.234130837659, 18.5577399808773], [121.232757546643, 18.5577399808773], [121.232757546643, 18.5564380913477]]]]}, "properties": {"taskId": 4788, "taskX": 219351, "taskY": 144827, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.721649148118, 17.6086839650673], [121.722335793626, 17.6086839650673], [121.722335793626, 17.6093384364956], [121.721649148118, 17.6093384364956], [121.721649148118, 17.6086839650673]]]]}, "properties": {"taskId": 4737, "taskX": 439414, "taskY": 288202, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 17.6858951936713], [121.503295876673, 17.6858951936713], [121.503295876673, 17.6911286542392], [121.497802712612, 17.6911286542392], [121.497802712612, 17.6858951936713]]]]}, "properties": {"taskId": 4421, "taskX": 54886, "taskY": 36040, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.354980447012, 18.426199089144], [121.356353738028, 18.426199089144], [121.356353738028, 18.4275019687616], [121.354980447012, 18.4275019687616], [121.354980447012, 18.426199089144]]]]}, "properties": {"taskId": 4842, "taskX": 219440, "taskY": 144727, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.712036111011, 17.619155223141], [121.713409402026, 17.619155223141], [121.713409402026, 17.6204640876755], [121.712036111011, 17.6204640876755], [121.712036111011, 17.619155223141]]]]}, "properties": {"taskId": 4870, "taskX": 219700, "taskY": 144109, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 18.3440977989279], [121.635131814149, 18.3440977989279], [121.635131814149, 18.349311741122], [121.629638650088, 18.349311741122], [121.629638650088, 18.3440977989279]]]]}, "properties": {"taskId": 4829, "taskX": 54910, "taskY": 36166, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.398925759504, 18.4691889012235], [121.409912087627, 18.4691889012235], [121.409912087627, 18.4796090526366], [121.398925759504, 18.4796090526366], [121.398925759504, 18.4691889012235]]]]}, "properties": {"taskId": 4438, "taskX": 27434, "taskY": 18095, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.720275857103, 17.6093384364956], [121.720962502611, 17.6093384364956], [121.720962502611, 17.6099929055511], [121.720275857103, 17.6099929055511], [121.720275857103, 17.6093384364956]]]]}, "properties": {"taskId": 4802, "taskX": 439412, "taskY": 288203, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.720962502611, 17.6093384364956], [121.721649148118, 17.6093384364956], [121.721649148118, 17.6099929055511], [121.720962502611, 17.6099929055511], [121.720962502611, 17.6093384364956]]]]}, "properties": {"taskId": 4804, "taskX": 439413, "taskY": 288203, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.426391579812, 18.3962301348468], [121.431884743873, 18.3962301348468], [121.431884743873, 18.4014425016654], [121.426391579812, 18.4014425016654], [121.426391579812, 18.3962301348468]]]]}, "properties": {"taskId": 4775, "taskX": 54873, "taskY": 36176, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 17.8114560854768], [121.668090798519, 17.8114560854768], [121.668090798519, 17.8166858758843], [121.662597634457, 17.8166858758843], [121.662597634457, 17.8114560854768]]]]}, "properties": {"taskId": 4809, "taskX": 54916, "taskY": 36064, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.231384255628, 18.5551361918876], [121.232757546643, 18.5551361918876], [121.232757546643, 18.5564380913477], [121.231384255628, 18.5564380913477], [121.231384255628, 18.5551361918876]]]]}, "properties": {"taskId": 4785, "taskX": 219350, "taskY": 144826, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.720275857103, 17.6492567037506], [121.723022439134, 17.6492567037506], [121.723022439134, 17.6518739861627], [121.720275857103, 17.6518739861627], [121.720275857103, 17.6492567037506]]]]}, "properties": {"taskId": 4683, "taskX": 109853, "taskY": 72066, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.415405251689, 18.4066547107354], [121.42089841575, 18.4066547107354], [121.42089841575, 18.4118667620183], [121.415405251689, 18.4118667620183], [121.415405251689, 18.4066547107354]]]]}, "properties": {"taskId": 4523, "taskX": 54871, "taskY": 36178, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 17.8219155128794], [121.684570290703, 17.8219155128794], [121.684570290703, 17.8323743264764], [121.67358396258, 17.8323743264764], [121.67358396258, 17.8219155128794]]]]}, "properties": {"taskId": 4264, "taskX": 27459, "taskY": 18033, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.3545255259514], [121.387939431381, 18.3545255259514], [121.387939431381, 18.3649526233622], [121.376953103258, 18.3649526233622], [121.376953103258, 18.3545255259514]]]]}, "properties": {"taskId": 4489, "taskX": 27432, "taskY": 18084, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.231384255628, 18.5616455898776], [121.232757546643, 18.5616455898776], [121.232757546643, 18.5629474396796], [121.231384255628, 18.5629474396796], [121.231384255628, 18.5616455898776]]]]}, "properties": {"taskId": 4826, "taskX": 219350, "taskY": 144831, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.357727029043, 18.4248961996558], [121.360473611074, 18.4248961996558], [121.360473611074, 18.4275019687616], [121.357727029043, 18.4275019687616], [121.357727029043, 18.4248961996558]]]]}, "properties": {"taskId": 4840, "taskX": 109721, "taskY": 72363, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 18.2919497303851], [121.497802712612, 18.2919497303851], [121.497802712612, 18.3023806008582], [121.486816384489, 18.3023806008582], [121.486816384489, 18.2919497303851]]]]}, "properties": {"taskId": 4849, "taskX": 27442, "taskY": 18078, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 18.3023806008582], [121.508789040735, 18.3023806008582], [121.508789040735, 18.3128108432568], [121.497802712612, 18.3128108432568], [121.497802712612, 18.3023806008582]]]]}, "properties": {"taskId": 4852, "taskX": 27443, "taskY": 18079, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 18.3128108432568], [121.640624978211, 18.3128108432568], [121.640624978211, 18.3232404572731], [121.629638650088, 18.3232404572731], [121.629638650088, 18.3128108432568]]]]}, "properties": {"taskId": 4855, "taskX": 27455, "taskY": 18080, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.354980447012, 18.4170786554759], [121.360473611074, 18.4170786554759], [121.360473611074, 18.4222903910698], [121.354980447012, 18.4222903910698], [121.354980447012, 18.4170786554759]]]]}, "properties": {"taskId": 4833, "taskX": 54860, "taskY": 36180, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.360473611074, 18.4222903910698], [121.365966775135, 18.4222903910698], [121.365966775135, 18.4275019687616], [121.360473611074, 18.4275019687616], [121.360473611074, 18.4222903910698]]]]}, "properties": {"taskId": 4836, "taskX": 54861, "taskY": 36181, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.23962400172, 18.5473245866212], [121.245117165782, 18.5473245866212], [121.245117165782, 18.5525323631785], [121.23962400172, 18.5525323631785], [121.23962400172, 18.5473245866212]]]]}, "properties": {"taskId": 4756, "taskX": 54839, "taskY": 36205, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.721649148118, 17.6093384364956], [121.722335793626, 17.6093384364956], [121.722335793626, 17.6099929055511], [121.721649148118, 17.6099929055511], [121.721649148118, 17.6093384364956]]]]}, "properties": {"taskId": 4738, "taskX": 439414, "taskY": 288203, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.668090798519, 17.8166858758843], [121.67358396258, 17.8166858758843], [121.67358396258, 17.8219155128794], [121.668090798519, 17.8219155128794], [121.668090798519, 17.8166858758843]]]]}, "properties": {"taskId": 4812, "taskX": 54917, "taskY": 36065, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.1928251945839], [121.657104470395, 18.1928251945839], [121.657104470395, 18.1980436836125], [121.651611306334, 18.1980436836125], [121.651611306334, 18.1928251945839]]]]}, "properties": {"taskId": 4806, "taskX": 54914, "taskY": 36137, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.4118667620183], [121.514282204796, 18.4118667620183], [121.514282204796, 18.4170786554759], [121.508789040735, 18.4170786554759], [121.508789040735, 18.4118667620183]]]]}, "properties": {"taskId": 4746, "taskX": 54888, "taskY": 36179, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.341247536858, 18.462675985132], [121.342620827874, 18.462675985132], [121.342620827874, 18.4639785881275], [121.341247536858, 18.4639785881275], [121.341247536858, 18.462675985132]]]]}, "properties": {"taskId": 4814, "taskX": 219430, "taskY": 144755, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.475830056365, 17.7172936692013], [121.481323220427, 17.7172936692013], [121.481323220427, 17.7225262143437], [121.475830056365, 17.7225262143437], [121.475830056365, 17.7172936692013]]]]}, "properties": {"taskId": 4029, "taskX": 54882, "taskY": 36046, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.635131814149, 18.3440977989279], [121.640624978211, 18.3440977989279], [121.640624978211, 18.349311741122], [121.635131814149, 18.349311741122], [121.635131814149, 18.3440977989279]]]]}, "properties": {"taskId": 4831, "taskX": 54911, "taskY": 36166, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.338500954828, 18.4639785881275], [121.339874245843, 18.4639785881275], [121.339874245843, 18.4652811812351], [121.338500954828, 18.4652811812351], [121.338500954828, 18.4639785881275]]]]}, "properties": {"taskId": 4817, "taskX": 219428, "taskY": 144756, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.339874245843, 18.4652811812351], [121.341247536858, 18.4652811812351], [121.341247536858, 18.4665837644539], [121.339874245843, 18.4665837644539], [121.339874245843, 18.4652811812351]]]]}, "properties": {"taskId": 4820, "taskX": 219429, "taskY": 144757, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.1354115139683], [121.67358396258, 18.1354115139683], [121.67358396258, 18.1458517685528], [121.662597634457, 18.1458517685528], [121.662597634457, 18.1354115139683]]]]}, "properties": {"taskId": 4414, "taskX": 27458, "taskY": 18063, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.503295876673, 17.6911286542392], [121.508789040735, 17.6911286542392], [121.508789040735, 17.6963619623342], [121.503295876673, 17.6963619623342], [121.503295876673, 17.6911286542392]]]]}, "properties": {"taskId": 4424, "taskX": 54887, "taskY": 36041, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.360473611074, 18.4170786554759], [121.365966775135, 18.4170786554759], [121.365966775135, 18.4222903910698], [121.360473611074, 18.4222903910698], [121.360473611074, 18.4170786554759]]]]}, "properties": {"taskId": 4835, "taskX": 54861, "taskY": 36180, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.339874245843, 18.4639785881275], [121.341247536858, 18.4639785881275], [121.341247536858, 18.4652811812351], [121.339874245843, 18.4652811812351], [121.339874245843, 18.4639785881275]]]]}, "properties": {"taskId": 4819, "taskX": 219429, "taskY": 144756, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.228637673597, 18.5616455898776], [121.230010964613, 18.5616455898776], [121.230010964613, 18.5629474396796], [121.228637673597, 18.5629474396796], [121.228637673597, 18.5616455898776]]]]}, "properties": {"taskId": 4822, "taskX": 219348, "taskY": 144831, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.356353738028, 18.426199089144], [121.357727029043, 18.426199089144], [121.357727029043, 18.4275019687616], [121.356353738028, 18.4275019687616], [121.356353738028, 18.426199089144]]]]}, "properties": {"taskId": 4844, "taskX": 219441, "taskY": 144727, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.915283181287, 18.2397859676821], [121.92626950941, 18.2397859676821], [121.92626950941, 18.2502199739071], [121.915283181287, 18.2502199739071], [121.915283181287, 18.2397859676821]]]]}, "properties": {"taskId": 4744, "taskX": 27481, "taskY": 18073, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.228637673597, 18.5603437301429], [121.230010964613, 18.5603437301429], [121.230010964613, 18.5616455898776], [121.228637673597, 18.5616455898776], [121.228637673597, 18.5603437301429]]]]}, "properties": {"taskId": 4821, "taskX": 219348, "taskY": 144830, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.2293513352315], [121.794433571933, 18.2293513352315], [121.794433571933, 18.2502199739071], [121.772460915687, 18.2502199739071], [121.772460915687, 18.2293513352315]]]]}, "properties": {"taskId": 4857, "taskX": 13734, "taskY": 9036, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 18.2502199739071], [121.81640622818, 18.2502199739071], [121.81640622818, 18.271086106447], [121.794433571933, 18.271086106447], [121.794433571933, 18.2502199739071]]]]}, "properties": {"taskId": 4860, "taskX": 13735, "taskY": 9037, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.824645974272, 18.2867340597168], [121.827392556303, 18.2867340597168], [121.827392556303, 18.2893419146663], [121.824645974272, 18.2893419146663], [121.824645974272, 18.2867340597168]]]]}, "properties": {"taskId": 4863, "taskX": 109891, "taskY": 72310, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.232757546643, 18.5616455898776], [121.234130837659, 18.5616455898776], [121.234130837659, 18.5629474396796], [121.232757546643, 18.5629474396796], [121.232757546643, 18.5616455898776]]]]}, "properties": {"taskId": 4828, "taskX": 219351, "taskY": 144831, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.821899392241, 18.2867340597168], [121.824645974272, 18.2867340597168], [121.824645974272, 18.2893419146663], [121.821899392241, 18.2893419146663], [121.821899392241, 18.2867340597168]]]]}, "properties": {"taskId": 4861, "taskX": 109890, "taskY": 72310, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.824645974272, 18.2893419146663], [121.827392556303, 18.2893419146663], [121.827392556303, 18.2919497303851], [121.824645974272, 18.2919497303851], [121.824645974272, 18.2893419146663]]]]}, "properties": {"taskId": 4864, "taskX": 109891, "taskY": 72311, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.354980447012, 18.4222903910698], [121.356353738028, 18.4222903910698], [121.356353738028, 18.4235933002975], [121.354980447012, 18.4235933002975], [121.354980447012, 18.4222903910698]]]]}, "properties": {"taskId": 4845, "taskX": 219440, "taskY": 144724, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.356353738028, 18.4222903910698], [121.357727029043, 18.4222903910698], [121.357727029043, 18.4235933002975], [121.356353738028, 18.4235933002975], [121.356353738028, 18.4222903910698]]]]}, "properties": {"taskId": 4847, "taskX": 219441, "taskY": 144724, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.354980447012, 18.4235933002975], [121.356353738028, 18.4235933002975], [121.356353738028, 18.4248961996558], [121.354980447012, 18.4248961996558], [121.354980447012, 18.4235933002975]]]]}, "properties": {"taskId": 4846, "taskX": 219440, "taskY": 144725, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.356353738028, 18.4235933002975], [121.357727029043, 18.4235933002975], [121.357727029043, 18.4248961996558], [121.356353738028, 18.4248961996558], [121.356353738028, 18.4235933002975]]]]}, "properties": {"taskId": 4848, "taskX": 219441, "taskY": 144725, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.713409402026, 17.619155223141], [121.714782693041, 17.619155223141], [121.714782693041, 17.6204640876755], [121.713409402026, 17.6204640876755], [121.713409402026, 17.619155223141]]]]}, "properties": {"taskId": 4872, "taskX": 219701, "taskY": 144109, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.712036111011, 17.6178463491106], [121.713409402026, 17.6178463491106], [121.713409402026, 17.619155223141], [121.712036111011, 17.619155223141], [121.712036111011, 17.6178463491106]]]]}, "properties": {"taskId": 4869, "taskX": 219700, "taskY": 144108, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 18.2919497303851], [121.508789040735, 18.2919497303851], [121.508789040735, 18.3023806008582], [121.497802712612, 18.3023806008582], [121.497802712612, 18.2919497303851]]]]}, "properties": {"taskId": 4851, "taskX": 27443, "taskY": 18078, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 18.3128108432568], [121.629638650088, 18.3128108432568], [121.629638650088, 18.3232404572731], [121.618652321965, 18.3232404572731], [121.618652321965, 18.3128108432568]]]]}, "properties": {"taskId": 4853, "taskX": 27454, "taskY": 18080, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 18.3023806008582], [121.497802712612, 18.3023806008582], [121.497802712612, 18.3128108432568], [121.486816384489, 18.3128108432568], [121.486816384489, 18.3023806008582]]]]}, "properties": {"taskId": 4850, "taskX": 27442, "taskY": 18079, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 18.3232404572731], [121.629638650088, 18.3232404572731], [121.629638650088, 18.3336694425994], [121.618652321965, 18.3336694425994], [121.618652321965, 18.3232404572731]]]]}, "properties": {"taskId": 4854, "taskX": 27454, "taskY": 18081, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 18.3232404572731], [121.640624978211, 18.3232404572731], [121.640624978211, 18.3336694425994], [121.629638650088, 18.3336694425994], [121.629638650088, 18.3232404572731]]]]}, "properties": {"taskId": 4856, "taskX": 27455, "taskY": 18081, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 18.2815182321454], [121.585693337596, 18.2815182321454], [121.585693337596, 18.2919497303851], [121.574707009473, 18.2919497303851], [121.574707009473, 18.2815182321454]]]]}, "properties": {"taskId": 4866, "taskX": 27450, "taskY": 18077, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 18.271086106447], [121.596679665719, 18.271086106447], [121.596679665719, 18.2815182321454], [121.585693337596, 18.2815182321454], [121.585693337596, 18.271086106447]]]]}, "properties": {"taskId": 4867, "taskX": 27451, "taskY": 18076, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 18.271086106447], [121.585693337596, 18.271086106447], [121.585693337596, 18.2815182321454], [121.574707009473, 18.2815182321454], [121.574707009473, 18.271086106447]]]]}, "properties": {"taskId": 4865, "taskX": 27450, "taskY": 18076, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.713409402026, 17.6178463491106], [121.714782693041, 17.6178463491106], [121.714782693041, 17.619155223141], [121.713409402026, 17.619155223141], [121.713409402026, 17.6178463491106]]]]}, "properties": {"taskId": 4871, "taskX": 219701, "taskY": 144108, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 17.7068281209488], [121.442871071996, 17.7068281209488], [121.442871071996, 17.7277586067781], [121.42089841575, 17.7277586067781], [121.42089841575, 17.7068281209488]]]]}, "properties": {"taskId": 4090, "taskX": 13718, "taskY": 9011, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.2606533535982], [121.519775368858, 18.2606533535982], [121.519775368858, 18.271086106447], [121.508789040735, 18.271086106447], [121.508789040735, 18.2606533535982]]]]}, "properties": {"taskId": 4902, "taskX": 27444, "taskY": 18075, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.6649598274553], [121.696929909841, 17.6649598274553], [121.696929909841, 17.6662683592496], [121.695556618826, 17.6662683592496], [121.695556618826, 17.6649598274553]]]]}, "properties": {"taskId": 4981, "taskX": 219688, "taskY": 144144, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.6662683592496], [121.696929909841, 17.6662683592496], [121.696929909841, 17.6675768815259], [121.695556618826, 17.6675768815259], [121.695556618826, 17.6662683592496]]]]}, "properties": {"taskId": 4982, "taskX": 219688, "taskY": 144145, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.372833230212, 17.857211546925], [121.374206521227, 17.857211546925], [121.374206521227, 17.8585186730187], [121.372833230212, 17.8585186730187], [121.372833230212, 17.857211546925]]]]}, "properties": {"taskId": 5004, "taskX": 219453, "taskY": 144291, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.5563185697281], [121.702423073903, 17.5563185697281], [121.702423073903, 17.5576278893685], [121.701049782888, 17.5576278893685], [121.701049782888, 17.5563185697281]]]]}, "properties": {"taskId": 5034, "taskX": 219692, "taskY": 144061, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.354980447012, 17.8219155128794], [121.365966775135, 17.8219155128794], [121.365966775135, 17.8323743264764], [121.354980447012, 17.8323743264764], [121.354980447012, 17.8219155128794]]]]}, "properties": {"taskId": 5030, "taskX": 27430, "taskY": 18033, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.6675768815259], [121.698303200857, 17.6675768815259], [121.698303200857, 17.6701938975225], [121.695556618826, 17.6701938975225], [121.695556618826, 17.6675768815259]]]]}, "properties": {"taskId": 4978, "taskX": 109844, "taskY": 72073, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.5550092406214], [121.702423073903, 17.5550092406214], [121.702423073903, 17.5563185697281], [121.701049782888, 17.5563185697281], [121.701049782888, 17.5550092406214]]]]}, "properties": {"taskId": 5033, "taskX": 219692, "taskY": 144060, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.702423073903, 17.5550092406214], [121.703796364918, 17.5550092406214], [121.703796364918, 17.5563185697281], [121.702423073903, 17.5563185697281], [121.702423073903, 17.5550092406214]]]]}, "properties": {"taskId": 5035, "taskX": 219693, "taskY": 144060, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.821899392241, 18.2893419146663], [121.824645974272, 18.2893419146663], [121.824645974272, 18.2919497303851], [121.821899392241, 18.2919497303851], [121.821899392241, 18.2893419146663]]]]}, "properties": {"taskId": 4862, "taskX": 109890, "taskY": 72311, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.342620827874, 18.461373372249], [121.343994118889, 18.461373372249], [121.343994118889, 18.462675985132], [121.342620827874, 18.462675985132], [121.342620827874, 18.461373372249]]]]}, "properties": {"taskId": 4815, "taskX": 219431, "taskY": 144754, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.365966775135, 17.8219155128794], [121.376953103258, 17.8219155128794], [121.376953103258, 17.8323743264764], [121.365966775135, 17.8323743264764], [121.365966775135, 17.8219155128794]]]]}, "properties": {"taskId": 5032, "taskX": 27431, "taskY": 18033, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 18.2815182321454], [121.821899392241, 18.2815182321454], [121.821899392241, 18.2867340597168], [121.81640622818, 18.2867340597168], [121.81640622818, 18.2815182321454]]]]}, "properties": {"taskId": 4689, "taskX": 54944, "taskY": 36154, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.223144509536, 18.5577399808773], [121.228637673597, 18.5577399808773], [121.228637673597, 18.5629474396796], [121.223144509536, 18.5629474396796], [121.223144509536, 18.5577399808773]]]]}, "properties": {"taskId": 4762, "taskX": 54836, "taskY": 36207, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.398925759504, 18.3962301348468], [121.409912087627, 18.3962301348468], [121.409912087627, 18.4066547107354], [121.398925759504, 18.4066547107354], [121.398925759504, 18.3962301348468]]]]}, "properties": {"taskId": 4501, "taskX": 27434, "taskY": 18088, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.365966775135, 17.8114560854768], [121.376953103258, 17.8114560854768], [121.376953103258, 17.8219155128794], [121.365966775135, 17.8219155128794], [121.365966775135, 17.8114560854768]]]]}, "properties": {"taskId": 5031, "taskX": 27431, "taskY": 18032, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.354980447012, 17.8428325259552], [121.360473611074, 17.8428325259552], [121.360473611074, 17.8480613953027], [121.354980447012, 17.8480613953027], [121.354980447012, 17.8428325259552]]]]}, "properties": {"taskId": 5025, "taskX": 54860, "taskY": 36070, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.360473611074, 17.8480613953027], [121.365966775135, 17.8480613953027], [121.365966775135, 17.8532901110035], [121.360473611074, 17.8532901110035], [121.360473611074, 17.8480613953027]]]]}, "properties": {"taskId": 5028, "taskX": 54861, "taskY": 36071, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.702423073903, 17.5576278893685], [121.703796364918, 17.5576278893685], [121.703796364918, 17.558937199542], [121.702423073903, 17.558937199542], [121.702423073903, 17.5576278893685]]]]}, "properties": {"taskId": 4951, "taskX": 219693, "taskY": 144062, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.5576278893685], [121.702423073903, 17.5576278893685], [121.702423073903, 17.558937199542], [121.701049782888, 17.558937199542], [121.701049782888, 17.5576278893685]]]]}, "properties": {"taskId": 4949, "taskX": 219692, "taskY": 144062, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 18.1667304070769], [121.497802712612, 18.1667304070769], [121.497802712612, 18.1771687903979], [121.486816384489, 18.1771687903979], [121.486816384489, 18.1667304070769]]]]}, "properties": {"taskId": 4725, "taskX": 27442, "taskY": 18066, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.230010964613, 18.5603437301429], [121.231384255628, 18.5603437301429], [121.231384255628, 18.5616455898776], [121.230010964613, 18.5616455898776], [121.230010964613, 18.5603437301429]]]]}, "properties": {"taskId": 4823, "taskX": 219349, "taskY": 144830, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.6961984237646], [121.695642449515, 17.6961984237646], [121.695642449515, 17.696280193068], [121.695556618826, 17.696280193068], [121.695556618826, 17.6961984237646]]]]}, "properties": {"taskId": 4625, "taskX": 3515008, "taskY": 2306686, "taskZoom": 22, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.231384255628, 18.5603437301429], [121.232757546643, 18.5603437301429], [121.232757546643, 18.5616455898776], [121.231384255628, 18.5616455898776], [121.231384255628, 18.5603437301429]]]]}, "properties": {"taskId": 4825, "taskX": 219350, "taskY": 144830, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.6204640876755], [121.70928952898, 17.6204640876755], [121.70928952898, 17.6230817882545], [121.706542946949, 17.6230817882545], [121.706542946949, 17.6204640876755]]]]}, "properties": {"taskId": 4874, "taskX": 109848, "taskY": 72055, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.70928952898, 17.6204640876755], [121.712036111011, 17.6204640876755], [121.712036111011, 17.6230817882545], [121.70928952898, 17.6230817882545], [121.70928952898, 17.6204640876755]]]]}, "properties": {"taskId": 4876, "taskX": 109849, "taskY": 72055, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.519775368858, 18.2293513352315], [121.530761696981, 18.2293513352315], [121.530761696981, 18.2397859676821], [121.519775368858, 18.2397859676821], [121.519775368858, 18.2293513352315]]]]}, "properties": {"taskId": 4907, "taskX": 27445, "taskY": 18072, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.3336694425994], [121.38244626732, 18.3336694425994], [121.38244626732, 18.3388836994076], [121.376953103258, 18.3388836994076], [121.376953103258, 18.3336694425994]]]]}, "properties": {"taskId": 4929, "taskX": 54864, "taskY": 36164, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.38244626732, 18.3388836994076], [121.387939431381, 18.3388836994076], [121.387939431381, 18.3440977989279], [121.38244626732, 18.3440977989279], [121.38244626732, 18.3388836994076]]]]}, "properties": {"taskId": 4932, "taskX": 54865, "taskY": 36165, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.70928952898, 17.6178463491106], [121.712036111011, 17.6178463491106], [121.712036111011, 17.6204640876755], [121.70928952898, 17.6204640876755], [121.70928952898, 17.6178463491106]]]]}, "properties": {"taskId": 4875, "taskX": 109849, "taskY": 72054, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.74499509538, 17.6806615806697], [121.750488259441, 17.6806615806697], [121.750488259441, 17.6858951936713], [121.74499509538, 17.6858951936713], [121.74499509538, 17.6806615806697]]]]}, "properties": {"taskId": 4272, "taskX": 54931, "taskY": 36039, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.3388836994076], [121.38244626732, 18.3388836994076], [121.38244626732, 18.3440977989279], [121.376953103258, 18.3440977989279], [121.376953103258, 18.3388836994076]]]]}, "properties": {"taskId": 4930, "taskX": 54864, "taskY": 36165, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.365966775135, 18.4275019687616], [121.376953103258, 18.4275019687616], [121.376953103258, 18.4379246502857], [121.365966775135, 18.4379246502857], [121.365966775135, 18.4275019687616]]]]}, "properties": {"taskId": 4456, "taskX": 27431, "taskY": 18091, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.2293513352315], [121.519775368858, 18.2293513352315], [121.519775368858, 18.2397859676821], [121.508789040735, 18.2397859676821], [121.508789040735, 18.2293513352315]]]]}, "properties": {"taskId": 4905, "taskX": 27444, "taskY": 18072, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.423644997781, 18.3962301348468], [121.426391579812, 18.3962301348468], [121.426391579812, 18.3988363379723], [121.423644997781, 18.3988363379723], [121.423644997781, 18.3962301348468]]]]}, "properties": {"taskId": 4887, "taskX": 109745, "taskY": 72352, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.398925759504, 18.3336694425994], [121.409912087627, 18.3336694425994], [121.409912087627, 18.3440977989279], [121.398925759504, 18.3440977989279], [121.398925759504, 18.3336694425994]]]]}, "properties": {"taskId": 4917, "taskX": 27434, "taskY": 18082, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.517028786827, 18.4092607561026], [121.519775368858, 18.4092607561026], [121.519775368858, 18.4118667620183], [121.517028786827, 18.4118667620183], [121.517028786827, 18.4092607561026]]]]}, "properties": {"taskId": 4896, "taskX": 109779, "taskY": 72357, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.409912087627, 18.3440977989279], [121.42089841575, 18.3440977989279], [121.42089841575, 18.3545255259514], [121.409912087627, 18.3545255259514], [121.409912087627, 18.3440977989279]]]]}, "properties": {"taskId": 4920, "taskX": 27435, "taskY": 18083, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.354980447012, 18.4248961996558], [121.356353738028, 18.4248961996558], [121.356353738028, 18.426199089144], [121.354980447012, 18.426199089144], [121.354980447012, 18.4248961996558]]]]}, "properties": {"taskId": 4841, "taskX": 219440, "taskY": 144726, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.3988363379723], [121.423644997781, 18.3988363379723], [121.423644997781, 18.4014425016654], [121.42089841575, 18.4014425016654], [121.42089841575, 18.3988363379723]]]]}, "properties": {"taskId": 4886, "taskX": 109744, "taskY": 72353, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.2502199739071], [121.519775368858, 18.2502199739071], [121.519775368858, 18.2606533535982], [121.508789040735, 18.2606533535982], [121.508789040735, 18.2502199739071]]]]}, "properties": {"taskId": 4901, "taskX": 27444, "taskY": 18074, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.519775368858, 18.2606533535982], [121.530761696981, 18.2606533535982], [121.530761696981, 18.271086106447], [121.519775368858, 18.271086106447], [121.519775368858, 18.2606533535982]]]]}, "properties": {"taskId": 4904, "taskX": 27445, "taskY": 18075, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.387939431381, 18.3128108432568], [121.398925759504, 18.3128108432568], [121.398925759504, 18.3232404572731], [121.387939431381, 18.3232404572731], [121.387939431381, 18.3128108432568]]]]}, "properties": {"taskId": 4923, "taskX": 27433, "taskY": 18080, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 18.1876065493462], [121.659851052426, 18.1876065493462], [121.659851052426, 18.1902158914888], [121.657104470395, 18.1902158914888], [121.657104470395, 18.1876065493462]]]]}, "properties": {"taskId": 4881, "taskX": 109830, "taskY": 72272, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.659851052426, 18.1902158914888], [121.662597634457, 18.1902158914888], [121.662597634457, 18.1928251945839], [121.659851052426, 18.1928251945839], [121.659851052426, 18.1902158914888]]]]}, "properties": {"taskId": 4884, "taskX": 109831, "taskY": 72273, "taskZoom": 17, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.659851052426, 18.1876065493462], [121.662597634457, 18.1876065493462], [121.662597634457, 18.1902158914888], [121.659851052426, 18.1902158914888], [121.659851052426, 18.1876065493462]]]]}, "properties": {"taskId": 4883, "taskX": 109831, "taskY": 72272, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.3128108432568], [121.387939431381, 18.3128108432568], [121.387939431381, 18.3232404572731], [121.376953103258, 18.3232404572731], [121.376953103258, 18.3128108432568]]]]}, "properties": {"taskId": 4921, "taskX": 27432, "taskY": 18080, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.387939431381, 18.3232404572731], [121.398925759504, 18.3232404572731], [121.398925759504, 18.3336694425994], [121.387939431381, 18.3336694425994], [121.387939431381, 18.3232404572731]]]]}, "properties": {"taskId": 4924, "taskX": 27433, "taskY": 18081, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.514282204796, 18.4014425016654], [121.517028786827, 18.4014425016654], [121.517028786827, 18.4040486259214], [121.514282204796, 18.4040486259214], [121.514282204796, 18.4014425016654]]]]}, "properties": {"taskId": 4889, "taskX": 109778, "taskY": 72354, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 18.1902158914888], [121.659851052426, 18.1902158914888], [121.659851052426, 18.1928251945839], [121.657104470395, 18.1928251945839], [121.657104470395, 18.1902158914888]]]]}, "properties": {"taskId": 4882, "taskX": 109830, "taskY": 72273, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.517028786827, 18.4014425016654], [121.519775368858, 18.4014425016654], [121.519775368858, 18.4040486259214], [121.517028786827, 18.4040486259214], [121.517028786827, 18.4014425016654]]]]}, "properties": {"taskId": 4891, "taskX": 109779, "taskY": 72354, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.3232404572731], [121.387939431381, 18.3232404572731], [121.387939431381, 18.3336694425994], [121.376953103258, 18.3336694425994], [121.376953103258, 18.3232404572731]]]]}, "properties": {"taskId": 4922, "taskX": 27432, "taskY": 18081, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.415405251689, 18.3805920882827], [121.42089841575, 18.3805920882827], [121.42089841575, 18.3858049281171], [121.415405251689, 18.3858049281171], [121.415405251689, 18.3805920882827]]]]}, "properties": {"taskId": 4912, "taskX": 54871, "taskY": 36173, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.356353738028, 18.4248961996558], [121.357727029043, 18.4248961996558], [121.357727029043, 18.426199089144], [121.356353738028, 18.426199089144], [121.356353738028, 18.4248961996558]]]]}, "properties": {"taskId": 4843, "taskX": 219441, "taskY": 144726, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.3440977989279], [121.387939431381, 18.3440977989279], [121.387939431381, 18.3545255259514], [121.376953103258, 18.3545255259514], [121.376953103258, 18.3440977989279]]]]}, "properties": {"taskId": 4914, "taskX": 27432, "taskY": 18083, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.387939431381, 18.3440977989279], [121.398925759504, 18.3440977989279], [121.398925759504, 18.3545255259514], [121.387939431381, 18.3545255259514], [121.387939431381, 18.3440977989279]]]]}, "properties": {"taskId": 4916, "taskX": 27433, "taskY": 18083, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.514282204796, 18.4092607561026], [121.517028786827, 18.4092607561026], [121.517028786827, 18.4118667620183], [121.514282204796, 18.4118667620183], [121.514282204796, 18.4092607561026]]]]}, "properties": {"taskId": 4894, "taskX": 109778, "taskY": 72357, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.409912087627, 18.3336694425994], [121.42089841575, 18.3336694425994], [121.42089841575, 18.3440977989279], [121.409912087627, 18.3440977989279], [121.409912087627, 18.3336694425994]]]]}, "properties": {"taskId": 4919, "taskX": 27435, "taskY": 18082, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.3962301348468], [121.423644997781, 18.3962301348468], [121.423644997781, 18.3988363379723], [121.42089841575, 18.3988363379723], [121.42089841575, 18.3962301348468]]]]}, "properties": {"taskId": 4885, "taskX": 109744, "taskY": 72352, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.423644997781, 18.3988363379723], [121.426391579812, 18.3988363379723], [121.426391579812, 18.4014425016654], [121.423644997781, 18.4014425016654], [121.423644997781, 18.3988363379723]]]]}, "properties": {"taskId": 4888, "taskX": 109745, "taskY": 72353, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 18.2502199739071], [121.552734353227, 18.2502199739071], [121.552734353227, 18.271086106447], [121.530761696981, 18.271086106447], [121.530761696981, 18.2502199739071]]]]}, "properties": {"taskId": 4900, "taskX": 13723, "taskY": 9037, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.519775368858, 18.2502199739071], [121.530761696981, 18.2502199739071], [121.530761696981, 18.2606533535982], [121.519775368858, 18.2606533535982], [121.519775368858, 18.2502199739071]]]]}, "properties": {"taskId": 4903, "taskX": 27445, "taskY": 18074, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.409912087627, 18.3805920882827], [121.415405251689, 18.3805920882827], [121.415405251689, 18.3858049281171], [121.409912087627, 18.3858049281171], [121.409912087627, 18.3805920882827]]]]}, "properties": {"taskId": 4910, "taskX": 54870, "taskY": 36173, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 17.8166858758843], [121.668090798519, 17.8166858758843], [121.668090798519, 17.8219155128794], [121.662597634457, 17.8219155128794], [121.662597634457, 17.8166858758843]]]]}, "properties": {"taskId": 4810, "taskX": 54916, "taskY": 36065, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.409912087627, 18.3753790908532], [121.415405251689, 18.3753790908532], [121.415405251689, 18.3805920882827], [121.409912087627, 18.3805920882827], [121.409912087627, 18.3753790908532]]]]}, "properties": {"taskId": 4909, "taskX": 54870, "taskY": 36172, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.372833230212, 17.8559044112242], [121.374206521227, 17.8559044112242], [121.374206521227, 17.857211546925], [121.372833230212, 17.857211546925], [121.372833230212, 17.8559044112242]]]]}, "properties": {"taskId": 5003, "taskX": 219453, "taskY": 144290, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.232757546643, 18.5603437301429], [121.234130837659, 18.5603437301429], [121.234130837659, 18.5616455898776], [121.232757546643, 18.5616455898776], [121.232757546643, 18.5603437301429]]]]}, "properties": {"taskId": 4827, "taskX": 219351, "taskY": 144830, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.231384255628, 18.5564380913477], [121.232757546643, 18.5564380913477], [121.232757546643, 18.5577399808773], [121.231384255628, 18.5577399808773], [121.231384255628, 18.5564380913477]]]]}, "properties": {"taskId": 4786, "taskX": 219350, "taskY": 144827, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 17.7068281209488], [121.497802712612, 17.7068281209488], [121.497802712612, 17.7172936692013], [121.486816384489, 17.7172936692013], [121.486816384489, 17.7068281209488]]]]}, "properties": {"taskId": 4933, "taskX": 27442, "taskY": 18022, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 17.7172936692013], [121.497802712612, 17.7172936692013], [121.497802712612, 17.7277586067781], [121.486816384489, 17.7277586067781], [121.486816384489, 17.7172936692013]]]]}, "properties": {"taskId": 4934, "taskX": 27442, "taskY": 18023, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.702423073903, 17.5563185697281], [121.703796364918, 17.5563185697281], [121.703796364918, 17.5576278893685], [121.702423073903, 17.5576278893685], [121.702423073903, 17.5563185697281]]]]}, "properties": {"taskId": 5036, "taskX": 219693, "taskY": 144061, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.631011941103, 17.7905353905046], [121.632385232119, 17.7905353905046], [121.632385232119, 17.7918430057868], [121.631011941103, 17.7918430057868], [121.631011941103, 17.7905353905046]]]]}, "properties": {"taskId": 5319, "taskX": 219641, "taskY": 144240, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 17.7918430057868], [121.631011941103, 17.7918430057868], [121.631011941103, 17.7931506114923], [121.629638650088, 17.7931506114923], [121.629638650088, 17.7918430057868]]]]}, "properties": {"taskId": 5318, "taskX": 219640, "taskY": 144241, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 17.7905353905046], [121.631011941103, 17.7905353905046], [121.631011941103, 17.7918430057868], [121.629638650088, 17.7918430057868], [121.629638650088, 17.7905353905046]]]]}, "properties": {"taskId": 5317, "taskX": 219640, "taskY": 144240, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.631011941103, 17.7918430057868], [121.632385232119, 17.7918430057868], [121.632385232119, 17.7931506114923], [121.631011941103, 17.7931506114923], [121.631011941103, 17.7918430057868]]]]}, "properties": {"taskId": 5320, "taskX": 219641, "taskY": 144241, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.6178463491106], [121.70928952898, 17.6178463491106], [121.70928952898, 17.6204640876755], [121.706542946949, 17.6204640876755], [121.706542946949, 17.6178463491106]]]]}, "properties": {"taskId": 4873, "taskX": 109848, "taskY": 72054, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.2397859676821], [121.519775368858, 18.2397859676821], [121.519775368858, 18.2502199739071], [121.508789040735, 18.2502199739071], [121.508789040735, 18.2397859676821]]]]}, "properties": {"taskId": 4906, "taskX": 27444, "taskY": 18073, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.409912087627, 18.3649526233622], [121.42089841575, 18.3649526233622], [121.42089841575, 18.3753790908532], [121.409912087627, 18.3753790908532], [121.409912087627, 18.3649526233622]]]]}, "properties": {"taskId": 4496, "taskX": 27435, "taskY": 18085, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.357727029043, 18.4222903910698], [121.360473611074, 18.4222903910698], [121.360473611074, 18.4248961996558], [121.357727029043, 18.4248961996558], [121.357727029043, 18.4222903910698]]]]}, "properties": {"taskId": 4839, "taskX": 109721, "taskY": 72362, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.245003049092], [121.909790017225, 18.245003049092], [121.909790017225, 18.2502199739071], [121.904296853164, 18.2502199739071], [121.904296853164, 18.245003049092]]]]}, "properties": {"taskId": 4926, "taskX": 54960, "taskY": 36147, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.7591497523209], [121.706542946949, 17.7591497523209], [121.706542946949, 17.7696122440617], [121.695556618826, 17.7696122440617], [121.695556618826, 17.7591497523209]]]]}, "properties": {"taskId": 4680, "taskX": 27461, "taskY": 18027, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.69589994158, 17.696034885046], [121.696243264334, 17.696034885046], [121.696243264334, 17.6963619623342], [121.69589994158, 17.6963619623342], [121.69589994158, 17.696034885046]]]]}, "properties": {"taskId": 4620, "taskX": 878753, "taskY": 576671, "taskZoom": 20, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.7382229333659], [121.734008767257, 17.7382229333659], [121.734008767257, 17.743454867441], [121.728515603195, 17.743454867441], [121.728515603195, 17.7382229333659]]]]}, "properties": {"taskId": 4985, "taskX": 54928, "taskY": 36050, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.743454867441], [121.739501931318, 17.743454867441], [121.739501931318, 17.7486866486513], [121.734008767257, 17.7486866486513], [121.734008767257, 17.743454867441]]]]}, "properties": {"taskId": 4988, "taskX": 54929, "taskY": 36051, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.342620827874, 18.4639785881275], [121.343994118889, 18.4639785881275], [121.343994118889, 18.4652811812351], [121.342620827874, 18.4652811812351], [121.342620827874, 18.4639785881275]]]]}, "properties": {"taskId": 4939, "taskX": 219431, "taskY": 144756, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.743454867441], [121.734008767257, 17.743454867441], [121.734008767257, 17.7486866486513], [121.728515603195, 17.7486866486513], [121.728515603195, 17.743454867441]]]]}, "properties": {"taskId": 4986, "taskX": 54928, "taskY": 36051, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.755981423503, 17.6073750150926], [121.761474587564, 17.6073750150926], [121.761474587564, 17.6126107580436], [121.755981423503, 17.6126107580436], [121.755981423503, 17.6073750150926]]]]}, "properties": {"taskId": 4784, "taskX": 54933, "taskY": 36025, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.5811940234556], [121.772460915687, 17.5811940234556], [121.772460915687, 17.5916668753295], [121.761474587564, 17.5916668753295], [121.761474587564, 17.5811940234556]]]]}, "properties": {"taskId": 4731, "taskX": 27467, "taskY": 18010, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.9264759760701], [121.717529275072, 17.9264759760701], [121.717529275072, 17.9369286344414], [121.706542946949, 17.9369286344414], [121.706542946949, 17.9264759760701]]]]}, "properties": {"taskId": 4998, "taskX": 27462, "taskY": 18043, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.374206521227, 17.8506757723614], [121.375579812243, 17.8506757723614], [121.375579812243, 17.8519829464848], [121.374206521227, 17.8519829464848], [121.374206521227, 17.8506757723614]]]]}, "properties": {"taskId": 4969, "taskX": 219454, "taskY": 144286, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.375579812243, 17.8519829464848], [121.376953103258, 17.8519829464848], [121.376953103258, 17.8532901110035], [121.375579812243, 17.8532901110035], [121.375579812243, 17.8519829464848]]]]}, "properties": {"taskId": 4972, "taskX": 219455, "taskY": 144287, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.341247536858, 18.4639785881275], [121.342620827874, 18.4639785881275], [121.342620827874, 18.4652811812351], [121.341247536858, 18.4652811812351], [121.341247536858, 18.4639785881275]]]]}, "properties": {"taskId": 4937, "taskX": 219430, "taskY": 144756, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.342620827874, 18.4652811812351], [121.343994118889, 18.4652811812351], [121.343994118889, 18.4665837644539], [121.342620827874, 18.4665837644539], [121.342620827874, 18.4652811812351]]]]}, "properties": {"taskId": 4940, "taskX": 219431, "taskY": 144757, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.9160227007731], [121.728515603195, 17.9160227007731], [121.728515603195, 17.9264759760701], [121.717529275072, 17.9264759760701], [121.717529275072, 17.9160227007731]]]]}, "properties": {"taskId": 4999, "taskX": 27463, "taskY": 18042, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.375579812243, 17.8506757723614], [121.376953103258, 17.8506757723614], [121.376953103258, 17.8519829464848], [121.375579812243, 17.8519829464848], [121.375579812243, 17.8506757723614]]]]}, "properties": {"taskId": 4971, "taskX": 219455, "taskY": 144286, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.9160227007731], [121.717529275072, 17.9160227007731], [121.717529275072, 17.9264759760701], [121.706542946949, 17.9264759760701], [121.706542946949, 17.9160227007731]]]]}, "properties": {"taskId": 4997, "taskX": 27462, "taskY": 18042, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.9264759760701], [121.728515603195, 17.9264759760701], [121.728515603195, 17.9369286344414], [121.717529275072, 17.9369286344414], [121.717529275072, 17.9264759760701]]]]}, "properties": {"taskId": 5000, "taskX": 27463, "taskY": 18043, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 17.8114560854768], [121.354980447012, 17.8114560854768], [121.354980447012, 17.8323743264764], [121.333007790766, 17.8323743264764], [121.333007790766, 17.8114560854768]]]]}, "properties": {"taskId": 4953, "taskX": 13714, "taskY": 9016, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 18.0414212187671], [121.717529275072, 18.0414212187671], [121.717529275072, 18.0518670704211], [121.706542946949, 18.0518670704211], [121.706542946949, 18.0414212187671]]]]}, "properties": {"taskId": 5017, "taskX": 27462, "taskY": 18054, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 18.0518670704211], [121.728515603195, 18.0518670704211], [121.728515603195, 18.0623123014185], [121.717529275072, 18.0623123014185], [121.717529275072, 18.0518670704211]]]]}, "properties": {"taskId": 5020, "taskX": 27463, "taskY": 18055, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.365966775135, 17.8480613953027], [121.368713357166, 17.8480613953027], [121.368713357166, 17.8506757723614], [121.365966775135, 17.8506757723614], [121.365966775135, 17.8480613953027]]]]}, "properties": {"taskId": 5021, "taskX": 109724, "taskY": 72142, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.368713357166, 17.8506757723614], [121.371459939197, 17.8506757723614], [121.371459939197, 17.8532901110035], [121.368713357166, 17.8532901110035], [121.368713357166, 17.8506757723614]]]]}, "properties": {"taskId": 5024, "taskX": 109725, "taskY": 72143, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.341247536858, 18.4652811812351], [121.342620827874, 18.4652811812351], [121.342620827874, 18.4665837644539], [121.341247536858, 18.4665837644539], [121.341247536858, 18.4652811812351]]]]}, "properties": {"taskId": 4938, "taskX": 219430, "taskY": 144757, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.387939431381, 18.4275019687616], [121.398925759504, 18.4275019687616], [121.398925759504, 18.4379246502857], [121.387939431381, 18.4379246502857], [121.387939431381, 18.4275019687616]]]]}, "properties": {"taskId": 4452, "taskX": 27433, "taskY": 18091, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.398925759504, 18.4379246502857], [121.409912087627, 18.4379246502857], [121.409912087627, 18.4483466997417], [121.398925759504, 18.4483466997417], [121.398925759504, 18.4379246502857]]]]}, "properties": {"taskId": 4941, "taskX": 27434, "taskY": 18092, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.409912087627, 18.4379246502857], [121.42089841575, 18.4379246502857], [121.42089841575, 18.4483466997417], [121.409912087627, 18.4483466997417], [121.409912087627, 18.4379246502857]]]]}, "properties": {"taskId": 4943, "taskX": 27435, "taskY": 18092, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.703796364918, 17.5576278893685], [121.706542946949, 17.5576278893685], [121.706542946949, 17.5602465002479], [121.703796364918, 17.5602465002479], [121.703796364918, 17.5576278893685]]]]}, "properties": {"taskId": 4948, "taskX": 109847, "taskY": 72031, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.6701938975225], [121.701049782888, 17.6701938975225], [121.701049782888, 17.6754278152737], [121.695556618826, 17.6754278152737], [121.695556618826, 17.6701938975225]]]]}, "properties": {"taskId": 4974, "taskX": 54922, "taskY": 36037, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.6701938975225], [121.706542946949, 17.6701938975225], [121.706542946949, 17.6754278152737], [121.701049782888, 17.6754278152737], [121.701049782888, 17.6701938975225]]]]}, "properties": {"taskId": 4976, "taskX": 54923, "taskY": 36037, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.398925759504, 18.4483466997417], [121.409912087627, 18.4483466997417], [121.409912087627, 18.4587681168231], [121.398925759504, 18.4587681168231], [121.398925759504, 18.4483466997417]]]]}, "properties": {"taskId": 4942, "taskX": 27434, "taskY": 18093, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.409912087627, 18.4483466997417], [121.42089841575, 18.4483466997417], [121.42089841575, 18.4587681168231], [121.409912087627, 18.4587681168231], [121.409912087627, 18.4483466997417]]]]}, "properties": {"taskId": 4944, "taskX": 27435, "taskY": 18093, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.703796364918, 17.5550092406214], [121.706542946949, 17.5550092406214], [121.706542946949, 17.5576278893685], [121.703796364918, 17.5576278893685], [121.703796364918, 17.5550092406214]]]]}, "properties": {"taskId": 4947, "taskX": 109847, "taskY": 72030, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.365966775135, 17.8428325259552], [121.371459939197, 17.8428325259552], [121.371459939197, 17.8480613953027], [121.365966775135, 17.8480613953027], [121.365966775135, 17.8428325259552]]]]}, "properties": {"taskId": 4961, "taskX": 54862, "taskY": 36070, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.371459939197, 17.8428325259552], [121.376953103258, 17.8428325259552], [121.376953103258, 17.8480613953027], [121.371459939197, 17.8480613953027], [121.371459939197, 17.8428325259552]]]]}, "properties": {"taskId": 4963, "taskX": 54863, "taskY": 36070, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.70036313738, 17.6937453273483], [121.701049782888, 17.6937453273483], [121.701049782888, 17.694399489669], [121.70036313738, 17.694399489669], [121.70036313738, 17.6937453273483]]]]}, "properties": {"taskId": 4643, "taskX": 439383, "taskY": 288332, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.6649598274553], [121.706542946949, 17.6649598274553], [121.706542946949, 17.6701938975225], [121.701049782888, 17.6701938975225], [121.701049782888, 17.6649598274553]]]]}, "properties": {"taskId": 4975, "taskX": 54923, "taskY": 36036, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.558937199542], [121.702423073903, 17.558937199542], [121.702423073903, 17.5602465002479], [121.701049782888, 17.5602465002479], [121.701049782888, 17.558937199542]]]]}, "properties": {"taskId": 4950, "taskX": 219692, "taskY": 144063, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.702423073903, 17.558937199542], [121.703796364918, 17.558937199542], [121.703796364918, 17.5602465002479], [121.702423073903, 17.5602465002479], [121.702423073903, 17.558937199542]]]]}, "properties": {"taskId": 4952, "taskX": 219693, "taskY": 144063, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.8951143006479], [121.706542946949, 17.8951143006479], [121.706542946949, 17.9160227007731], [121.684570290703, 17.9160227007731], [121.684570290703, 17.8951143006479]]]]}, "properties": {"taskId": 4993, "taskX": 13730, "taskY": 9020, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.354980447012, 17.8480613953027], [121.360473611074, 17.8480613953027], [121.360473611074, 17.8532901110035], [121.354980447012, 17.8532901110035], [121.354980447012, 17.8480613953027]]]]}, "properties": {"taskId": 5026, "taskX": 54860, "taskY": 36071, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.5602465002479], [121.81640622818, 17.5602465002479], [121.81640622818, 17.5811940234556], [121.794433571933, 17.5811940234556], [121.794433571933, 17.5602465002479]]]]}, "properties": {"taskId": 5007, "taskX": 13735, "taskY": 9004, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.371459939197, 17.8506757723614], [121.374206521227, 17.8506757723614], [121.374206521227, 17.8532901110035], [121.371459939197, 17.8532901110035], [121.371459939197, 17.8506757723614]]]]}, "properties": {"taskId": 4966, "taskX": 109726, "taskY": 72143, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.371459939197, 17.8480613953027], [121.374206521227, 17.8480613953027], [121.374206521227, 17.8506757723614], [121.371459939197, 17.8506757723614], [121.371459939197, 17.8480613953027]]]]}, "properties": {"taskId": 4965, "taskX": 109726, "taskY": 72142, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.374206521227, 17.8480613953027], [121.376953103258, 17.8480613953027], [121.376953103258, 17.8506757723614], [121.374206521227, 17.8506757723614], [121.374206521227, 17.8480613953027]]]]}, "properties": {"taskId": 4967, "taskX": 109727, "taskY": 72142, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698303200857, 17.6649598274553], [121.701049782888, 17.6649598274553], [121.701049782888, 17.6675768815259], [121.698303200857, 17.6675768815259], [121.698303200857, 17.6649598274553]]]]}, "properties": {"taskId": 4979, "taskX": 109845, "taskY": 72072, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.7382229333659], [121.736755349288, 17.7382229333659], [121.736755349288, 17.7408389195091], [121.734008767257, 17.7408389195091], [121.734008767257, 17.7382229333659]]]]}, "properties": {"taskId": 4989, "taskX": 109858, "taskY": 72100, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.736755349288, 17.7408389195091], [121.739501931318, 17.7408389195091], [121.739501931318, 17.743454867441], [121.736755349288, 17.743454867441], [121.736755349288, 17.7408389195091]]]]}, "properties": {"taskId": 4992, "taskX": 109859, "taskY": 72101, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.365966775135, 17.8323743264764], [121.376953103258, 17.8323743264764], [121.376953103258, 17.8428325259552], [121.365966775135, 17.8428325259552], [121.365966775135, 17.8323743264764]]]]}, "properties": {"taskId": 4959, "taskX": 27431, "taskY": 18034, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.699676491872, 17.6957078071621], [121.70036313738, 17.6957078071621], [121.70036313738, 17.6963619623342], [121.699676491872, 17.6963619623342], [121.699676491872, 17.6957078071621]]]]}, "properties": {"taskId": 4638, "taskX": 439382, "taskY": 288335, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 18.0518670704211], [121.717529275072, 18.0518670704211], [121.717529275072, 18.0623123014185], [121.706542946949, 18.0623123014185], [121.706542946949, 18.0518670704211]]]]}, "properties": {"taskId": 5018, "taskX": 27462, "taskY": 18055, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.368713357166, 17.8480613953027], [121.371459939197, 17.8480613953027], [121.371459939197, 17.8506757723614], [121.368713357166, 17.8506757723614], [121.368713357166, 17.8480613953027]]]]}, "properties": {"taskId": 5023, "taskX": 109725, "taskY": 72142, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.354980447012, 17.8323743264764], [121.365966775135, 17.8323743264764], [121.365966775135, 17.8428325259552], [121.354980447012, 17.8428325259552], [121.354980447012, 17.8323743264764]]]]}, "properties": {"taskId": 4957, "taskX": 27430, "taskY": 18034, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.736755349288, 17.7382229333659], [121.739501931318, 17.7382229333659], [121.739501931318, 17.7408389195091], [121.736755349288, 17.7408389195091], [121.736755349288, 17.7382229333659]]]]}, "properties": {"taskId": 4991, "taskX": 109859, "taskY": 72100, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698303200857, 17.6675768815259], [121.701049782888, 17.6675768815259], [121.701049782888, 17.6701938975225], [121.698303200857, 17.6701938975225], [121.698303200857, 17.6675768815259]]]]}, "properties": {"taskId": 4980, "taskX": 109845, "taskY": 72073, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.5811940234556], [121.81640622818, 17.5811940234556], [121.81640622818, 17.602139120297], [121.794433571933, 17.602139120297], [121.794433571933, 17.5811940234556]]]]}, "properties": {"taskId": 5008, "taskX": 13735, "taskY": 9005, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.374206521227, 17.8519829464848], [121.375579812243, 17.8519829464848], [121.375579812243, 17.8532901110035], [121.374206521227, 17.8532901110035], [121.374206521227, 17.8519829464848]]]]}, "properties": {"taskId": 4970, "taskX": 219454, "taskY": 144287, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.7408389195091], [121.736755349288, 17.7408389195091], [121.736755349288, 17.743454867441], [121.734008767257, 17.743454867441], [121.734008767257, 17.7408389195091]]]]}, "properties": {"taskId": 4990, "taskX": 109858, "taskY": 72101, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.5811940234556], [121.794433571933, 17.5811940234556], [121.794433571933, 17.602139120297], [121.772460915687, 17.602139120297], [121.772460915687, 17.5811940234556]]]]}, "properties": {"taskId": 5006, "taskX": 13734, "taskY": 9005, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.696929909841, 17.6649598274553], [121.698303200857, 17.6649598274553], [121.698303200857, 17.6662683592496], [121.696929909841, 17.6662683592496], [121.696929909841, 17.6649598274553]]]]}, "properties": {"taskId": 4983, "taskX": 219689, "taskY": 144144, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.503295876673, 17.7172936692013], [121.508789040735, 17.7172936692013], [121.508789040735, 17.7225262143437], [121.503295876673, 17.7225262143437], [121.503295876673, 17.7172936692013]]]]}, "properties": {"taskId": 5011, "taskX": 54887, "taskY": 36046, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.696929909841, 17.6662683592496], [121.698303200857, 17.6662683592496], [121.698303200857, 17.6675768815259], [121.696929909841, 17.6675768815259], [121.696929909841, 17.6662683592496]]]]}, "properties": {"taskId": 4984, "taskX": 219689, "taskY": 144145, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.503295876673, 17.7251424296519], [121.506042458704, 17.7251424296519], [121.506042458704, 17.7277586067781], [121.503295876673, 17.7277586067781], [121.503295876673, 17.7251424296519]]]]}, "properties": {"taskId": 5014, "taskX": 109774, "taskY": 72095, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 17.7172936692013], [121.503295876673, 17.7172936692013], [121.503295876673, 17.7225262143437], [121.497802712612, 17.7225262143437], [121.497802712612, 17.7172936692013]]]]}, "properties": {"taskId": 5009, "taskX": 54886, "taskY": 36046, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 17.7225262143437], [121.503295876673, 17.7225262143437], [121.503295876673, 17.7277586067781], [121.497802712612, 17.7277586067781], [121.497802712612, 17.7225262143437]]]]}, "properties": {"taskId": 5010, "taskX": 54886, "taskY": 36047, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.506042458704, 17.7225262143437], [121.508789040735, 17.7225262143437], [121.508789040735, 17.7251424296519], [121.506042458704, 17.7251424296519], [121.506042458704, 17.7225262143437]]]]}, "properties": {"taskId": 5015, "taskX": 109775, "taskY": 72094, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.506042458704, 17.7251424296519], [121.508789040735, 17.7251424296519], [121.508789040735, 17.7277586067781], [121.506042458704, 17.7277586067781], [121.506042458704, 17.7251424296519]]]]}, "properties": {"taskId": 5016, "taskX": 109775, "taskY": 72095, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 18.0414212187671], [121.728515603195, 18.0414212187671], [121.728515603195, 18.0518670704211], [121.717529275072, 18.0518670704211], [121.717529275072, 18.0414212187671]]]]}, "properties": {"taskId": 5019, "taskX": 27463, "taskY": 18054, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.365966775135, 17.8506757723614], [121.368713357166, 17.8506757723614], [121.368713357166, 17.8532901110035], [121.365966775135, 17.8532901110035], [121.365966775135, 17.8506757723614]]]]}, "properties": {"taskId": 5022, "taskX": 109724, "taskY": 72143, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.503295876673, 17.7225262143437], [121.506042458704, 17.7225262143437], [121.506042458704, 17.7251424296519], [121.503295876673, 17.7251424296519], [121.503295876673, 17.7225262143437]]]]}, "properties": {"taskId": 5013, "taskX": 109774, "taskY": 72094, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.2084801928881], [121.486816384489, 18.2084801928881], [121.486816384489, 18.2293513352315], [121.464843728242, 18.2293513352315], [121.464843728242, 18.2084801928881]]]]}, "properties": {"taskId": 4878, "taskX": 13720, "taskY": 9035, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 17.9160227007731], [121.827392556303, 17.9160227007731], [121.827392556303, 17.9264759760701], [121.81640622818, 17.9264759760701], [121.81640622818, 17.9160227007731]]]]}, "properties": {"taskId": 4797, "taskX": 27472, "taskY": 18042, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.827392556303, 17.9264759760701], [121.838378884426, 17.9264759760701], [121.838378884426, 17.9369286344414], [121.827392556303, 17.9369286344414], [121.827392556303, 17.9264759760701]]]]}, "properties": {"taskId": 4800, "taskX": 27473, "taskY": 18043, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.805419900056, 17.9264759760701], [121.81640622818, 17.9264759760701], [121.81640622818, 17.9369286344414], [121.805419900056, 17.9369286344414], [121.805419900056, 17.9264759760701]]]]}, "properties": {"taskId": 3020, "taskX": 27471, "taskY": 18043, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 17.9160227007731], [121.860351540672, 17.9160227007731], [121.860351540672, 17.9369286344414], [121.838378884426, 17.9369286344414], [121.838378884426, 17.9160227007731]]]]}, "properties": {"taskId": 4796, "taskX": 13737, "taskY": 9021, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 17.9264759760701], [121.827392556303, 17.9264759760701], [121.827392556303, 17.9369286344414], [121.81640622818, 17.9369286344414], [121.81640622818, 17.9264759760701]]]]}, "properties": {"taskId": 4798, "taskX": 27472, "taskY": 18043, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.448364236058, 18.4431357540414], [121.453857400119, 18.4431357540414], [121.453857400119, 18.4483466997417], [121.448364236058, 18.4483466997417], [121.448364236058, 18.4431357540414]]]]}, "properties": {"taskId": 4672, "taskX": 54877, "taskY": 36185, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.4275019687616], [121.475830056365, 18.4275019687616], [121.475830056365, 18.4379246502857], [121.464843728242, 18.4379246502857], [121.464843728242, 18.4275019687616]]]]}, "properties": {"taskId": 5038, "taskX": 27440, "taskY": 18091, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.475830056365, 18.4275019687616], [121.486816384489, 18.4275019687616], [121.486816384489, 18.4379246502857], [121.475830056365, 18.4379246502857], [121.475830056365, 18.4275019687616]]]]}, "properties": {"taskId": 5040, "taskX": 27441, "taskY": 18091, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 17.9787330924414], [121.464843728242, 17.9787330924414], [121.464843728242, 17.9996316117937], [121.442871071996, 17.9996316117937], [121.442871071996, 17.9787330924414]]]]}, "properties": {"taskId": 2851, "taskX": 13719, "taskY": 9024, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.541748025104, 18.3962301348468], [121.552734353227, 18.3962301348468], [121.552734353227, 18.4066547107354], [121.541748025104, 18.4066547107354], [121.541748025104, 18.3962301348468]]]]}, "properties": {"taskId": 4299, "taskX": 27447, "taskY": 18088, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.387939431381, 18.3649526233622], [121.398925759504, 18.3649526233622], [121.398925759504, 18.3753790908532], [121.387939431381, 18.3753790908532], [121.387939431381, 18.3649526233622]]]]}, "properties": {"taskId": 4492, "taskX": 27433, "taskY": 18085, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.4170786554759], [121.475830056365, 18.4170786554759], [121.475830056365, 18.4275019687616], [121.464843728242, 18.4275019687616], [121.464843728242, 18.4170786554759]]]]}, "properties": {"taskId": 5037, "taskX": 27440, "taskY": 18090, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.6361697211924], [121.731262185226, 17.6361697211924], [121.731262185226, 17.638787193754], [121.728515603195, 17.638787193754], [121.728515603195, 17.6361697211924]]]]}, "properties": {"taskId": 5042, "taskX": 109856, "taskY": 72061, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.731262185226, 17.6361697211924], [121.734008767257, 17.6361697211924], [121.734008767257, 17.638787193754], [121.731262185226, 17.638787193754], [121.731262185226, 17.6361697211924]]]]}, "properties": {"taskId": 5044, "taskX": 109857, "taskY": 72061, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.909790017225, 18.245003049092], [121.915283181287, 18.245003049092], [121.915283181287, 18.2502199739071], [121.909790017225, 18.2502199739071], [121.909790017225, 18.245003049092]]]]}, "properties": {"taskId": 4928, "taskX": 54961, "taskY": 36147, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.6335522106155], [121.731262185226, 17.6335522106155], [121.731262185226, 17.6361697211924], [121.728515603195, 17.6361697211924], [121.728515603195, 17.6335522106155]]]]}, "properties": {"taskId": 5041, "taskX": 109856, "taskY": 72060, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.731262185226, 17.6335522106155], [121.734008767257, 17.6335522106155], [121.734008767257, 17.6361697211924], [121.731262185226, 17.6361697211924], [121.731262185226, 17.6335522106155]]]]}, "properties": {"taskId": 5043, "taskX": 109857, "taskY": 72060, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.699676491872, 17.694399489669], [121.70036313738, 17.694399489669], [121.70036313738, 17.695053649607], [121.699676491872, 17.695053649607], [121.699676491872, 17.694399489669]]]]}, "properties": {"taskId": 4642, "taskX": 439382, "taskY": 288333, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698303200857, 17.6911286542392], [121.701049782888, 17.6911286542392], [121.701049782888, 17.6937453273483], [121.698303200857, 17.6937453273483], [121.698303200857, 17.6911286542392]]]]}, "properties": {"taskId": 4607, "taskX": 109845, "taskY": 72082, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698989846365, 17.6937453273483], [121.699676491872, 17.6937453273483], [121.699676491872, 17.694399489669], [121.698989846365, 17.694399489669], [121.698989846365, 17.6937453273483]]]]}, "properties": {"taskId": 4647, "taskX": 439381, "taskY": 288332, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.1876065493462], [121.486816384489, 18.1876065493462], [121.486816384489, 18.2084801928881], [121.464843728242, 18.2084801928881], [121.464843728242, 18.1876065493462]]]]}, "properties": {"taskId": 4877, "taskX": 13720, "taskY": 9034, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.6924369955588], [121.707916237965, 17.6924369955588], [121.707916237965, 17.6937453273483], [121.706542946949, 17.6937453273483], [121.706542946949, 17.6924369955588]]]]}, "properties": {"taskId": 5050, "taskX": 219696, "taskY": 144165, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.707916237965, 17.6911286542392], [121.70928952898, 17.6911286542392], [121.70928952898, 17.6924369955588], [121.707916237965, 17.6924369955588], [121.707916237965, 17.6911286542392]]]]}, "properties": {"taskId": 5051, "taskX": 219697, "taskY": 144164, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.6911286542392], [121.707916237965, 17.6911286542392], [121.707916237965, 17.6924369955588], [121.706542946949, 17.6924369955588], [121.706542946949, 17.6911286542392]]]]}, "properties": {"taskId": 5049, "taskX": 219696, "taskY": 144164, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.707916237965, 17.6924369955588], [121.70928952898, 17.6924369955588], [121.70928952898, 17.6937453273483], [121.707916237965, 17.6937453273483], [121.707916237965, 17.6924369955588]]]]}, "properties": {"taskId": 5052, "taskX": 219697, "taskY": 144165, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 18.1771687903979], [121.508789040735, 18.1771687903979], [121.508789040735, 18.1876065493462], [121.497802712612, 18.1876065493462], [121.497802712612, 18.1771687903979]]]]}, "properties": {"taskId": 4728, "taskX": 27443, "taskY": 18067, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698303200857, 17.6957078071621], [121.698989846365, 17.6957078071621], [121.698989846365, 17.6963619623342], [121.698303200857, 17.6963619623342], [121.698303200857, 17.6957078071621]]]]}, "properties": {"taskId": 4634, "taskX": 439380, "taskY": 288335, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.70928952898, 17.6937453273483], [121.712036111011, 17.6937453273483], [121.712036111011, 17.6963619623342], [121.70928952898, 17.6963619623342], [121.70928952898, 17.6937453273483]]]]}, "properties": {"taskId": 5048, "taskX": 109849, "taskY": 72083, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.6937453273483], [121.70928952898, 17.6937453273483], [121.70928952898, 17.6963619623342], [121.706542946949, 17.6963619623342], [121.706542946949, 17.6937453273483]]]]}, "properties": {"taskId": 5046, "taskX": 109848, "taskY": 72083, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.70928952898, 17.6911286542392], [121.712036111011, 17.6911286542392], [121.712036111011, 17.6937453273483], [121.70928952898, 17.6937453273483], [121.70928952898, 17.6911286542392]]]]}, "properties": {"taskId": 5047, "taskX": 109849, "taskY": 72082, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.60217282978, 18.0649235121539], [121.604919411811, 18.0649235121539], [121.604919411811, 18.067534684074], [121.60217282978, 18.067534684074], [121.60217282978, 18.0649235121539]]]]}, "properties": {"taskId": 4086, "taskX": 109810, "taskY": 72225, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 18.2502199739071], [121.706542946949, 18.2502199739071], [121.706542946949, 18.2606533535982], [121.695556618826, 18.2606533535982], [121.695556618826, 18.2502199739071]]]]}, "properties": {"taskId": 5071, "taskX": 27461, "taskY": 18074, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.714782693041, 17.6440220248121], [121.717529275072, 17.6440220248121], [121.717529275072, 17.6466393832987], [121.714782693041, 17.6466393832987], [121.714782693041, 17.6440220248121]]]]}, "properties": {"taskId": 5055, "taskX": 109851, "taskY": 72064, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.712036111011, 17.6466393832987], [121.714782693041, 17.6466393832987], [121.714782693041, 17.6492567037506], [121.712036111011, 17.6492567037506], [121.712036111011, 17.6466393832987]]]]}, "properties": {"taskId": 5054, "taskX": 109850, "taskY": 72065, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.714782693041, 17.6466393832987], [121.717529275072, 17.6466393832987], [121.717529275072, 17.6492567037506], [121.714782693041, 17.6492567037506], [121.714782693041, 17.6466393832987]]]]}, "properties": {"taskId": 5056, "taskX": 109851, "taskY": 72065, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.518402077842, 18.4066547107354], [121.519775368858, 18.4066547107354], [121.519775368858, 18.4079577383502], [121.518402077842, 18.4079577383502], [121.518402077842, 18.4066547107354]]]]}, "properties": {"taskId": 5079, "taskX": 219559, "taskY": 144712, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.517028786827, 18.4079577383502], [121.518402077842, 18.4079577383502], [121.518402077842, 18.4092607561026], [121.517028786827, 18.4092607561026], [121.517028786827, 18.4079577383502]]]]}, "properties": {"taskId": 5078, "taskX": 219558, "taskY": 144713, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.517028786827, 18.4040486259214], [121.518402077842, 18.4040486259214], [121.518402077842, 18.4053516732589], [121.517028786827, 18.4053516732589], [121.517028786827, 18.4040486259214]]]]}, "properties": {"taskId": 5081, "taskX": 219558, "taskY": 144710, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.518402077842, 18.4053516732589], [121.519775368858, 18.4053516732589], [121.519775368858, 18.4066547107354], [121.518402077842, 18.4066547107354], [121.518402077842, 18.4053516732589]]]]}, "properties": {"taskId": 5084, "taskX": 219559, "taskY": 144711, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.517028786827, 18.4066547107354], [121.518402077842, 18.4066547107354], [121.518402077842, 18.4079577383502], [121.517028786827, 18.4079577383502], [121.517028786827, 18.4066547107354]]]]}, "properties": {"taskId": 5077, "taskX": 219558, "taskY": 144712, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.518402077842, 18.4079577383502], [121.519775368858, 18.4079577383502], [121.519775368858, 18.4092607561026], [121.518402077842, 18.4092607561026], [121.518402077842, 18.4079577383502]]]]}, "properties": {"taskId": 5080, "taskX": 219559, "taskY": 144713, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.712036111011, 17.6440220248121], [121.713409402026, 17.6440220248121], [121.713409402026, 17.6453307088095], [121.712036111011, 17.6453307088095], [121.712036111011, 17.6440220248121]]]]}, "properties": {"taskId": 5057, "taskX": 219700, "taskY": 144128, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.713409402026, 17.6440220248121], [121.714782693041, 17.6440220248121], [121.714782693041, 17.6453307088095], [121.713409402026, 17.6453307088095], [121.713409402026, 17.6440220248121]]]]}, "properties": {"taskId": 5059, "taskX": 219701, "taskY": 144128, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.712036111011, 17.6453307088095], [121.713409402026, 17.6453307088095], [121.713409402026, 17.6466393832987], [121.712036111011, 17.6466393832987], [121.712036111011, 17.6453307088095]]]]}, "properties": {"taskId": 5058, "taskX": 219700, "taskY": 144129, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.713409402026, 17.6453307088095], [121.714782693041, 17.6453307088095], [121.714782693041, 17.6466393832987], [121.713409402026, 17.6466393832987], [121.713409402026, 17.6453307088095]]]]}, "properties": {"taskId": 5060, "taskX": 219701, "taskY": 144129, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.517028786827, 18.4053516732589], [121.518402077842, 18.4053516732589], [121.518402077842, 18.4066547107354], [121.517028786827, 18.4066547107354], [121.517028786827, 18.4053516732589]]]]}, "properties": {"taskId": 5082, "taskX": 219558, "taskY": 144711, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.518402077842, 18.4040486259214], [121.519775368858, 18.4040486259214], [121.519775368858, 18.4053516732589], [121.518402077842, 18.4053516732589], [121.518402077842, 18.4040486259214]]]]}, "properties": {"taskId": 5083, "taskX": 219559, "taskY": 144710, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.805419900056, 18.2293513352315], [121.81640622818, 18.2293513352315], [121.81640622818, 18.2397859676821], [121.805419900056, 18.2397859676821], [121.805419900056, 18.2293513352315]]]]}, "properties": {"taskId": 5095, "taskX": 27471, "taskY": 18072, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 18.2293513352315], [121.805419900056, 18.2293513352315], [121.805419900056, 18.2397859676821], [121.794433571933, 18.2397859676821], [121.794433571933, 18.2293513352315]]]]}, "properties": {"taskId": 5093, "taskX": 27470, "taskY": 18072, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.805419900056, 18.2397859676821], [121.81640622818, 18.2397859676821], [121.81640622818, 18.2502199739071], [121.805419900056, 18.2502199739071], [121.805419900056, 18.2397859676821]]]]}, "properties": {"taskId": 5096, "taskX": 27471, "taskY": 18073, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 18.2606533535982], [121.706542946949, 18.2606533535982], [121.706542946949, 18.271086106447], [121.695556618826, 18.271086106447], [121.695556618826, 18.2606533535982]]]]}, "properties": {"taskId": 5072, "taskX": 27461, "taskY": 18075, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 18.349311741122], [121.632385232119, 18.349311741122], [121.632385232119, 18.3519186532097], [121.629638650088, 18.3519186532097], [121.629638650088, 18.349311741122]]]]}, "properties": {"taskId": 5061, "taskX": 109820, "taskY": 72334, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.632385232119, 18.349311741122], [121.635131814149, 18.349311741122], [121.635131814149, 18.3519186532097], [121.632385232119, 18.3519186532097], [121.632385232119, 18.349311741122]]]]}, "properties": {"taskId": 5063, "taskX": 109821, "taskY": 72334, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.515655495811, 18.4040486259214], [121.517028786827, 18.4040486259214], [121.517028786827, 18.4053516732589], [121.515655495811, 18.4053516732589], [121.515655495811, 18.4040486259214]]]]}, "properties": {"taskId": 5087, "taskX": 219557, "taskY": 144710, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 18.3519186532097], [121.632385232119, 18.3519186532097], [121.632385232119, 18.3545255259514], [121.629638650088, 18.3545255259514], [121.629638650088, 18.3519186532097]]]]}, "properties": {"taskId": 5062, "taskX": 109820, "taskY": 72335, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.632385232119, 18.3519186532097], [121.635131814149, 18.3519186532097], [121.635131814149, 18.3545255259514], [121.632385232119, 18.3545255259514], [121.632385232119, 18.3519186532097]]]]}, "properties": {"taskId": 5064, "taskX": 109821, "taskY": 72335, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.514282204796, 18.4040486259214], [121.515655495811, 18.4040486259214], [121.515655495811, 18.4053516732589], [121.514282204796, 18.4053516732589], [121.514282204796, 18.4040486259214]]]]}, "properties": {"taskId": 5085, "taskX": 219556, "taskY": 144710, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.515655495811, 18.4053516732589], [121.517028786827, 18.4053516732589], [121.517028786827, 18.4066547107354], [121.515655495811, 18.4066547107354], [121.515655495811, 18.4053516732589]]]]}, "properties": {"taskId": 5088, "taskX": 219557, "taskY": 144711, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.635131814149, 18.349311741122], [121.63787839618, 18.349311741122], [121.63787839618, 18.3519186532097], [121.635131814149, 18.3519186532097], [121.635131814149, 18.349311741122]]]]}, "properties": {"taskId": 5065, "taskX": 109822, "taskY": 72334, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.514282204796, 18.4079577383502], [121.515655495811, 18.4079577383502], [121.515655495811, 18.4092607561026], [121.514282204796, 18.4092607561026], [121.514282204796, 18.4079577383502]]]]}, "properties": {"taskId": 5074, "taskX": 219556, "taskY": 144713, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.63787839618, 18.3519186532097], [121.640624978211, 18.3519186532097], [121.640624978211, 18.3545255259514], [121.63787839618, 18.3545255259514], [121.63787839618, 18.3519186532097]]]]}, "properties": {"taskId": 5068, "taskX": 109823, "taskY": 72335, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.514282204796, 18.4066547107354], [121.515655495811, 18.4066547107354], [121.515655495811, 18.4079577383502], [121.514282204796, 18.4079577383502], [121.514282204796, 18.4066547107354]]]]}, "properties": {"taskId": 5073, "taskX": 219556, "taskY": 144712, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.515655495811, 18.4079577383502], [121.517028786827, 18.4079577383502], [121.517028786827, 18.4092607561026], [121.515655495811, 18.4092607561026], [121.515655495811, 18.4079577383502]]]]}, "properties": {"taskId": 5076, "taskX": 219557, "taskY": 144713, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.2502199739071], [121.690063454765, 18.2502199739071], [121.690063454765, 18.2554367420886], [121.684570290703, 18.2554367420886], [121.684570290703, 18.2502199739071]]]]}, "properties": {"taskId": 5089, "taskX": 54920, "taskY": 36148, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.690063454765, 18.2502199739071], [121.695556618826, 18.2502199739071], [121.695556618826, 18.2554367420886], [121.690063454765, 18.2554367420886], [121.690063454765, 18.2502199739071]]]]}, "properties": {"taskId": 5091, "taskX": 54921, "taskY": 36148, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 18.2397859676821], [121.805419900056, 18.2397859676821], [121.805419900056, 18.2502199739071], [121.794433571933, 18.2502199739071], [121.794433571933, 18.2397859676821]]]]}, "properties": {"taskId": 5094, "taskX": 27470, "taskY": 18073, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.515655495811, 18.4066547107354], [121.517028786827, 18.4066547107354], [121.517028786827, 18.4079577383502], [121.515655495811, 18.4079577383502], [121.515655495811, 18.4066547107354]]]]}, "properties": {"taskId": 5075, "taskX": 219557, "taskY": 144712, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.514282204796, 18.4053516732589], [121.515655495811, 18.4053516732589], [121.515655495811, 18.4066547107354], [121.514282204796, 18.4066547107354], [121.514282204796, 18.4053516732589]]]]}, "properties": {"taskId": 5086, "taskX": 219556, "taskY": 144711, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.690063454765, 18.2554367420886], [121.695556618826, 18.2554367420886], [121.695556618826, 18.2606533535982], [121.690063454765, 18.2606533535982], [121.690063454765, 18.2554367420886]]]]}, "properties": {"taskId": 5092, "taskX": 54921, "taskY": 36149, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.915283181287, 18.2293513352315], [121.92626950941, 18.2293513352315], [121.92626950941, 18.2397859676821], [121.915283181287, 18.2397859676821], [121.915283181287, 18.2293513352315]]]]}, "properties": {"taskId": 4743, "taskX": 27481, "taskY": 18072, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.431884743873, 18.4170786554759], [121.442871071996, 18.4170786554759], [121.442871071996, 18.4275019687616], [121.431884743873, 18.4275019687616], [121.431884743873, 18.4170786554759]]]]}, "properties": {"taskId": 4511, "taskX": 27437, "taskY": 18090, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 18.2293513352315], [121.552734353227, 18.2293513352315], [121.552734353227, 18.2502199739071], [121.530761696981, 18.2502199739071], [121.530761696981, 18.2293513352315]]]]}, "properties": {"taskId": 4899, "taskX": 13723, "taskY": 9036, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 17.7068281209488], [121.67358396258, 17.7068281209488], [121.67358396258, 17.7172936692013], [121.662597634457, 17.7172936692013], [121.662597634457, 17.7068281209488]]]]}, "properties": {"taskId": 5097, "taskX": 27458, "taskY": 18022, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.519775368858, 18.2397859676821], [121.530761696981, 18.2397859676821], [121.530761696981, 18.2502199739071], [121.519775368858, 18.2502199739071], [121.519775368858, 18.2397859676821]]]]}, "properties": {"taskId": 4908, "taskX": 27445, "taskY": 18073, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.967468239871, 20.4450288469673], [121.968841530887, 20.4450288469673], [121.968841530887, 20.4463156259142], [121.967468239871, 20.4463156259142], [121.967468239871, 20.4450288469673]]]]}, "properties": {"taskId": 5101, "taskX": 219886, "taskY": 146286, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.968841530887, 20.4463156259142], [121.970214821902, 20.4463156259142], [121.970214821902, 20.447602394087], [121.968841530887, 20.447602394087], [121.968841530887, 20.4463156259142]]]]}, "properties": {"taskId": 5104, "taskX": 219887, "taskY": 146287, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.4154299588485], [121.949615456671, 20.4154299588485], [121.949615456671, 20.4167169854434], [121.948242165656, 20.4167169854434], [121.948242165656, 20.4154299588485]]]]}, "properties": {"taskId": 5114, "taskX": 219872, "taskY": 146263, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 17.7172936692013], [121.67358396258, 17.7172936692013], [121.67358396258, 17.7277586067781], [121.662597634457, 17.7277586067781], [121.662597634457, 17.7172936692013]]]]}, "properties": {"taskId": 5098, "taskX": 27458, "taskY": 18023, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.967468239871, 20.4463156259142], [121.968841530887, 20.4463156259142], [121.968841530887, 20.447602394087], [121.967468239871, 20.447602394087], [121.967468239871, 20.4463156259142]]]]}, "properties": {"taskId": 5102, "taskX": 219886, "taskY": 146287, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.4141429214931], [121.949615456671, 20.4141429214931], [121.949615456671, 20.4154299588485], [121.948242165656, 20.4154299588485], [121.948242165656, 20.4141429214931]]]]}, "properties": {"taskId": 5113, "taskX": 219872, "taskY": 146262, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.949615456671, 20.4154299588485], [121.950988747687, 20.4154299588485], [121.950988747687, 20.4167169854434], [121.949615456671, 20.4167169854434], [121.949615456671, 20.4154299588485]]]]}, "properties": {"taskId": 5116, "taskX": 219873, "taskY": 146263, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 17.7068281209488], [121.684570290703, 17.7068281209488], [121.684570290703, 17.7172936692013], [121.67358396258, 17.7172936692013], [121.67358396258, 17.7068281209488]]]]}, "properties": {"taskId": 5099, "taskX": 27459, "taskY": 18022, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.968841530887, 20.4450288469673], [121.970214821902, 20.4450288469673], [121.970214821902, 20.4463156259142], [121.968841530887, 20.4463156259142], [121.968841530887, 20.4450288469673]]]]}, "properties": {"taskId": 5103, "taskX": 219887, "taskY": 146286, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.949615456671, 20.4141429214931], [121.950988747687, 20.4141429214931], [121.950988747687, 20.4154299588485], [121.949615456671, 20.4154299588485], [121.949615456671, 20.4141429214931]]]]}, "properties": {"taskId": 5115, "taskX": 219873, "taskY": 146262, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 18.0570897635212], [121.613159157903, 18.0570897635212], [121.613159157903, 18.0623123014185], [121.607665993842, 18.0623123014185], [121.607665993842, 18.0570897635212]]]]}, "properties": {"taskId": 4406, "taskX": 54906, "taskY": 36111, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 18.2815182321454], [121.596679665719, 18.2815182321454], [121.596679665719, 18.2919497303851], [121.585693337596, 18.2919497303851], [121.585693337596, 18.2815182321454]]]]}, "properties": {"taskId": 4868, "taskX": 27451, "taskY": 18077, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.953735329717, 20.4064204714195], [121.959228493779, 20.4064204714195], [121.959228493779, 20.4115688145028], [121.953735329717, 20.4115688145028], [121.953735329717, 20.4064204714195]]]]}, "properties": {"taskId": 5107, "taskX": 54969, "taskY": 36564, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.4064204714195], [121.953735329717, 20.4064204714195], [121.953735329717, 20.4115688145028], [121.948242165656, 20.4115688145028], [121.948242165656, 20.4064204714195]]]]}, "properties": {"taskId": 5105, "taskX": 54968, "taskY": 36564, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.953735329717, 20.4115688145028], [121.959228493779, 20.4115688145028], [121.959228493779, 20.4167169854434], [121.953735329717, 20.4167169854434], [121.953735329717, 20.4115688145028]]]]}, "properties": {"taskId": 5108, "taskX": 54969, "taskY": 36565, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.4115688145028], [121.950988747687, 20.4115688145028], [121.950988747687, 20.4141429214931], [121.948242165656, 20.4141429214931], [121.948242165656, 20.4115688145028]]]]}, "properties": {"taskId": 5109, "taskX": 109936, "taskY": 73130, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.950988747687, 20.4141429214931], [121.953735329717, 20.4141429214931], [121.953735329717, 20.4167169854434], [121.950988747687, 20.4167169854434], [121.950988747687, 20.4141429214931]]]]}, "properties": {"taskId": 5112, "taskX": 109937, "taskY": 73131, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.950988747687, 20.4115688145028], [121.953735329717, 20.4115688145028], [121.953735329717, 20.4141429214931], [121.950988747687, 20.4141429214931], [121.950988747687, 20.4115688145028]]]]}, "properties": {"taskId": 5111, "taskX": 109937, "taskY": 73130, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.7172936692013], [121.739501931318, 17.7172936692013], [121.739501931318, 17.7225262143437], [121.734008767257, 17.7225262143437], [121.734008767257, 17.7172936692013]]]]}, "properties": {"taskId": 5147, "taskX": 54929, "taskY": 36046, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.7015951179171], [121.706542946949, 17.7015951179171], [121.706542946949, 17.7068281209488], [121.701049782888, 17.7068281209488], [121.701049782888, 17.7015951179171]]]]}, "properties": {"taskId": 4288, "taskX": 54923, "taskY": 36043, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 17.7277586067781], [121.508789040735, 17.7277586067781], [121.508789040735, 17.7382229333659], [121.497802712612, 17.7382229333659], [121.497802712612, 17.7277586067781]]]]}, "properties": {"taskId": 5139, "taskX": 27443, "taskY": 18024, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.7329908464652], [121.734008767257, 17.7329908464652], [121.734008767257, 17.7382229333659], [121.728515603195, 17.7382229333659], [121.728515603195, 17.7329908464652]]]]}, "properties": {"taskId": 5142, "taskX": 54928, "taskY": 36049, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.6099929055511], [121.718902566088, 17.6099929055511], [121.718902566088, 17.6113018365434], [121.717529275072, 17.6113018365434], [121.717529275072, 17.6099929055511]]]]}, "properties": {"taskId": 5165, "taskX": 219704, "taskY": 144102, "taskZoom": 18, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.6544912305301], [121.772460915687, 17.6544912305301], [121.772460915687, 17.6649598274553], [121.761474587564, 17.6649598274553], [121.761474587564, 17.6544912305301]]]]}, "properties": {"taskId": 4204, "taskX": 27467, "taskY": 18017, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.38244626732, 18.3336694425994], [121.387939431381, 18.3336694425994], [121.387939431381, 18.3388836994076], [121.38244626732, 18.3388836994076], [121.38244626732, 18.3336694425994]]]]}, "properties": {"taskId": 4931, "taskX": 54865, "taskY": 36164, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 17.7382229333659], [121.497802712612, 17.7382229333659], [121.497802712612, 17.7486866486513], [121.486816384489, 17.7486866486513], [121.486816384489, 17.7382229333659]]]]}, "properties": {"taskId": 5138, "taskX": 27442, "taskY": 18025, "taskZoom": 15, "taskSplittable": true, "taskStatus": "INVALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.409912087627, 18.3858049281171], [121.42089841575, 18.3858049281171], [121.42089841575, 18.3962301348468], [121.409912087627, 18.3962301348468], [121.409912087627, 18.3858049281171]]]]}, "properties": {"taskId": 4468, "taskX": 27435, "taskY": 18087, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.5707205649901], [121.731262185226, 17.5707205649901], [121.731262185226, 17.5733389864572], [121.728515603195, 17.5733389864572], [121.728515603195, 17.5707205649901]]]]}, "properties": {"taskId": 4245, "taskX": 109856, "taskY": 72036, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698303200857, 17.694399489669], [121.698989846365, 17.694399489669], [121.698989846365, 17.695053649607], [121.698303200857, 17.695053649607], [121.698303200857, 17.694399489669]]]]}, "properties": {"taskId": 4646, "taskX": 439380, "taskY": 288333, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.7277586067781], [121.734008767257, 17.7277586067781], [121.734008767257, 17.7329908464652], [121.728515603195, 17.7329908464652], [121.728515603195, 17.7277586067781]]]]}, "properties": {"taskId": 5141, "taskX": 54928, "taskY": 36048, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.7329908464652], [121.739501931318, 17.7329908464652], [121.739501931318, 17.7382229333659], [121.734008767257, 17.7382229333659], [121.734008767257, 17.7329908464652]]]]}, "properties": {"taskId": 5144, "taskX": 54929, "taskY": 36049, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.638787193754], [121.720275857103, 17.638787193754], [121.720275857103, 17.6414046282956], [121.717529275072, 17.6414046282956], [121.717529275072, 17.638787193754]]]]}, "properties": {"taskId": 4409, "taskX": 109852, "taskY": 72062, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.371459939197, 17.8559044112242], [121.372833230212, 17.8559044112242], [121.372833230212, 17.857211546925], [121.371459939197, 17.857211546925], [121.371459939197, 17.8559044112242]]]]}, "properties": {"taskId": 5001, "taskX": 219452, "taskY": 144290, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.0727569114491], [121.651611306334, 18.0727569114491], [121.651611306334, 18.0832009002027], [121.640624978211, 18.0832009002027], [121.640624978211, 18.0727569114491]]]]}, "properties": {"taskId": 5162, "taskX": 27456, "taskY": 18057, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.718902566088, 17.6099929055511], [121.720275857103, 17.6099929055511], [121.720275857103, 17.6113018365434], [121.718902566088, 17.6113018365434], [121.718902566088, 17.6099929055511]]]]}, "properties": {"taskId": 5167, "taskX": 219705, "taskY": 144102, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.909790017225, 18.2397859676821], [121.915283181287, 18.2397859676821], [121.915283181287, 18.245003049092], [121.909790017225, 18.245003049092], [121.909790017225, 18.2397859676821]]]]}, "properties": {"taskId": 4927, "taskX": 54961, "taskY": 36146, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.2397859676821], [121.909790017225, 18.2397859676821], [121.909790017225, 18.245003049092], [121.904296853164, 18.245003049092], [121.904296853164, 18.2397859676821]]]]}, "properties": {"taskId": 4925, "taskX": 54960, "taskY": 36146, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.688690163749, 18.2554367420886], [121.690063454765, 18.2554367420886], [121.690063454765, 18.2567409096555], [121.688690163749, 18.2567409096555], [121.688690163749, 18.2554367420886]]]]}, "properties": {"taskId": 5131, "taskX": 219683, "taskY": 144596, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 18.3023806008582], [121.574707009473, 18.3023806008582], [121.574707009473, 18.3128108432568], [121.56372068135, 18.3128108432568], [121.56372068135, 18.3023806008582]]]]}, "properties": {"taskId": 5156, "taskX": 27449, "taskY": 18079, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.2815182321454], [121.56372068135, 18.2815182321454], [121.56372068135, 18.2919497303851], [121.552734353227, 18.2919497303851], [121.552734353227, 18.2815182321454]]]]}, "properties": {"taskId": 5158, "taskX": 27448, "taskY": 18077, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.687316872734, 18.2567409096555], [121.688690163749, 18.2567409096555], [121.688690163749, 18.2580450674298], [121.687316872734, 18.2580450674298], [121.687316872734, 18.2567409096555]]]]}, "properties": {"taskId": 5130, "taskX": 219682, "taskY": 144597, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.3023806008582], [121.56372068135, 18.3023806008582], [121.56372068135, 18.3128108432568], [121.552734353227, 18.3128108432568], [121.552734353227, 18.3023806008582]]]]}, "properties": {"taskId": 5154, "taskX": 27448, "taskY": 18079, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.7277586067781], [121.739501931318, 17.7277586067781], [121.739501931318, 17.7329908464652], [121.734008767257, 17.7329908464652], [121.734008767257, 17.7277586067781]]]]}, "properties": {"taskId": 5143, "taskX": 54929, "taskY": 36048, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.0623123014185], [121.651611306334, 18.0623123014185], [121.651611306334, 18.0727569114491], [121.640624978211, 18.0727569114491], [121.640624978211, 18.0623123014185]]]]}, "properties": {"taskId": 5161, "taskX": 27456, "taskY": 18056, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.0727569114491], [121.662597634457, 18.0727569114491], [121.662597634457, 18.0832009002027], [121.651611306334, 18.0832009002027], [121.651611306334, 18.0727569114491]]]]}, "properties": {"taskId": 5164, "taskX": 27457, "taskY": 18057, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.6113018365434], [121.718902566088, 17.6113018365434], [121.718902566088, 17.6126107580436], [121.717529275072, 17.6126107580436], [121.717529275072, 17.6113018365434]]]]}, "properties": {"taskId": 5166, "taskX": 219704, "taskY": 144103, "taskZoom": 18, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.957832099161], [121.607665993842, 17.957832099161], [121.607665993842, 17.9682829048867], [121.596679665719, 17.9682829048867], [121.596679665719, 17.957832099161]]]]}, "properties": {"taskId": 5117, "taskX": 27452, "taskY": 18046, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 17.9682829048867], [121.618652321965, 17.9682829048867], [121.618652321965, 17.9787330924414], [121.607665993842, 17.9787330924414], [121.607665993842, 17.9682829048867]]]]}, "properties": {"taskId": 5120, "taskX": 27453, "taskY": 18047, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.7225262143437], [121.734008767257, 17.7225262143437], [121.734008767257, 17.7277586067781], [121.728515603195, 17.7277586067781], [121.728515603195, 17.7225262143437]]]]}, "properties": {"taskId": 5146, "taskX": 54928, "taskY": 36047, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.2554367420886], [121.685943581719, 18.2554367420886], [121.685943581719, 18.2567409096555], [121.684570290703, 18.2567409096555], [121.684570290703, 18.2554367420886]]]]}, "properties": {"taskId": 5125, "taskX": 219680, "taskY": 144596, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.685943581719, 18.2567409096555], [121.687316872734, 18.2567409096555], [121.687316872734, 18.2580450674298], [121.685943581719, 18.2580450674298], [121.685943581719, 18.2567409096555]]]]}, "properties": {"taskId": 5128, "taskX": 219681, "taskY": 144597, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.688690163749, 18.2567409096555], [121.690063454765, 18.2567409096555], [121.690063454765, 18.2580450674298], [121.688690163749, 18.2580450674298], [121.688690163749, 18.2567409096555]]]]}, "properties": {"taskId": 5132, "taskX": 219683, "taskY": 144597, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.9264759760701], [121.695556618826, 17.9264759760701], [121.695556618826, 17.9369286344414], [121.684570290703, 17.9369286344414], [121.684570290703, 17.9264759760701]]]]}, "properties": {"taskId": 5150, "taskX": 27460, "taskY": 18043, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 17.7382229333659], [121.508789040735, 17.7382229333659], [121.508789040735, 17.7486866486513], [121.497802712612, 17.7486866486513], [121.497802712612, 17.7382229333659]]]]}, "properties": {"taskId": 5140, "taskX": 27443, "taskY": 18025, "taskZoom": 15, "taskSplittable": true, "taskStatus": "INVALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.9682829048867], [121.607665993842, 17.9682829048867], [121.607665993842, 17.9787330924414], [121.596679665719, 17.9787330924414], [121.596679665719, 17.9682829048867]]]]}, "properties": {"taskId": 5118, "taskX": 27452, "taskY": 18047, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.7172936692013], [121.734008767257, 17.7172936692013], [121.734008767257, 17.7225262143437], [121.728515603195, 17.7225262143437], [121.728515603195, 17.7172936692013]]]]}, "properties": {"taskId": 5145, "taskX": 54928, "taskY": 36046, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.7225262143437], [121.739501931318, 17.7225262143437], [121.739501931318, 17.7277586067781], [121.734008767257, 17.7277586067781], [121.734008767257, 17.7225262143437]]]]}, "properties": {"taskId": 5148, "taskX": 54929, "taskY": 36047, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.718902566088, 17.6113018365434], [121.720275857103, 17.6113018365434], [121.720275857103, 17.6126107580436], [121.718902566088, 17.6126107580436], [121.718902566088, 17.6113018365434]]]]}, "properties": {"taskId": 5168, "taskX": 219705, "taskY": 144103, "taskZoom": 18, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 17.4764321941621], [121.684570290703, 17.4764321941621], [121.684570290703, 17.497389397627], [121.662597634457, 17.497389397627], [121.662597634457, 17.4764321941621]]]]}, "properties": {"taskId": 5211, "taskX": 13729, "taskY": 9000, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 18.271086106447], [121.574707009473, 18.271086106447], [121.574707009473, 18.2815182321454], [121.56372068135, 18.2815182321454], [121.56372068135, 18.271086106447]]]]}, "properties": {"taskId": 5159, "taskX": 27449, "taskY": 18076, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.271086106447], [121.56372068135, 18.271086106447], [121.56372068135, 18.2815182321454], [121.552734353227, 18.2815182321454], [121.552734353227, 18.271086106447]]]]}, "properties": {"taskId": 5157, "taskX": 27448, "taskY": 18076, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 18.2815182321454], [121.574707009473, 18.2815182321454], [121.574707009473, 18.2919497303851], [121.56372068135, 18.2919497303851], [121.56372068135, 18.2815182321454]]]]}, "properties": {"taskId": 5160, "taskX": 27449, "taskY": 18077, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.685943581719, 18.2554367420886], [121.687316872734, 18.2554367420886], [121.687316872734, 18.2567409096555], [121.685943581719, 18.2567409096555], [121.685943581719, 18.2554367420886]]]]}, "properties": {"taskId": 5127, "taskX": 219681, "taskY": 144596, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.9160227007731], [121.706542946949, 17.9160227007731], [121.706542946949, 17.9264759760701], [121.695556618826, 17.9264759760701], [121.695556618826, 17.9160227007731]]]]}, "properties": {"taskId": 5151, "taskX": 27461, "taskY": 18042, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 17.7931506114923], [121.632385232119, 17.7931506114923], [121.632385232119, 17.7957657941708], [121.629638650088, 17.7957657941708], [121.629638650088, 17.7931506114923]]]]}, "properties": {"taskId": 5234, "taskX": 109820, "taskY": 72121, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.712036111011, 17.9055688088617], [121.717529275072, 17.9055688088617], [121.717529275072, 17.9107958318747], [121.712036111011, 17.9107958318747], [121.712036111011, 17.9055688088617]]]]}, "properties": {"taskId": 5203, "taskX": 54925, "taskY": 36082, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.687316872734, 18.2580450674298], [121.690063454765, 18.2580450674298], [121.690063454765, 18.2606533535982], [121.687316872734, 18.2606533535982], [121.687316872734, 18.2580450674298]]]]}, "properties": {"taskId": 5124, "taskX": 109841, "taskY": 72299, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.426391579812, 18.4222903910698], [121.431884743873, 18.4222903910698], [121.431884743873, 18.4275019687616], [121.426391579812, 18.4275019687616], [121.426391579812, 18.4222903910698]]]]}, "properties": {"taskId": 4668, "taskX": 54873, "taskY": 36181, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.398925759504, 18.3440977989279], [121.409912087627, 18.3440977989279], [121.409912087627, 18.3545255259514], [121.398925759504, 18.3545255259514], [121.398925759504, 18.3440977989279]]]]}, "properties": {"taskId": 4918, "taskX": 27434, "taskY": 18083, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 17.7277586067781], [121.486816384489, 17.7277586067781], [121.486816384489, 17.7486866486513], [121.464843728242, 17.7486866486513], [121.464843728242, 17.7277586067781]]]]}, "properties": {"taskId": 5133, "taskX": 13720, "taskY": 9012, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.687316872734, 18.2554367420886], [121.688690163749, 18.2554367420886], [121.688690163749, 18.2567409096555], [121.687316872734, 18.2567409096555], [121.687316872734, 18.2554367420886]]]]}, "properties": {"taskId": 5129, "taskX": 219682, "taskY": 144596, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.2580450674298], [121.687316872734, 18.2580450674298], [121.687316872734, 18.2606533535982], [121.684570290703, 18.2606533535982], [121.684570290703, 18.2580450674298]]]]}, "properties": {"taskId": 5122, "taskX": 109840, "taskY": 72299, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.9160227007731], [121.695556618826, 17.9160227007731], [121.695556618826, 17.9264759760701], [121.684570290703, 17.9264759760701], [121.684570290703, 17.9160227007731]]]]}, "properties": {"taskId": 5149, "taskX": 27460, "taskY": 18042, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.398925759504, 18.3545255259514], [121.409912087627, 18.3545255259514], [121.409912087627, 18.3649526233622], [121.398925759504, 18.3649526233622], [121.398925759504, 18.3545255259514]]]]}, "properties": {"taskId": 4493, "taskX": 27434, "taskY": 18084, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.9264759760701], [121.706542946949, 17.9264759760701], [121.706542946949, 17.9369286344414], [121.695556618826, 17.9369286344414], [121.695556618826, 17.9264759760701]]]]}, "properties": {"taskId": 5152, "taskX": 27461, "taskY": 18043, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.632385232119, 17.7931506114923], [121.635131814149, 17.7931506114923], [121.635131814149, 17.7957657941708], [121.632385232119, 17.7957657941708], [121.632385232119, 17.7931506114923]]]]}, "properties": {"taskId": 5236, "taskX": 109821, "taskY": 72121, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 18.2919497303851], [121.574707009473, 18.2919497303851], [121.574707009473, 18.3023806008582], [121.56372068135, 18.3023806008582], [121.56372068135, 18.2919497303851]]]]}, "properties": {"taskId": 5155, "taskX": 27449, "taskY": 18078, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.0623123014185], [121.662597634457, 18.0623123014185], [121.662597634457, 18.0727569114491], [121.651611306334, 18.0727569114491], [121.651611306334, 18.0623123014185]]]]}, "properties": {"taskId": 5163, "taskX": 27457, "taskY": 18056, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.497389397627], [121.662597634457, 17.497389397627], [121.662597634457, 17.518344184812], [121.640624978211, 17.518344184812], [121.640624978211, 17.497389397627]]]]}, "properties": {"taskId": 5210, "taskX": 13728, "taskY": 9001, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 17.497389397627], [121.67358396258, 17.497389397627], [121.67358396258, 17.5078670934123], [121.662597634457, 17.5078670934123], [121.662597634457, 17.497389397627]]]]}, "properties": {"taskId": 5213, "taskX": 27458, "taskY": 18002, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 17.5078670934123], [121.684570290703, 17.5078670934123], [121.684570290703, 17.518344184812], [121.67358396258, 17.518344184812], [121.67358396258, 17.5078670934123]]]]}, "properties": {"taskId": 5216, "taskX": 27459, "taskY": 18003, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.8951143006479], [121.717529275072, 17.8951143006479], [121.717529275072, 17.9055688088617], [121.706542946949, 17.9055688088617], [121.706542946949, 17.8951143006479]]]]}, "properties": {"taskId": 5169, "taskX": 27462, "taskY": 18040, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 18.1249706362482], [121.596679665719, 18.1249706362482], [121.596679665719, 18.1458517685528], [121.574707009473, 18.1458517685528], [121.574707009473, 18.1249706362482]]]]}, "properties": {"taskId": 5188, "taskX": 13725, "taskY": 9031, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 17.7199099608586], [121.681823708672, 17.7199099608586], [121.681823708672, 17.7225262143437], [121.679077126642, 17.7225262143437], [121.679077126642, 17.7199099608586]]]]}, "properties": {"taskId": 5258, "taskX": 109838, "taskY": 72093, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.624145486026, 17.7905353905046], [121.626892068057, 17.7905353905046], [121.626892068057, 17.7931506114923], [121.624145486026, 17.7931506114923], [121.624145486026, 17.7905353905046]]]]}, "properties": {"taskId": 5225, "taskX": 109818, "taskY": 72120, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.626892068057, 17.7931506114923], [121.629638650088, 17.7931506114923], [121.629638650088, 17.7957657941708], [121.626892068057, 17.7957657941708], [121.626892068057, 17.7931506114923]]]]}, "properties": {"taskId": 5228, "taskX": 109819, "taskY": 72121, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.972961403933, 20.4463156259142], [121.974334694948, 20.4463156259142], [121.974334694948, 20.447602394087], [121.972961403933, 20.447602394087], [121.972961403933, 20.4463156259142]]]]}, "properties": {"taskId": 4542, "taskX": 219890, "taskY": 146287, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 18.3545255259514], [121.632385232119, 18.3545255259514], [121.632385232119, 18.3571323593422], [121.629638650088, 18.3571323593422], [121.629638650088, 18.3545255259514]]]]}, "properties": {"taskId": 5197, "taskX": 109820, "taskY": 72336, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.967468239871, 20.4424552567539], [121.970214821902, 20.4424552567539], [121.970214821902, 20.4450288469673], [121.967468239871, 20.4450288469673], [121.967468239871, 20.4424552567539]]]]}, "properties": {"taskId": 4459, "taskX": 109943, "taskY": 73142, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.632385232119, 18.3545255259514], [121.635131814149, 18.3545255259514], [121.635131814149, 18.3571323593422], [121.632385232119, 18.3571323593422], [121.632385232119, 18.3545255259514]]]]}, "properties": {"taskId": 5199, "taskX": 109821, "taskY": 72336, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.624145486026, 17.7957657941708], [121.629638650088, 17.7957657941708], [121.629638650088, 17.800996044581], [121.624145486026, 17.800996044581], [121.624145486026, 17.7957657941708]]]]}, "properties": {"taskId": 5224, "taskX": 54909, "taskY": 36061, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.1249706362482], [121.574707009473, 18.1249706362482], [121.574707009473, 18.1458517685528], [121.552734353227, 18.1458517685528], [121.552734353227, 18.1249706362482]]]]}, "properties": {"taskId": 5186, "taskX": 13724, "taskY": 9031, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.7905353905046], [121.624145486026, 17.7905353905046], [121.624145486026, 17.7957657941708], [121.618652321965, 17.7957657941708], [121.618652321965, 17.7905353905046]]]]}, "properties": {"taskId": 5221, "taskX": 54908, "taskY": 36060, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.624145486026, 17.7931506114923], [121.626892068057, 17.7931506114923], [121.626892068057, 17.7957657941708], [121.624145486026, 17.7957657941708], [121.624145486026, 17.7931506114923]]]]}, "properties": {"taskId": 5226, "taskX": 109818, "taskY": 72121, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.681823708672, 17.7172936692013], [121.684570290703, 17.7172936692013], [121.684570290703, 17.7199099608586], [121.681823708672, 17.7199099608586], [121.681823708672, 17.7172936692013]]]]}, "properties": {"taskId": 5259, "taskX": 109839, "taskY": 72092, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.626892068057, 17.7905353905046], [121.629638650088, 17.7905353905046], [121.629638650088, 17.7931506114923], [121.626892068057, 17.7931506114923], [121.626892068057, 17.7905353905046]]]]}, "properties": {"taskId": 5227, "taskX": 109819, "taskY": 72120, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.668090798519, 17.8114560854768], [121.67358396258, 17.8114560854768], [121.67358396258, 17.8166858758843], [121.668090798519, 17.8166858758843], [121.668090798519, 17.8114560854768]]]]}, "properties": {"taskId": 4811, "taskX": 54917, "taskY": 36064, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 17.7172936692013], [121.681823708672, 17.7172936692013], [121.681823708672, 17.7199099608586], [121.679077126642, 17.7199099608586], [121.679077126642, 17.7172936692013]]]]}, "properties": {"taskId": 5257, "taskX": 109838, "taskY": 72092, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.681823708672, 17.7199099608586], [121.684570290703, 17.7199099608586], [121.684570290703, 17.7225262143437], [121.681823708672, 17.7225262143437], [121.681823708672, 17.7199099608586]]]]}, "properties": {"taskId": 5260, "taskX": 109839, "taskY": 72093, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.721649148118, 17.6099929055511], [121.723022439134, 17.6099929055511], [121.723022439134, 17.6113018365434], [121.721649148118, 17.6113018365434], [121.721649148118, 17.6099929055511]]]]}, "properties": {"taskId": 5195, "taskX": 219707, "taskY": 144102, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 17.7225262143437], [121.679077126642, 17.7225262143437], [121.679077126642, 17.7277586067781], [121.67358396258, 17.7277586067781], [121.67358396258, 17.7225262143437]]]]}, "properties": {"taskId": 5254, "taskX": 54918, "taskY": 36047, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.972961403933, 20.4424552567539], [121.975707985963, 20.4424552567539], [121.975707985963, 20.4450288469673], [121.972961403933, 20.4450288469673], [121.972961403933, 20.4424552567539]]]]}, "properties": {"taskId": 4535, "taskX": 109945, "taskY": 73142, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 18.104087012639], [121.574707009473, 18.104087012639], [121.574707009473, 18.1145291357018], [121.56372068135, 18.1145291357018], [121.56372068135, 18.104087012639]]]]}, "properties": {"taskId": 5191, "taskX": 27449, "taskY": 18060, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.723022439134, 17.8951143006479], [121.728515603195, 17.8951143006479], [121.728515603195, 17.9003416317732], [121.723022439134, 17.9003416317732], [121.723022439134, 17.8951143006479]]]]}, "properties": {"taskId": 5207, "taskX": 54927, "taskY": 36080, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.104087012639], [121.56372068135, 18.104087012639], [121.56372068135, 18.1145291357018], [121.552734353227, 18.1145291357018], [121.552734353227, 18.104087012639]]]]}, "properties": {"taskId": 5189, "taskX": 27448, "taskY": 18060, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 18.1145291357018], [121.574707009473, 18.1145291357018], [121.574707009473, 18.1249706362482], [121.56372068135, 18.1249706362482], [121.56372068135, 18.1145291357018]]]]}, "properties": {"taskId": 5192, "taskX": 27449, "taskY": 18061, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.9003416317732], [121.723022439134, 17.9003416317732], [121.723022439134, 17.9055688088617], [121.717529275072, 17.9055688088617], [121.717529275072, 17.9003416317732]]]]}, "properties": {"taskId": 5206, "taskX": 54926, "taskY": 36081, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.1145291357018], [121.56372068135, 18.1145291357018], [121.56372068135, 18.1249706362482], [121.552734353227, 18.1249706362482], [121.552734353227, 18.1145291357018]]]]}, "properties": {"taskId": 5190, "taskX": 27448, "taskY": 18061, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.975707985963, 20.4424552567539], [121.981201150025, 20.4424552567539], [121.981201150025, 20.447602394087], [121.975707985963, 20.447602394087], [121.975707985963, 20.4424552567539]]]]}, "properties": {"taskId": 4532, "taskX": 54973, "taskY": 36571, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 18.0309747467668], [121.629638650088, 18.0309747467668], [121.629638650088, 18.0414212187671], [121.618652321965, 18.0414212187671], [121.618652321965, 18.0309747467668]]]]}, "properties": {"taskId": 4430, "taskX": 27454, "taskY": 18053, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 17.8951143006479], [121.640624978211, 17.8951143006479], [121.640624978211, 17.9055688088617], [121.629638650088, 17.9055688088617], [121.629638650088, 17.8951143006479]]]]}, "properties": {"taskId": 5179, "taskX": 27455, "taskY": 18040, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.6230817882545], [121.720275857103, 17.6230817882545], [121.720275857103, 17.625699450843], [121.717529275072, 17.625699450843], [121.717529275072, 17.6230817882545]]]]}, "properties": {"taskId": 5217, "taskX": 109852, "taskY": 72056, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.720275857103, 17.625699450843], [121.723022439134, 17.625699450843], [121.723022439134, 17.6283170754359], [121.720275857103, 17.6283170754359], [121.720275857103, 17.625699450843]]]]}, "properties": {"taskId": 5220, "taskX": 109853, "taskY": 72057, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.8951143006479], [121.629638650088, 17.8951143006479], [121.629638650088, 17.9055688088617], [121.618652321965, 17.9055688088617], [121.618652321965, 17.8951143006479]]]]}, "properties": {"taskId": 5177, "taskX": 27454, "taskY": 18040, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.9055688088617], [121.629638650088, 17.9055688088617], [121.629638650088, 17.9160227007731], [121.618652321965, 17.9160227007731], [121.618652321965, 17.9055688088617]]]]}, "properties": {"taskId": 5178, "taskX": 27454, "taskY": 18041, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.638787193754], [121.712036111011, 17.638787193754], [121.712036111011, 17.6440220248121], [121.706542946949, 17.6440220248121], [121.706542946949, 17.638787193754]]]]}, "properties": {"taskId": 4278, "taskX": 54924, "taskY": 36031, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.720275857103, 17.6230817882545], [121.723022439134, 17.6230817882545], [121.723022439134, 17.625699450843], [121.720275857103, 17.625699450843], [121.720275857103, 17.6230817882545]]]]}, "properties": {"taskId": 5219, "taskX": 109853, "taskY": 72056, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 18.104087012639], [121.596679665719, 18.104087012639], [121.596679665719, 18.1249706362482], [121.574707009473, 18.1249706362482], [121.574707009473, 18.104087012639]]]]}, "properties": {"taskId": 5187, "taskX": 13725, "taskY": 9030, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 18.1876065493462], [121.508789040735, 18.1876065493462], [121.508789040735, 18.2084801928881], [121.486816384489, 18.2084801928881], [121.486816384489, 18.1876065493462]]]]}, "properties": {"taskId": 4879, "taskX": 13721, "taskY": 9034, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.9055688088617], [121.712036111011, 17.9055688088617], [121.712036111011, 17.9107958318747], [121.706542946949, 17.9107958318747], [121.706542946949, 17.9055688088617]]]]}, "properties": {"taskId": 5201, "taskX": 54924, "taskY": 36082, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.712036111011, 17.9107958318747], [121.717529275072, 17.9107958318747], [121.717529275072, 17.9160227007731], [121.712036111011, 17.9160227007731], [121.712036111011, 17.9107958318747]]]]}, "properties": {"taskId": 5204, "taskX": 54925, "taskY": 36083, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.720275857103, 17.6113018365434], [121.721649148118, 17.6113018365434], [121.721649148118, 17.6126107580436], [121.720275857103, 17.6126107580436], [121.720275857103, 17.6113018365434]]]]}, "properties": {"taskId": 5194, "taskX": 219706, "taskY": 144103, "taskZoom": 18, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.635131814149, 17.9055688088617], [121.640624978211, 17.9055688088617], [121.640624978211, 17.9107958318747], [121.635131814149, 17.9107958318747], [121.635131814149, 17.9055688088617]]]]}, "properties": {"taskId": 5183, "taskX": 54911, "taskY": 36082, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 17.9107958318747], [121.635131814149, 17.9107958318747], [121.635131814149, 17.9160227007731], [121.629638650088, 17.9160227007731], [121.629638650088, 17.9107958318747]]]]}, "properties": {"taskId": 5182, "taskX": 54910, "taskY": 36083, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.409912087627, 18.3962301348468], [121.42089841575, 18.3962301348468], [121.42089841575, 18.4066547107354], [121.409912087627, 18.4066547107354], [121.409912087627, 18.3962301348468]]]]}, "properties": {"taskId": 4503, "taskX": 27435, "taskY": 18088, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 17.7957657941708], [121.635131814149, 17.7957657941708], [121.635131814149, 17.800996044581], [121.629638650088, 17.800996044581], [121.629638650088, 17.7957657941708]]]]}, "properties": {"taskId": 5230, "taskX": 54910, "taskY": 36061, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 18.0570897635212], [121.591186501657, 18.0570897635212], [121.591186501657, 18.0623123014185], [121.585693337596, 18.0623123014185], [121.585693337596, 18.0570897635212]]]]}, "properties": {"taskId": 5242, "taskX": 54902, "taskY": 36111, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.720275857103, 17.6099929055511], [121.721649148118, 17.6099929055511], [121.721649148118, 17.6113018365434], [121.720275857103, 17.6113018365434], [121.720275857103, 17.6099929055511]]]]}, "properties": {"taskId": 5193, "taskX": 219706, "taskY": 144102, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.721649148118, 17.6113018365434], [121.723022439134, 17.6113018365434], [121.723022439134, 17.6126107580436], [121.721649148118, 17.6126107580436], [121.721649148118, 17.6113018365434]]]]}, "properties": {"taskId": 5196, "taskX": 219707, "taskY": 144103, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.2502199739071], [121.794433571933, 18.2502199739071], [121.794433571933, 18.271086106447], [121.772460915687, 18.271086106447], [121.772460915687, 18.2502199739071]]]]}, "properties": {"taskId": 4858, "taskX": 13734, "taskY": 9037, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.4764321941621], [121.662597634457, 17.4764321941621], [121.662597634457, 17.497389397627], [121.640624978211, 17.497389397627], [121.640624978211, 17.4764321941621]]]]}, "properties": {"taskId": 5209, "taskX": 13728, "taskY": 9000, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 17.497389397627], [121.684570290703, 17.497389397627], [121.684570290703, 17.5078670934123], [121.67358396258, 17.5078670934123], [121.67358396258, 17.497389397627]]]]}, "properties": {"taskId": 5215, "taskX": 27459, "taskY": 18002, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.723022439134, 17.9003416317732], [121.728515603195, 17.9003416317732], [121.728515603195, 17.9055688088617], [121.723022439134, 17.9055688088617], [121.723022439134, 17.9003416317732]]]]}, "properties": {"taskId": 5208, "taskX": 54927, "taskY": 36081, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.625699450843], [121.720275857103, 17.625699450843], [121.720275857103, 17.6283170754359], [121.717529275072, 17.6283170754359], [121.717529275072, 17.625699450843]]]]}, "properties": {"taskId": 5218, "taskX": 109852, "taskY": 72057, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 18.2084801928881], [121.508789040735, 18.2084801928881], [121.508789040735, 18.2293513352315], [121.486816384489, 18.2293513352315], [121.486816384489, 18.2084801928881]]]]}, "properties": {"taskId": 4880, "taskX": 13721, "taskY": 9035, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.687316872734, 18.2606533535982], [121.690063454765, 18.2606533535982], [121.690063454765, 18.2632616005889], [121.687316872734, 18.2632616005889], [121.687316872734, 18.2606533535982]]]]}, "properties": {"taskId": 5287, "taskX": 109841, "taskY": 72300, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.70036313738, 17.5576278893685], [121.701049782888, 17.5576278893685], [121.701049782888, 17.5582825456386], [121.70036313738, 17.5582825456386], [121.70036313738, 17.5576278893685]]]]}, "properties": {"taskId": 4231, "taskX": 439383, "taskY": 288124, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 18.0518670704211], [121.591186501657, 18.0518670704211], [121.591186501657, 18.0570897635212], [121.585693337596, 18.0570897635212], [121.585693337596, 18.0518670704211]]]]}, "properties": {"taskId": 5241, "taskX": 54902, "taskY": 36110, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.591186501657, 18.0570897635212], [121.596679665719, 18.0570897635212], [121.596679665719, 18.0623123014185], [121.591186501657, 18.0623123014185], [121.591186501657, 18.0570897635212]]]]}, "properties": {"taskId": 5244, "taskX": 54903, "taskY": 36111, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 17.7172936692013], [121.679077126642, 17.7172936692013], [121.679077126642, 17.7225262143437], [121.67358396258, 17.7225262143437], [121.67358396258, 17.7172936692013]]]]}, "properties": {"taskId": 5253, "taskX": 54918, "taskY": 36046, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 17.7225262143437], [121.684570290703, 17.7225262143437], [121.684570290703, 17.7277586067781], [121.679077126642, 17.7277586067781], [121.679077126642, 17.7225262143437]]]]}, "properties": {"taskId": 5256, "taskX": 54919, "taskY": 36047, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.7957657941708], [121.624145486026, 17.7957657941708], [121.624145486026, 17.800996044581], [121.618652321965, 17.800996044581], [121.618652321965, 17.7957657941708]]]]}, "properties": {"taskId": 5222, "taskX": 54908, "taskY": 36061, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 17.957832099161], [121.618652321965, 17.957832099161], [121.618652321965, 17.9682829048867], [121.607665993842, 17.9682829048867], [121.607665993842, 17.957832099161]]]]}, "properties": {"taskId": 5119, "taskX": 27453, "taskY": 18046, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.632385232119, 17.7905353905046], [121.633758523134, 17.7905353905046], [121.633758523134, 17.7918430057868], [121.632385232119, 17.7918430057868], [121.632385232119, 17.7905353905046]]]]}, "properties": {"taskId": 5237, "taskX": 219642, "taskY": 144240, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.633758523134, 17.7918430057868], [121.635131814149, 17.7918430057868], [121.635131814149, 17.7931506114923], [121.633758523134, 17.7931506114923], [121.633758523134, 17.7918430057868]]]]}, "properties": {"taskId": 5240, "taskX": 219643, "taskY": 144241, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.633758523134, 17.7905353905046], [121.635131814149, 17.7905353905046], [121.635131814149, 17.7918430057868], [121.633758523134, 17.7918430057868], [121.633758523134, 17.7905353905046]]]]}, "properties": {"taskId": 5239, "taskX": 219643, "taskY": 144240, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.635131814149, 17.7905353905046], [121.640624978211, 17.7905353905046], [121.640624978211, 17.7957657941708], [121.635131814149, 17.7957657941708], [121.635131814149, 17.7905353905046]]]]}, "properties": {"taskId": 5231, "taskX": 54911, "taskY": 36060, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.635131814149, 17.7957657941708], [121.640624978211, 17.7957657941708], [121.640624978211, 17.800996044581], [121.635131814149, 17.800996044581], [121.635131814149, 17.7957657941708]]]]}, "properties": {"taskId": 5232, "taskX": 54911, "taskY": 36061, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.632385232119, 17.7918430057868], [121.633758523134, 17.7918430057868], [121.633758523134, 17.7931506114923], [121.632385232119, 17.7931506114923], [121.632385232119, 17.7918430057868]]]]}, "properties": {"taskId": 5238, "taskX": 219642, "taskY": 144241, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.971588112917, 20.4500150553698], [121.971673943606, 20.4500150553698], [121.971673943606, 20.4500954767601], [121.971588112917, 20.4500954767601], [121.971588112917, 20.4500150553698]]]]}, "properties": {"taskId": 5305, "taskX": 3518224, "taskY": 2340638, "taskZoom": 22, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.971673943606, 20.4500954767601], [121.971759774294, 20.4500954767601], [121.971759774294, 20.4501758981084], [121.971673943606, 20.4501758981084], [121.971673943606, 20.4500954767601]]]]}, "properties": {"taskId": 5308, "taskX": 3518225, "taskY": 2340639, "taskZoom": 22, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 17.7486866486513], [121.508789040735, 17.7486866486513], [121.508789040735, 17.7591497523209], [121.497802712612, 17.7591497523209], [121.497802712612, 17.7486866486513]]]]}, "properties": {"taskId": 5311, "taskX": 27443, "taskY": 18026, "taskZoom": 15, "taskSplittable": true, "taskStatus": "INVALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 17.7277586067781], [121.750488259441, 17.7277586067781], [121.750488259441, 17.7382229333659], [121.739501931318, 17.7382229333659], [121.739501931318, 17.7277586067781]]]]}, "properties": {"taskId": 4079, "taskX": 27465, "taskY": 18024, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.659851052426, 18.1954344586268], [121.661224343442, 18.1954344586268], [121.661224343442, 18.1967390760021], [121.659851052426, 18.1967390760021], [121.659851052426, 18.1954344586268]]]]}, "properties": {"taskId": 5249, "taskX": 219662, "taskY": 144550, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.661224343442, 18.1967390760021], [121.662597634457, 18.1967390760021], [121.662597634457, 18.1980436836125], [121.661224343442, 18.1980436836125], [121.661224343442, 18.1967390760021]]]]}, "properties": {"taskId": 5252, "taskX": 219663, "taskY": 144551, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.1458517685528], [121.60217282978, 18.1458517685528], [121.60217282978, 18.1510716620724], [121.596679665719, 18.1510716620724], [121.596679665719, 18.1458517685528]]]]}, "properties": {"taskId": 5261, "taskX": 54904, "taskY": 36128, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.60217282978, 18.1510716620724], [121.607665993842, 18.1510716620724], [121.607665993842, 18.156291399692], [121.60217282978, 18.156291399692], [121.60217282978, 18.1510716620724]]]]}, "properties": {"taskId": 5264, "taskX": 54905, "taskY": 36129, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.591186501657, 18.0518670704211], [121.596679665719, 18.0518670704211], [121.596679665719, 18.0570897635212], [121.591186501657, 18.0570897635212], [121.591186501657, 18.0518670704211]]]]}, "properties": {"taskId": 5243, "taskX": 54903, "taskY": 36110, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.971588112917, 20.4500954767601], [121.971673943606, 20.4500954767601], [121.971673943606, 20.4501758981084], [121.971588112917, 20.4501758981084], [121.971588112917, 20.4500954767601]]]]}, "properties": {"taskId": 5306, "taskX": 3518224, "taskY": 2340639, "taskZoom": 22, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 17.7591497523209], [121.508789040735, 17.7591497523209], [121.508789040735, 17.7696122440617], [121.497802712612, 17.7696122440617], [121.497802712612, 17.7591497523209]]]]}, "properties": {"taskId": 5312, "taskX": 27443, "taskY": 18027, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 18.1928251945839], [121.659851052426, 18.1928251945839], [121.659851052426, 18.1954344586268], [121.657104470395, 18.1954344586268], [121.657104470395, 18.1928251945839]]]]}, "properties": {"taskId": 5245, "taskX": 109830, "taskY": 72274, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.659851052426, 18.1928251945839], [121.662597634457, 18.1928251945839], [121.662597634457, 18.1954344586268], [121.659851052426, 18.1954344586268], [121.659851052426, 18.1928251945839]]]]}, "properties": {"taskId": 5247, "taskX": 109831, "taskY": 72274, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.972274758425, 20.4488891514852], [121.972961403933, 20.4488891514852], [121.972961403933, 20.4495325261437], [121.972274758425, 20.4495325261437], [121.972274758425, 20.4488891514852]]]]}, "properties": {"taskId": 5295, "taskX": 439779, "taskY": 292578, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.1510716620724], [121.60217282978, 18.1510716620724], [121.60217282978, 18.156291399692], [121.596679665719, 18.156291399692], [121.596679665719, 18.1510716620724]]]]}, "properties": {"taskId": 5262, "taskX": 54904, "taskY": 36129, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 18.1954344586268], [121.659851052426, 18.1954344586268], [121.659851052426, 18.1980436836125], [121.657104470395, 18.1980436836125], [121.657104470395, 18.1954344586268]]]]}, "properties": {"taskId": 5246, "taskX": 109830, "taskY": 72275, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.5733389864572], [121.736755349288, 17.5733389864572], [121.736755349288, 17.5759573700272], [121.734008767257, 17.5759573700272], [121.734008767257, 17.5733389864572]]]]}, "properties": {"taskId": 4702, "taskX": 109858, "taskY": 72037, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.971673943606, 20.4500150553698], [121.971759774294, 20.4500150553698], [121.971759774294, 20.4500954767601], [121.971673943606, 20.4500954767601], [121.971673943606, 20.4500150553698]]]]}, "properties": {"taskId": 5307, "taskX": 3518225, "taskY": 2340638, "taskZoom": 22, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.8951143006479], [121.723022439134, 17.8951143006479], [121.723022439134, 17.9003416317732], [121.717529275072, 17.9003416317732], [121.717529275072, 17.8951143006479]]]]}, "properties": {"taskId": 5205, "taskX": 54926, "taskY": 36080, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.2606533535982], [121.687316872734, 18.2606533535982], [121.687316872734, 18.2632616005889], [121.684570290703, 18.2632616005889], [121.684570290703, 18.2606533535982]]]]}, "properties": {"taskId": 5285, "taskX": 109840, "taskY": 72300, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.687316872734, 18.2632616005889], [121.690063454765, 18.2632616005889], [121.690063454765, 18.2658698083971], [121.687316872734, 18.2658698083971], [121.687316872734, 18.2632616005889]]]]}, "properties": {"taskId": 5288, "taskX": 109841, "taskY": 72301, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.971588112917, 20.4488891514852], [121.972274758425, 20.4488891514852], [121.972274758425, 20.4495325261437], [121.971588112917, 20.4495325261437], [121.971588112917, 20.4488891514852]]]]}, "properties": {"taskId": 5293, "taskX": 439778, "taskY": 292578, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.972274758425, 20.4495325261437], [121.972961403933, 20.4495325261437], [121.972961403933, 20.4501758981084], [121.972274758425, 20.4501758981084], [121.972274758425, 20.4495325261437]]]]}, "properties": {"taskId": 5296, "taskX": 439779, "taskY": 292579, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.2632616005889], [121.687316872734, 18.2632616005889], [121.687316872734, 18.2658698083971], [121.684570290703, 18.2658698083971], [121.684570290703, 18.2632616005889]]]]}, "properties": {"taskId": 5286, "taskX": 109840, "taskY": 72301, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.343994118889, 17.8428325259552], [121.349487282951, 17.8428325259552], [121.349487282951, 17.8480613953027], [121.343994118889, 17.8480613953027], [121.343994118889, 17.8428325259552]]]]}, "properties": {"taskId": 5277, "taskX": 54858, "taskY": 36070, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.349487282951, 17.8480613953027], [121.354980447012, 17.8480613953027], [121.354980447012, 17.8532901110035], [121.349487282951, 17.8532901110035], [121.349487282951, 17.8480613953027]]]]}, "properties": {"taskId": 5280, "taskX": 54859, "taskY": 36071, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.2658698083971], [121.690063454765, 18.2658698083971], [121.690063454765, 18.271086106447], [121.684570290703, 18.271086106447], [121.684570290703, 18.2658698083971]]]]}, "properties": {"taskId": 5282, "taskX": 54920, "taskY": 36151, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.6178463491106], [121.701049782888, 17.6178463491106], [121.701049782888, 17.6230817882545], [121.695556618826, 17.6230817882545], [121.695556618826, 17.6178463491106]]]]}, "properties": {"taskId": 5270, "taskX": 54922, "taskY": 36027, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.971588112917, 20.4498542124628], [121.971759774294, 20.4498542124628], [121.971759774294, 20.4500150553698], [121.971588112917, 20.4500150553698], [121.971588112917, 20.4498542124628]]]]}, "properties": {"taskId": 5301, "taskX": 1759112, "taskY": 1170318, "taskZoom": 21, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.971759774294, 20.4500150553698], [121.971931435671, 20.4500150553698], [121.971931435671, 20.4501758981084], [121.971759774294, 20.4501758981084], [121.971759774294, 20.4500150553698]]]]}, "properties": {"taskId": 5304, "taskX": 1759113, "taskY": 1170319, "taskZoom": 21, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.6126107580436], [121.701049782888, 17.6126107580436], [121.701049782888, 17.6178463491106], [121.695556618826, 17.6178463491106], [121.695556618826, 17.6126107580436]]]]}, "properties": {"taskId": 5269, "taskX": 54922, "taskY": 36026, "taskZoom": 16, "taskSplittable": true, "taskStatus": "INVALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.6178463491106], [121.706542946949, 17.6178463491106], [121.706542946949, 17.6230817882545], [121.701049782888, 17.6230817882545], [121.701049782888, 17.6178463491106]]]]}, "properties": {"taskId": 5272, "taskX": 54923, "taskY": 36027, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.343994118889, 17.8323743264764], [121.354980447012, 17.8323743264764], [121.354980447012, 17.8428325259552], [121.343994118889, 17.8428325259552], [121.343994118889, 17.8323743264764]]]]}, "properties": {"taskId": 5275, "taskX": 27429, "taskY": 18034, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.971759774294, 20.4498542124628], [121.971931435671, 20.4498542124628], [121.971931435671, 20.4500150553698], [121.971759774294, 20.4500150553698], [121.971759774294, 20.4498542124628]]]]}, "properties": {"taskId": 5303, "taskX": 1759113, "taskY": 1170318, "taskZoom": 21, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.9055688088617], [121.723022439134, 17.9055688088617], [121.723022439134, 17.9107958318747], [121.717529275072, 17.9107958318747], [121.717529275072, 17.9055688088617]]]]}, "properties": {"taskId": 5265, "taskX": 54926, "taskY": 36082, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.723022439134, 17.9107958318747], [121.728515603195, 17.9107958318747], [121.728515603195, 17.9160227007731], [121.723022439134, 17.9160227007731], [121.723022439134, 17.9107958318747]]]]}, "properties": {"taskId": 5268, "taskX": 54927, "taskY": 36083, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.9107958318747], [121.723022439134, 17.9107958318747], [121.723022439134, 17.9160227007731], [121.717529275072, 17.9160227007731], [121.717529275072, 17.9107958318747]]]]}, "properties": {"taskId": 5266, "taskX": 54926, "taskY": 36083, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.723022439134, 17.9055688088617], [121.728515603195, 17.9055688088617], [121.728515603195, 17.9107958318747], [121.723022439134, 17.9107958318747], [121.723022439134, 17.9055688088617]]]]}, "properties": {"taskId": 5267, "taskX": 54927, "taskY": 36082, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.6047570866729], [121.753234841472, 17.6047570866729], [121.753234841472, 17.6073750150926], [121.750488259441, 17.6073750150926], [121.750488259441, 17.6047570866729]]]]}, "properties": {"taskId": 5314, "taskX": 109864, "taskY": 72049, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.971931435671, 20.4495325261437], [121.972274758425, 20.4495325261437], [121.972274758425, 20.4498542124628], [121.971931435671, 20.4498542124628], [121.971931435671, 20.4495325261437]]]]}, "properties": {"taskId": 5299, "taskX": 879557, "taskY": 585158, "taskZoom": 20, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.971588112917, 20.4495325261437], [121.971931435671, 20.4495325261437], [121.971931435671, 20.4498542124628], [121.971588112917, 20.4498542124628], [121.971588112917, 20.4495325261437]]]]}, "properties": {"taskId": 5297, "taskX": 879556, "taskY": 585158, "taskZoom": 20, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.971931435671, 20.4498542124628], [121.972274758425, 20.4498542124628], [121.972274758425, 20.4501758981084], [121.971931435671, 20.4501758981084], [121.971931435671, 20.4498542124628]]]]}, "properties": {"taskId": 5300, "taskX": 879557, "taskY": 585159, "taskZoom": 20, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 17.7591497523209], [121.497802712612, 17.7591497523209], [121.497802712612, 17.7696122440617], [121.486816384489, 17.7696122440617], [121.486816384489, 17.7591497523209]]]]}, "properties": {"taskId": 5310, "taskX": 27442, "taskY": 18027, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 17.7486866486513], [121.497802712612, 17.7486866486513], [121.497802712612, 17.7591497523209], [121.486816384489, 17.7591497523209], [121.486816384489, 17.7486866486513]]]]}, "properties": {"taskId": 5309, "taskX": 27442, "taskY": 18026, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.250610329843, 18.5369085570839], [121.256103493905, 18.5369085570839], [121.256103493905, 18.5421166512436], [121.250610329843, 18.5421166512436], [121.250610329843, 18.5369085570839]]]]}, "properties": {"taskId": 3888, "taskX": 54841, "taskY": 36203, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.525268532919, 17.602139120297], [121.530761696981, 17.602139120297], [121.530761696981, 17.6073750150926], [121.525268532919, 17.6073750150926], [121.525268532919, 17.602139120297]]]]}, "properties": {"taskId": 3943, "taskX": 54891, "taskY": 36024, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.162719704859, 18.6111088941238], [121.164092995874, 18.6111088941238], [121.164092995874, 18.6124103660366], [121.162719704859, 18.6124103660366], [121.162719704859, 18.6111088941238]]]]}, "properties": {"taskId": 3954, "taskX": 219300, "taskY": 144869, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 18.0205276547308], [121.706542946949, 18.0205276547308], [121.706542946949, 18.0309747467668], [121.695556618826, 18.0309747467668], [121.695556618826, 18.0205276547308]]]]}, "properties": {"taskId": 3963, "taskX": 27461, "taskY": 18052, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.217651345474, 18.5733618804414], [121.223144509536, 18.5733618804414], [121.223144509536, 18.5785688623248], [121.217651345474, 18.5785688623248], [121.217651345474, 18.5733618804414]]]]}, "properties": {"taskId": 3883, "taskX": 54835, "taskY": 36210, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.212158181413, 18.5629474396796], [121.217651345474, 18.5629474396796], [121.217651345474, 18.568154739547], [121.212158181413, 18.568154739547], [121.212158181413, 18.5629474396796]]]]}, "properties": {"taskId": 3877, "taskX": 54834, "taskY": 36208, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.217651345474, 18.568154739547], [121.223144509536, 18.568154739547], [121.223144509536, 18.5733618804414], [121.217651345474, 18.5733618804414], [121.217651345474, 18.568154739547]]]]}, "properties": {"taskId": 3880, "taskX": 54835, "taskY": 36209, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.162719704859, 18.6072044186551], [121.164092995874, 18.6072044186551], [121.164092995874, 18.6085059204325], [121.162719704859, 18.6085059204325], [121.162719704859, 18.6072044186551]]]]}, "properties": {"taskId": 3897, "taskX": 219300, "taskY": 144866, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.164092995874, 18.6085059204325], [121.16546628689, 18.6085059204325], [121.16546628689, 18.6098074122556], [121.164092995874, 18.6098074122556], [121.164092995874, 18.6085059204325]]]]}, "properties": {"taskId": 3900, "taskX": 219301, "taskY": 144867, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.519775368858, 17.602139120297], [121.522521950888, 17.602139120297], [121.522521950888, 17.6047570866729], [121.519775368858, 17.6047570866729], [121.519775368858, 17.602139120297]]]]}, "properties": {"taskId": 3945, "taskX": 109780, "taskY": 72048, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.522521950888, 17.602139120297], [121.525268532919, 17.602139120297], [121.525268532919, 17.6047570866729], [121.522521950888, 17.6047570866729], [121.522521950888, 17.602139120297]]]]}, "properties": {"taskId": 3947, "taskX": 109781, "taskY": 72048, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.519775368858, 17.6047570866729], [121.522521950888, 17.6047570866729], [121.522521950888, 17.6073750150926], [121.519775368858, 17.6073750150926], [121.519775368858, 17.6047570866729]]]]}, "properties": {"taskId": 3946, "taskX": 109780, "taskY": 72049, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.159973122828, 18.6098074122556], [121.161346413844, 18.6098074122556], [121.161346413844, 18.6111088941238], [121.159973122828, 18.6111088941238], [121.159973122828, 18.6098074122556]]]]}, "properties": {"taskId": 3901, "taskX": 219298, "taskY": 144868, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.161346413844, 18.6111088941238], [121.162719704859, 18.6111088941238], [121.162719704859, 18.6124103660366], [121.161346413844, 18.6124103660366], [121.161346413844, 18.6111088941238]]]]}, "properties": {"taskId": 3904, "taskX": 219299, "taskY": 144869, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.6597256051114], [121.690063454765, 17.6597256051114], [121.690063454765, 17.6649598274553], [121.684570290703, 17.6649598274553], [121.684570290703, 17.6597256051114]]]]}, "properties": {"taskId": 3918, "taskX": 54920, "taskY": 36035, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.169586159936, 18.6072044186551], [121.170959450951, 18.6072044186551], [121.170959450951, 18.6085059204325], [121.169586159936, 18.6085059204325], [121.169586159936, 18.6072044186551]]]]}, "properties": {"taskId": 3895, "taskX": 219305, "taskY": 144866, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.168212868921, 18.6085059204325], [121.169586159936, 18.6085059204325], [121.169586159936, 18.6098074122556], [121.168212868921, 18.6098074122556], [121.168212868921, 18.6085059204325]]]]}, "properties": {"taskId": 3894, "taskX": 219304, "taskY": 144867, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.168212868921, 18.6072044186551], [121.169586159936, 18.6072044186551], [121.169586159936, 18.6085059204325], [121.168212868921, 18.6085059204325], [121.168212868921, 18.6072044186551]]]]}, "properties": {"taskId": 3893, "taskX": 219304, "taskY": 144866, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.169586159936, 18.6085059204325], [121.170959450951, 18.6085059204325], [121.170959450951, 18.6098074122556], [121.169586159936, 18.6098074122556], [121.169586159936, 18.6085059204325]]]]}, "properties": {"taskId": 3896, "taskX": 219305, "taskY": 144867, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.159973122828, 18.6111088941238], [121.161346413844, 18.6111088941238], [121.161346413844, 18.6124103660366], [121.159973122828, 18.6124103660366], [121.159973122828, 18.6111088941238]]]]}, "properties": {"taskId": 3902, "taskX": 219298, "taskY": 144869, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.161346413844, 18.6098074122556], [121.162719704859, 18.6098074122556], [121.162719704859, 18.6111088941238], [121.161346413844, 18.6111088941238], [121.161346413844, 18.6098074122556]]]]}, "properties": {"taskId": 3903, "taskX": 219299, "taskY": 144868, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.690063454765, 17.6597256051114], [121.695556618826, 17.6597256051114], [121.695556618826, 17.6649598274553], [121.690063454765, 17.6649598274553], [121.690063454765, 17.6597256051114]]]]}, "properties": {"taskId": 3920, "taskX": 54921, "taskY": 36035, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.525268532919, 17.6073750150926], [121.530761696981, 17.6073750150926], [121.530761696981, 17.6126107580436], [121.525268532919, 17.6126107580436], [121.525268532919, 17.6073750150926]]]]}, "properties": {"taskId": 3944, "taskX": 54891, "taskY": 36025, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.164092995874, 18.6098074122556], [121.16546628689, 18.6098074122556], [121.16546628689, 18.6111088941238], [121.164092995874, 18.6111088941238], [121.164092995874, 18.6098074122556]]]]}, "properties": {"taskId": 3955, "taskX": 219301, "taskY": 144868, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.0309747467668], [121.695556618826, 18.0309747467668], [121.695556618826, 18.0414212187671], [121.684570290703, 18.0414212187671], [121.684570290703, 18.0309747467668]]]]}, "properties": {"taskId": 3962, "taskX": 27460, "taskY": 18053, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.16546628689, 18.6098074122556], [121.166839577905, 18.6098074122556], [121.166839577905, 18.6111088941238], [121.16546628689, 18.6111088941238], [121.16546628689, 18.6098074122556]]]]}, "properties": {"taskId": 3957, "taskX": 219302, "taskY": 144868, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.166839577905, 18.6111088941238], [121.168212868921, 18.6111088941238], [121.168212868921, 18.6124103660366], [121.166839577905, 18.6124103660366], [121.166839577905, 18.6111088941238]]]]}, "properties": {"taskId": 3960, "taskX": 219303, "taskY": 144869, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.16546628689, 18.6111088941238], [121.166839577905, 18.6111088941238], [121.166839577905, 18.6124103660366], [121.16546628689, 18.6124103660366], [121.16546628689, 18.6111088941238]]]]}, "properties": {"taskId": 3958, "taskX": 219302, "taskY": 144869, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78344724381, 17.5026283210481], [121.788940407872, 17.5026283210481], [121.788940407872, 17.5078670934123], [121.78344724381, 17.5078670934123], [121.78344724381, 17.5026283210481]]]]}, "properties": {"taskId": 3702, "taskX": 54938, "taskY": 36005, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 19.2696652931808], [121.728515603195, 19.3111433517365], [121.772460915687, 19.3111433517365], [121.772460915687, 19.2696652931808], [121.728515603195, 19.2696652931808]]]]}, "properties": {"taskId": 681, "taskX": 6866, "taskY": 4543, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 20.4064204714195], [121.992187478148, 20.4064204714195], [121.992187478148, 20.4270128107534], [121.970214821902, 20.4270128107534], [121.970214821902, 20.4064204714195]]]]}, "properties": {"taskId": 1540, "taskX": 13743, "taskY": 9141, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 20.6739052611303], [121.860351540672, 20.6739052611303], [121.860351540672, 20.6944615943621], [121.838378884426, 20.6944615943621], [121.838378884426, 20.6739052611303]]]]}, "properties": {"taskId": 1571, "taskX": 13737, "taskY": 9154, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 18.4379246502857], [122.080078103132, 18.4796090526366], [122.124023415624, 18.4796090526366], [122.124023415624, 18.4379246502857], [122.080078103132, 18.4379246502857]]]]}, "properties": {"taskId": 1314, "taskX": 6874, "taskY": 4523, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.6462451394485], [121.464843728242, 18.6878786828054], [121.508789040735, 18.6878786828054], [121.508789040735, 18.6462451394485], [121.464843728242, 18.6462451394485]]]]}, "properties": {"taskId": 338, "taskX": 6860, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.6878786828054], [121.42089841575, 18.7295019958367], [121.464843728242, 18.7295019958367], [121.464843728242, 18.6878786828054], [121.42089841575, 18.6878786828054]]]]}, "properties": {"taskId": 289, "taskX": 6859, "taskY": 4529, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.5916521172995], [121.904296853164, 20.6327842468519], [121.948242165656, 20.6327842468519], [121.948242165656, 20.5916521172995], [121.904296853164, 20.5916521172995]]]]}, "properties": {"taskId": 1020, "taskX": 6870, "taskY": 4575, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.895892556153], [121.552734353227, 18.9374644263732], [121.596679665719, 18.9374644263732], [121.596679665719, 18.895892556153], [121.552734353227, 18.895892556153]]]]}, "properties": {"taskId": 446, "taskX": 6862, "taskY": 4534, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.223144509536, 18.5212833222942], [121.245117165782, 18.5212833222942], [121.245117165782, 18.5421166512436], [121.223144509536, 18.5421166512436], [121.223144509536, 18.5212833222942]]]]}, "properties": {"taskId": 1651, "taskX": 13709, "taskY": 9050, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.895892556153], [121.684570290703, 18.9374644263732], [121.728515603195, 18.9374644263732], [121.728515603195, 18.895892556153], [121.684570290703, 18.895892556153]]]]}, "properties": {"taskId": 607, "taskX": 6865, "taskY": 4534, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.8951143006479], [121.739501931318, 17.8951143006479], [121.739501931318, 17.9055688088617], [121.728515603195, 17.9055688088617], [121.728515603195, 17.8951143006479]]]]}, "properties": {"taskId": 1761, "taskX": 27464, "taskY": 18040, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 17.9055688088617], [121.750488259441, 17.9055688088617], [121.750488259441, 17.9160227007731], [121.739501931318, 17.9160227007731], [121.739501931318, 17.9055688088617]]]]}, "properties": {"taskId": 1764, "taskX": 27465, "taskY": 18041, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.10594742916, 20.4270128107534], [122.108813428752, 20.3858253783768], [122.080078103132, 20.3858253783768], [122.080078103132, 20.4270128107534], [122.10594742916, 20.4270128107534]]]]}, "properties": {"taskId": 1346, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 19.1036482483685], [121.948242165656, 19.1451681929035], [121.992187478148, 19.1451681929035], [121.992187478148, 19.1036482483685], [121.948242165656, 19.1036482483685]]]]}, "properties": {"taskId": 1074, "taskX": 6871, "taskY": 4539, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 19.1036482483685], [121.728515603195, 19.1451681929035], [121.772460915687, 19.1451681929035], [121.772460915687, 19.1036482483685], [121.728515603195, 19.1036482483685]]]]}, "properties": {"taskId": 677, "taskX": 6866, "taskY": 4539, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 19.3111433517365], [121.684570290703, 19.3526108910439], [121.728515603195, 19.3526108910439], [121.728515603195, 19.3111433517365], [121.684570290703, 19.3111433517365]]]]}, "properties": {"taskId": 617, "taskX": 6865, "taskY": 4544, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.849365212549, 20.7869305890102], [121.860351540672, 20.7869305890102], [121.860351540672, 20.7972014307453], [121.849365212549, 20.7972014307453], [121.849365212549, 20.7869305890102]]]]}, "properties": {"taskId": 1504, "taskX": 27475, "taskY": 18319, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.048608847591, 19.3940678920553], [122.041617512548, 19.3526108910439], [122.03613279064, 19.3526108910439], [122.03613279064, 19.3940678920553], [122.048608847591, 19.3940678920553]]]]}, "properties": {"taskId": 1257, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.4379246502857], [121.508789040735, 18.4796090526366], [121.552734353227, 18.4796090526366], [121.552734353227, 18.4379246502857], [121.508789040735, 18.4379246502857]]]]}, "properties": {"taskId": 383, "taskX": 6861, "taskY": 4523, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.3545255259514], [121.860351540672, 18.3962301348468], [121.904296853164, 18.3962301348468], [121.904296853164, 18.3545255259514], [121.860351540672, 18.3545255259514]]]]}, "properties": {"taskId": 885, "taskX": 6869, "taskY": 4521, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 20.7869305890102], [121.841125466456, 20.7869305890102], [121.841125466456, 20.789498364982], [121.838378884426, 20.789498364982], [121.838378884426, 20.7869305890102]]]]}, "properties": {"taskId": 1513, "taskX": 109896, "taskY": 73276, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.841125466456, 20.789498364982], [121.843872048487, 20.789498364982], [121.843872048487, 20.7920660972647], [121.841125466456, 20.7920660972647], [121.841125466456, 20.789498364982]]]]}, "properties": {"taskId": 1516, "taskX": 109897, "taskY": 73277, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.6878786828054], [121.552734353227, 18.7295019958367], [121.596679665719, 18.7295019958367], [121.596679665719, 18.6878786828054], [121.552734353227, 18.6878786828054]]]]}, "properties": {"taskId": 441, "taskX": 6862, "taskY": 4529, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.267089822028, 18.5421166512436], [121.289062478274, 18.5421166512436], [121.289062478274, 18.5629474396796], [121.267089822028, 18.5629474396796], [121.267089822028, 18.5421166512436]]]]}, "properties": {"taskId": 1656, "taskX": 13711, "taskY": 9051, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.6878786828054], [121.508789040735, 18.7295019958367], [121.552734353227, 18.7295019958367], [121.552734353227, 18.6878786828054], [121.508789040735, 18.6878786828054]]]]}, "properties": {"taskId": 389, "taskX": 6861, "taskY": 4529, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.228961492445, 17.8951143006479], [122.224286489253, 17.8532901110035], [122.211914040609, 17.8532901110035], [122.211914040609, 17.8951143006479], [122.228961492445, 17.8951143006479]]]]}, "properties": {"taskId": 1441, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.4796090526366], [121.464843728242, 18.5212833222942], [121.508789040735, 18.5212833222942], [121.508789040735, 18.4796090526366], [121.464843728242, 18.4796090526366]]]]}, "properties": {"taskId": 334, "taskX": 6860, "taskY": 4524, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.14599607187, 18.4379246502857], [122.167968728117, 18.4379246502857], [122.167968728117, 18.4587681168231], [122.14599607187, 18.4587681168231], [122.14599607187, 18.4379246502857]]]]}, "properties": {"taskId": 1611, "taskX": 13751, "taskY": 9046, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.453857400119, 17.6649598274553], [121.464843728242, 17.6649598274553], [121.464843728242, 17.6754278152737], [121.453857400119, 17.6754278152737], [121.453857400119, 17.6649598274553]]]]}, "properties": {"taskId": 1719, "taskX": 27439, "taskY": 18018, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 18.2919497303851], [121.860351540672, 18.2919497303851], [121.860351540672, 18.3128108432568], [121.838378884426, 18.3128108432568], [121.838378884426, 18.2919497303851]]]]}, "properties": {"taskId": 1736, "taskX": 13737, "taskY": 9039, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.646118142272, 18.3440977989279], [121.651611306334, 18.3440977989279], [121.651611306334, 18.349311741122], [121.646118142272, 18.349311741122], [121.646118142272, 18.3440977989279]]]]}, "properties": {"taskId": 1743, "taskX": 54913, "taskY": 36166, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.920396910391], [121.904296853164, 20.9614396105096], [121.948242165656, 20.9614396105096], [121.948242165656, 20.920396910391], [121.904296853164, 20.920396910391]]]]}, "properties": {"taskId": 1028, "taskX": 6870, "taskY": 4583, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 19.2281767344513], [121.552734353227, 19.2696652931808], [121.596679665719, 19.2696652931808], [121.596679665719, 19.2281767344513], [121.552734353227, 19.2281767344513]]]]}, "properties": {"taskId": 454, "taskX": 6862, "taskY": 4542, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.841125466456, 20.7817949060169], [121.843872048487, 20.7817949060169], [121.843872048487, 20.7843627693537], [121.841125466456, 20.7843627693537], [121.841125466456, 20.7817949060169]]]]}, "properties": {"taskId": 1527, "taskX": 109897, "taskY": 73274, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.271086106447], [121.662597634457, 18.271086106447], [121.662597634457, 18.2919497303851], [121.640624978211, 18.2919497303851], [121.640624978211, 18.271086106447]]]]}, "properties": {"taskId": 1629, "taskX": 13728, "taskY": 9038, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.3446269403386], [121.970214821902, 20.3446269403386], [121.970214821902, 20.3652275339181], [121.948242165656, 20.3652275339181], [121.948242165656, 20.3446269403386]]]]}, "properties": {"taskId": 1549, "taskX": 13742, "taskY": 9138, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 20.3652275339181], [121.992187478148, 20.3652275339181], [121.992187478148, 20.3858253783768], [121.970214821902, 20.3858253783768], [121.970214821902, 20.3652275339181]]]]}, "properties": {"taskId": 1552, "taskX": 13743, "taskY": 9139, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 20.6739052611303], [121.81640622818, 20.6739052611303], [121.81640622818, 20.6944615943621], [121.794433571933, 20.6944615943621], [121.794433571933, 20.6739052611303]]]]}, "properties": {"taskId": 1567, "taskX": 13735, "taskY": 9154, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 20.7766590483203], [121.827392556303, 20.7766590483203], [121.827392556303, 20.7869305890102], [121.81640622818, 20.7869305890102], [121.81640622818, 20.7766590483203]]]]}, "properties": {"taskId": 1573, "taskX": 27472, "taskY": 18318, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.827392556303, 20.7869305890102], [121.838378884426, 20.7869305890102], [121.838378884426, 20.7972014307453], [121.827392556303, 20.7972014307453], [121.827392556303, 20.7869305890102]]]]}, "properties": {"taskId": 1576, "taskX": 27473, "taskY": 18319, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 20.7663868089583], [121.827392556303, 20.7663868089583], [121.827392556303, 20.7766590483203], [121.81640622818, 20.7766590483203], [121.81640622818, 20.7663868089583]]]]}, "properties": {"taskId": 1578, "taskX": 27472, "taskY": 18317, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.2919497303851], [121.684570290703, 18.2919497303851], [121.684570290703, 18.3128108432568], [121.662597634457, 18.3128108432568], [121.662597634457, 18.2919497303851]]]]}, "properties": {"taskId": 1632, "taskX": 13729, "taskY": 9039, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.4170786554759], [121.530761696981, 18.4170786554759], [121.530761696981, 18.4379246502857], [121.508789040735, 18.4379246502857], [121.508789040735, 18.4170786554759]]]]}, "properties": {"taskId": 1638, "taskX": 13722, "taskY": 9045, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 17.5602465002479], [121.684570290703, 17.5602465002479], [121.684570290703, 17.5811940234556], [121.662597634457, 17.5811940234556], [121.662597634457, 17.5602465002479]]]]}, "properties": {"taskId": 1707, "taskX": 13729, "taskY": 9004, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 17.6858951936713], [121.992187478148, 17.7277586067781], [122.03613279064, 17.7277586067781], [122.03613279064, 17.6858951936713], [121.992187478148, 17.6858951936713]]]]}, "properties": {"taskId": 1130, "taskX": 6872, "taskY": 4505, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.6046013852398], [121.376953103258, 18.6462451394485], [121.42089841575, 18.6462451394485], [121.42089841575, 18.6046013852398], [121.376953103258, 18.6046013852398]]]]}, "properties": {"taskId": 239, "taskX": 6858, "taskY": 4527, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.3545255259514], [121.728515603195, 18.3962301348468], [121.772460915687, 18.3962301348468], [121.772460915687, 18.3545255259514], [121.728515603195, 18.3545255259514]]]]}, "properties": {"taskId": 659, "taskX": 6866, "taskY": 4521, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.8543103586344], [121.640624978211, 18.895892556153], [121.684570290703, 18.895892556153], [121.684570290703, 18.8543103586344], [121.640624978211, 18.8543103586344]]]]}, "properties": {"taskId": 551, "taskX": 6864, "taskY": 4533, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.934177834547, 20.0559312617487], [121.904296853164, 20.0839976985453], [121.904296853164, 20.0972062236316], [121.948242165656, 20.0972062236316], [121.948242165656, 20.0559312617487], [121.934177834547, 20.0559312617487]]]]}, "properties": {"taskId": 1007, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 20.6944615943621], [121.838378884426, 20.6944615943621], [121.838378884426, 20.7150151419632], [121.81640622818, 20.7150151419632], [121.81640622818, 20.6944615943621]]]]}, "properties": {"taskId": 1570, "taskX": 13736, "taskY": 9155, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.256472465186, 17.518344184812], [122.257943098984, 17.5099294294644], [122.255859353101, 17.5097794531548], [122.255859353101, 17.518344184812], [122.256472465186, 17.518344184812]]]]}, "properties": {"taskId": 1461, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 18.5212833222942], [121.223144509536, 18.5212833222942], [121.223144509536, 18.5421166512436], [121.20117185329, 18.5421166512436], [121.20117185329, 18.5212833222942]]]]}, "properties": {"taskId": 1649, "taskX": 13708, "taskY": 9050, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.2502199739071], [121.970214821902, 18.2502199739071], [121.970214821902, 18.271086106447], [121.948242165656, 18.271086106447], [121.948242165656, 18.2502199739071]]]]}, "properties": {"taskId": 1694, "taskX": 13742, "taskY": 9037, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 20.3858253783768], [121.992187478148, 20.3858253783768], [121.992187478148, 20.4064204714195], [121.970214821902, 20.4064204714195], [121.970214821902, 20.3858253783768]]]]}, "properties": {"taskId": 1539, "taskX": 13743, "taskY": 9140, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 20.6739052611303], [121.838378884426, 20.6739052611303], [121.838378884426, 20.6944615943621], [121.81640622818, 20.6944615943621], [121.81640622818, 20.6739052611303]]]]}, "properties": {"taskId": 1569, "taskX": 13736, "taskY": 9154, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 20.6944615943621], [121.860351540672, 20.6944615943621], [121.860351540672, 20.7150151419632], [121.838378884426, 20.7150151419632], [121.838378884426, 20.6944615943621]]]]}, "properties": {"taskId": 1572, "taskX": 13737, "taskY": 9155, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.189941384363, 18.4587681168231], [122.211914040609, 18.4587681168231], [122.211914040609, 18.4796090526366], [122.189941384363, 18.4796090526366], [122.189941384363, 18.4587681168231]]]]}, "properties": {"taskId": 1624, "taskX": 13753, "taskY": 9047, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 18.5421166512436], [121.223144509536, 18.5421166512436], [121.223144509536, 18.5629474396796], [121.20117185329, 18.5629474396796], [121.20117185329, 18.5421166512436]]]]}, "properties": {"taskId": 1650, "taskX": 13708, "taskY": 9051, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 18.7711150590949], [121.245117165782, 18.812717853159], [121.289062478274, 18.812717853159], [121.289062478274, 18.7711150590949], [121.245117165782, 18.7711150590949]]]]}, "properties": {"taskId": 123, "taskX": 6855, "taskY": 4531, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 20.9614396105096], [121.860351540672, 21.0024710507632], [121.904296853164, 21.0024710507632], [121.904296853164, 20.9614396105096], [121.860351540672, 20.9614396105096]]]]}, "properties": {"taskId": 942, "taskX": 6869, "taskY": 4584, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.9055688088617], [121.739501931318, 17.9055688088617], [121.739501931318, 17.9160227007731], [121.728515603195, 17.9160227007731], [121.728515603195, 17.9055688088617]]]]}, "properties": {"taskId": 1762, "taskX": 27464, "taskY": 18041, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 18.2502199739071], [121.992187478148, 18.2502199739071], [121.992187478148, 18.271086106447], [121.970214821902, 18.271086106447], [121.970214821902, 18.2502199739071]]]]}, "properties": {"taskId": 1696, "taskX": 13743, "taskY": 9037, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 20.789498364982], [121.841125466456, 20.789498364982], [121.841125466456, 20.7920660972647], [121.838378884426, 20.7920660972647], [121.838378884426, 20.789498364982]]]]}, "properties": {"taskId": 1514, "taskX": 109896, "taskY": 73277, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.238311498829, 17.9787330924414], [122.233636495637, 17.9369286344415], [122.211914040609, 17.9369286344415], [122.211914040609, 17.9787330924414], [122.238311498829, 17.9787330924414]]]]}, "properties": {"taskId": 1443, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 18.7711150590949], [121.157226540798, 18.812717853159], [121.20117185329, 18.812717853159], [121.20117185329, 18.7711150590949], [121.157226540798, 18.7711150590949]]]]}, "properties": {"taskId": 72, "taskX": 6853, "taskY": 4531, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 19.1451681929035], [121.860351540672, 19.1866776946495], [121.904296853164, 19.1866776946495], [121.904296853164, 19.1451681929035], [121.860351540672, 19.1451681929035]]]]}, "properties": {"taskId": 904, "taskX": 6869, "taskY": 4540, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.255859353101, 18.0934264417488], [122.250618656717, 18.0887378564272], [122.247661505213, 18.0623123014185], [122.211914040609, 18.0623123014185], [122.211914040609, 18.104087012639], [122.255859353101, 18.104087012639], [122.255859353101, 18.0934264417488]]]]}, "properties": {"taskId": 1446, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.101656435728, 19.0621178802261], [121.093392317734, 19.0883890902148], [121.102668686092, 19.1036482483685], [121.113281228305, 19.1036482483685], [121.113281228305, 19.0621178802261], [121.101656435728, 19.0621178802261]]]]}, "properties": {"taskId": 40, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 20.5505088906724], [121.816406228179, 20.5916521172995], [121.860351540672, 20.5916521172995], [121.860351540672, 20.5505088906724], [121.816406228179, 20.5505088906724]]]]}, "properties": {"taskId": 850, "taskX": 6868, "taskY": 4574, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.849365212549, 20.7766590483203], [121.860351540672, 20.7766590483203], [121.860351540672, 20.7869305890102], [121.849365212549, 20.7869305890102], [121.849365212549, 20.7766590483203]]]]}, "properties": {"taskId": 1503, "taskX": 27475, "taskY": 18318, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.7295019958367], [121.596679665719, 18.7711150590949], [121.640624978211, 18.7711150590949], [121.640624978211, 18.7295019958367], [121.596679665719, 18.7295019958367]]]]}, "properties": {"taskId": 495, "taskX": 6863, "taskY": 4530, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.6462451394485], [121.552734353227, 18.6878786828054], [121.596679665719, 18.6878786828054], [121.596679665719, 18.6462451394485], [121.552734353227, 18.6462451394485]]]]}, "properties": {"taskId": 440, "taskX": 6862, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.7295019958367], [121.464843728242, 18.7711150590949], [121.508789040735, 18.7711150590949], [121.508789040735, 18.7295019958367], [121.464843728242, 18.7295019958367]]]]}, "properties": {"taskId": 340, "taskX": 6860, "taskY": 4530, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.4796090526366], [121.508789040735, 18.5212833222942], [121.552734353227, 18.5212833222942], [121.552734353227, 18.4796090526366], [121.508789040735, 18.4796090526366]]]]}, "properties": {"taskId": 384, "taskX": 6861, "taskY": 4524, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 17.6754278152737], [121.453857400119, 17.6754278152737], [121.453857400119, 17.6858951936713], [121.442871071996, 17.6858951936713], [121.442871071996, 17.6754278152737]]]]}, "properties": {"taskId": 1718, "taskX": 27438, "taskY": 18019, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.349311741122], [121.646118142272, 18.349311741122], [121.646118142272, 18.3545255259514], [121.640624978211, 18.3545255259514], [121.640624978211, 18.349311741122]]]]}, "properties": {"taskId": 1742, "taskX": 54912, "taskY": 36167, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.058105446886, 18.2502199739071], [122.080078103132, 18.2502199739071], [122.080078103132, 18.271086106447], [122.058105446886, 18.271086106447], [122.058105446886, 18.2502199739071]]]]}, "properties": {"taskId": 1756, "taskX": 13747, "taskY": 9037, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 17.602139120297], [121.684570290703, 17.602139120297], [121.684570290703, 17.6230817882545], [121.662597634457, 17.6230817882545], [121.662597634457, 17.602139120297]]]]}, "properties": {"taskId": 1767, "taskX": 13729, "taskY": 9006, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 17.602139120297], [121.750488259441, 17.602139120297], [121.750488259441, 17.6126107580436], [121.739501931318, 17.6126107580436], [121.739501931318, 17.602139120297]]]]}, "properties": {"taskId": 1595, "taskX": 27465, "taskY": 18012, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.5629474396796], [121.376953103258, 18.6046013852398], [121.42089841575, 18.6046013852398], [121.42089841575, 18.5629474396796], [121.376953103258, 18.5629474396796]]]]}, "properties": {"taskId": 238, "taskX": 6858, "taskY": 4526, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.5629474396796], [121.42089841575, 18.6046013852398], [121.464843728242, 18.6046013852398], [121.464843728242, 18.5629474396796], [121.42089841575, 18.5629474396796]]]]}, "properties": {"taskId": 286, "taskX": 6859, "taskY": 4526, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.3962301348468], [121.904296853164, 18.4379246502857], [121.948242165656, 18.4379246502857], [121.948242165656, 18.3962301348468], [121.904296853164, 18.3962301348468]]]]}, "properties": {"taskId": 970, "taskX": 6870, "taskY": 4522, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 18.5629474396796], [122.167968728117, 18.6046013852398], [122.211914040609, 18.6046013852398], [122.211914040609, 18.5629474396796], [122.167968728117, 18.5629474396796]]]]}, "properties": {"taskId": 1421, "taskX": 6876, "taskY": 4526, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.267775796302, 18.104087012639], [122.255859353101, 18.0934264417488], [122.255859353101, 18.104087012639], [122.267775796302, 18.104087012639]]]]}, "properties": {"taskId": 1463, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.14599607187, 18.4796090526366], [122.167968728117, 18.4796090526366], [122.167968728117, 18.5004474552763], [122.14599607187, 18.5004474552763], [122.14599607187, 18.4796090526366]]]]}, "properties": {"taskId": 1615, "taskX": 13751, "taskY": 9048, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 18.4170786554759], [122.14599607187, 18.4170786554759], [122.14599607187, 18.4379246502857], [122.124023415624, 18.4379246502857], [122.124023415624, 18.4170786554759]]]]}, "properties": {"taskId": 1618, "taskX": 13750, "taskY": 9045, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 18.5629474396796], [121.333007790766, 18.6046013852398], [121.376953103258, 18.6046013852398], [121.376953103258, 18.5629474396796], [121.333007790766, 18.5629474396796]]]]}, "properties": {"taskId": 193, "taskX": 6857, "taskY": 4526, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 20.7150151419632], [121.794433571933, 20.7150151419632], [121.794433571933, 20.7355659016665], [121.772460915687, 20.7355659016665], [121.772460915687, 20.7150151419632]]]]}, "properties": {"taskId": 1557, "taskX": 13734, "taskY": 9156, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 20.7355659016665], [121.81640622818, 20.7355659016665], [121.81640622818, 20.7561138712068], [121.794433571933, 20.7561138712068], [121.794433571933, 20.7355659016665]]]]}, "properties": {"taskId": 1560, "taskX": 13735, "taskY": 9157, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 18.5212833222942], [122.167968728117, 18.5629474396796], [122.211914040609, 18.5629474396796], [122.211914040609, 18.5212833222942], [122.167968728117, 18.5212833222942]]]]}, "properties": {"taskId": 1420, "taskX": 6876, "taskY": 4525, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 19.6011941578891], [121.860351540672, 19.6425875306324], [121.904296853164, 19.6425875306324], [121.904296853164, 19.6011941578891], [121.860351540672, 19.6011941578891]]]]}, "properties": {"taskId": 915, "taskX": 6869, "taskY": 4551, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.189941384363, 18.4483466997417], [122.200927712486, 18.4483466997417], [122.200927712486, 18.4587681168231], [122.189941384363, 18.4587681168231], [122.189941384363, 18.4483466997417]]]]}, "properties": {"taskId": 1690, "taskX": 27506, "taskY": 18093, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 20.7972014307453], [121.772460915687, 20.8382778024909], [121.816406228179, 20.8382778024909], [121.816406228179, 20.7972014307453], [121.772460915687, 20.7972014307453]]]]}, "properties": {"taskId": 779, "taskX": 6867, "taskY": 4580, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 19.1451681929035], [121.684570290703, 19.1866776946495], [121.728515603195, 19.1866776946495], [121.728515603195, 19.1451681929035], [121.684570290703, 19.1451681929035]]]]}, "properties": {"taskId": 613, "taskX": 6865, "taskY": 4540, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.4064204714195], [121.92626950941, 20.4064204714195], [121.92626950941, 20.4270128107534], [121.904296853164, 20.4270128107534], [121.904296853164, 20.4064204714195]]]]}, "properties": {"taskId": 1542, "taskX": 13740, "taskY": 9141, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 20.7150151419632], [121.860351540672, 20.7150151419632], [121.860351540672, 20.7355659016665], [121.838378884426, 20.7355659016665], [121.838378884426, 20.7150151419632]]]]}, "properties": {"taskId": 1563, "taskX": 13737, "taskY": 9156, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.3962301348468], [121.596679665719, 18.4379246502857], [121.640624978211, 18.4379246502857], [121.640624978211, 18.3962301348468], [121.596679665719, 18.3962301348468]]]]}, "properties": {"taskId": 487, "taskX": 6863, "taskY": 4522, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 20.3858253783768], [121.816406228179, 20.4270128107534], [121.860351540672, 20.4270128107534], [121.860351540672, 20.3858253783768], [121.816406228179, 20.3858253783768]]]]}, "properties": {"taskId": 846, "taskX": 6868, "taskY": 4570, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.841125466456, 20.7869305890102], [121.843872048487, 20.7869305890102], [121.843872048487, 20.789498364982], [121.841125466456, 20.789498364982], [121.841125466456, 20.7869305890102]]]]}, "properties": {"taskId": 1515, "taskX": 109897, "taskY": 73276, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.453857400119, 17.6754278152737], [121.464843728242, 17.6754278152737], [121.464843728242, 17.6858951936713], [121.453857400119, 17.6858951936713], [121.453857400119, 17.6754278152737]]]]}, "properties": {"taskId": 1720, "taskX": 27439, "taskY": 18019, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 18.4587681168231], [122.14599607187, 18.4587681168231], [122.14599607187, 18.4796090526366], [122.124023415624, 18.4796090526366], [122.124023415624, 18.4587681168231]]]]}, "properties": {"taskId": 1610, "taskX": 13750, "taskY": 9047, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.5212833222942], [121.464843728242, 18.5629474396796], [121.508789040735, 18.5629474396796], [121.508789040735, 18.5212833222942], [121.464843728242, 18.5212833222942]]]]}, "properties": {"taskId": 335, "taskX": 6860, "taskY": 4525, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 18.271086106447], [121.860351540672, 18.271086106447], [121.860351540672, 18.2919497303851], [121.838378884426, 18.2919497303851], [121.838378884426, 18.271086106447]]]]}, "properties": {"taskId": 1735, "taskX": 13737, "taskY": 9038, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.8951143006479], [121.772460915687, 17.8951143006479], [121.772460915687, 17.9160227007731], [121.750488259441, 17.9160227007731], [121.750488259441, 17.8951143006479]]]]}, "properties": {"taskId": 1739, "taskX": 13733, "taskY": 9020, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.646118142272, 18.349311741122], [121.651611306334, 18.349311741122], [121.651611306334, 18.3545255259514], [121.646118142272, 18.3545255259514], [121.646118142272, 18.349311741122]]]]}, "properties": {"taskId": 1744, "taskX": 54913, "taskY": 36167, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 17.6649598274553], [121.453857400119, 17.6649598274553], [121.453857400119, 17.6754278152737], [121.442871071996, 17.6754278152737], [121.442871071996, 17.6649598274553]]]]}, "properties": {"taskId": 1717, "taskX": 27438, "taskY": 18018, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.058105446886, 18.2293513352315], [122.080078103132, 18.2293513352315], [122.080078103132, 18.2502199739071], [122.058105446886, 18.2502199739071], [122.058105446886, 18.2293513352315]]]]}, "properties": {"taskId": 1755, "taskX": 13747, "taskY": 9036, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.4578961515381], [121.959228493779, 20.4578961515381], [121.959228493779, 20.4681892191306], [121.948242165656, 20.4681892191306], [121.948242165656, 20.4578961515381]]]]}, "properties": {"taskId": 1778, "taskX": 27484, "taskY": 18287, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 19.6011941578891], [121.816406228179, 19.6425875306324], [121.860351540672, 19.6425875306324], [121.860351540672, 19.6011941578891], [121.816406228179, 19.6011941578891]]]]}, "properties": {"taskId": 836, "taskX": 6868, "taskY": 4551, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.3128108432568], [121.948242165656, 18.3545255259514], [121.992187478148, 18.3545255259514], [121.992187478148, 18.3128108432568], [121.948242165656, 18.3128108432568]]]]}, "properties": {"taskId": 1055, "taskX": 6871, "taskY": 4520, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 18.4796090526366], [121.816406228179, 18.5212833222942], [121.860351540672, 18.5212833222942], [121.860351540672, 18.4796090526366], [121.816406228179, 18.4796090526366]]]]}, "properties": {"taskId": 809, "taskX": 6868, "taskY": 4524, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.5629474396796], [121.992187478148, 18.6046013852398], [122.03613279064, 18.6046013852398], [122.03613279064, 18.5629474396796], [121.992187478148, 18.5629474396796]]]]}, "properties": {"taskId": 1151, "taskX": 6872, "taskY": 4526, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.5212833222942], [121.42089841575, 18.5629474396796], [121.464843728242, 18.5629474396796], [121.464843728242, 18.5212833222942], [121.42089841575, 18.5212833222942]]]]}, "properties": {"taskId": 285, "taskX": 6859, "taskY": 4525, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.166980354192, 18.8543103586344], [121.157226540798, 18.885355476458], [121.157226540798, 18.895892556153], [121.20117185329, 18.895892556153], [121.20117185329, 18.8543103586344], [121.166980354192, 18.8543103586344]]]]}, "properties": {"taskId": 74, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 20.7150151419632], [121.838378884426, 20.7150151419632], [121.838378884426, 20.7355659016665], [121.81640622818, 20.7355659016665], [121.81640622818, 20.7150151419632]]]]}, "properties": {"taskId": 1561, "taskX": 13736, "taskY": 9156, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.189941384363, 18.4379246502857], [122.200927712486, 18.4379246502857], [122.200927712486, 18.4483466997417], [122.189941384363, 18.4483466997417], [122.189941384363, 18.4379246502857]]]]}, "properties": {"taskId": 1689, "taskX": 27506, "taskY": 18092, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 19.2281767344513], [121.508789040735, 19.2281767344513], [121.508789040735, 19.2489223251446], [121.486816384489, 19.2489223251446], [121.486816384489, 19.2281767344513]]]]}, "properties": {"taskId": 1603, "taskX": 13721, "taskY": 9084, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.6327842468519], [121.904296853164, 20.6739052611303], [121.948242165656, 20.6739052611303], [121.948242165656, 20.6327842468519], [121.904296853164, 20.6327842468519]]]]}, "properties": {"taskId": 1021, "taskX": 6870, "taskY": 4576, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 20.7817949060169], [121.841125466456, 20.7817949060169], [121.841125466456, 20.7843627693537], [121.838378884426, 20.7843627693537], [121.838378884426, 20.7817949060169]]]]}, "properties": {"taskId": 1525, "taskX": 109896, "taskY": 73274, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.841125466456, 20.7843627693537], [121.843872048487, 20.7843627693537], [121.843872048487, 20.7869305890102], [121.841125466456, 20.7869305890102], [121.841125466456, 20.7843627693537]]]]}, "properties": {"taskId": 1528, "taskX": 109897, "taskY": 73275, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 18.6462451394485], [121.333007790766, 18.6878786828054], [121.376953103258, 18.6878786828054], [121.376953103258, 18.6462451394485], [121.333007790766, 18.6462451394485]]]]}, "properties": {"taskId": 195, "taskX": 6857, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 20.3446269403386], [121.992187478148, 20.3446269403386], [121.992187478148, 20.3652275339181], [121.970214821902, 20.3652275339181], [121.970214821902, 20.3446269403386]]]]}, "properties": {"taskId": 1551, "taskX": 13743, "taskY": 9138, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 17.9160227007731], [121.684570290703, 17.9160227007731], [121.684570290703, 17.9369286344414], [121.662597634457, 17.9369286344414], [121.662597634457, 17.9160227007731]]]]}, "properties": {"taskId": 1532, "taskX": 13729, "taskY": 9021, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 20.6944615943621], [121.794433571933, 20.6944615943621], [121.794433571933, 20.7150151419632], [121.772460915687, 20.7150151419632], [121.772460915687, 20.6944615943621]]]]}, "properties": {"taskId": 1566, "taskX": 13734, "taskY": 9155, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.827392556303, 20.7766590483203], [121.838378884426, 20.7766590483203], [121.838378884426, 20.7869305890102], [121.827392556303, 20.7869305890102], [121.827392556303, 20.7766590483203]]]]}, "properties": {"taskId": 1575, "taskX": 27473, "taskY": 18318, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 18.5837756851588], [121.223144509536, 18.5837756851588], [121.223144509536, 18.6046013852398], [121.20117185329, 18.6046013852398], [121.20117185329, 18.5837756851588]]]]}, "properties": {"taskId": 1658, "taskX": 13708, "taskY": 9053, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.5212833222942], [121.508789040735, 18.5629474396796], [121.552734353227, 18.5629474396796], [121.552734353227, 18.5212833222942], [121.508789040735, 18.5212833222942]]]]}, "properties": {"taskId": 385, "taskX": 6861, "taskY": 4525, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 19.1866776946495], [121.245117165782, 19.2281767344513], [121.289062478274, 19.2281767344513], [121.289062478274, 19.1866776946495], [121.245117165782, 19.1866776946495]]]]}, "properties": {"taskId": 133, "taskX": 6855, "taskY": 4541, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 19.7134702961282], [122.113779705229, 19.6839702325013], [122.080078103132, 19.6839702325013], [122.080078103132, 19.7253422446642], [122.124023415624, 19.7253422446642], [122.124023415624, 19.7134702961282]]]]}, "properties": {"taskId": 1329, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.5212833222942], [121.640624978211, 18.5629474396796], [121.684570290703, 18.5629474396796], [121.684570290703, 18.5212833222942], [121.640624978211, 18.5212833222942]]]]}, "properties": {"taskId": 543, "taskX": 6864, "taskY": 4525, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.299804665593, 18.1876065493462], [122.299804665593, 18.2293513352315], [122.343749978085, 18.2293513352315], [122.343749978085, 18.1876065493462], [122.299804665593, 18.1876065493462]]]]}, "properties": {"taskId": 1478, "taskX": 6879, "taskY": 4517, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 20.7355659016665], [121.794433571933, 20.7355659016665], [121.794433571933, 20.7561138712068], [121.772460915687, 20.7561138712068], [121.772460915687, 20.7355659016665]]]]}, "properties": {"taskId": 1558, "taskX": 13734, "taskY": 9157, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 18.5004474552763], [122.14599607187, 18.5004474552763], [122.14599607187, 18.5212833222942], [122.124023415624, 18.5212833222942], [122.124023415624, 18.5004474552763]]]]}, "properties": {"taskId": 1614, "taskX": 13750, "taskY": 9049, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.14599607187, 18.3962301348468], [122.167968728117, 18.3962301348468], [122.167968728117, 18.4170786554759], [122.14599607187, 18.4170786554759], [122.14599607187, 18.3962301348468]]]]}, "properties": {"taskId": 1619, "taskX": 13751, "taskY": 9044, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.2084801928881], [121.662597634457, 18.2084801928881], [121.662597634457, 18.2293513352315], [121.640624978211, 18.2293513352315], [121.640624978211, 18.2084801928881]]]]}, "properties": {"taskId": 1626, "taskX": 13728, "taskY": 9035, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.4587681168231], [121.442871071996, 18.4587681168231], [121.442871071996, 18.4796090526366], [121.42089841575, 18.4796090526366], [121.42089841575, 18.4587681168231]]]]}, "properties": {"taskId": 1642, "taskX": 13718, "taskY": 9047, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.7295019958367], [121.508789040735, 18.7711150590949], [121.552734353227, 18.7711150590949], [121.552734353227, 18.7295019958367], [121.508789040735, 18.7295019958367]]]]}, "properties": {"taskId": 390, "taskX": 6861, "taskY": 4530, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.8543103586344], [121.552734353227, 18.895892556153], [121.596679665719, 18.895892556153], [121.596679665719, 18.8543103586344], [121.552734353227, 18.8543103586344]]]]}, "properties": {"taskId": 445, "taskX": 6862, "taskY": 4533, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.123143426709, 20.1797234992999], [122.124023415624, 20.1670581014219], [122.124023415624, 20.1384703089924], [122.080078103132, 20.1384703089924], [122.080078103132, 20.1797234992999], [122.123143426709, 20.1797234992999]]]]}, "properties": {"taskId": 1340, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 19.5183754752406], [121.992187478148, 19.5597901331299], [122.03613279064, 19.5597901331299], [122.03613279064, 19.5183754752406], [121.992187478148, 19.5183754752406]]]]}, "properties": {"taskId": 1174, "taskX": 6872, "taskY": 4549, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.14599607187, 18.5004474552763], [122.167968728117, 18.5004474552763], [122.167968728117, 18.5212833222942], [122.14599607187, 18.5212833222942], [122.14599607187, 18.5004474552763]]]]}, "properties": {"taskId": 1616, "taskX": 13751, "taskY": 9049, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 17.6126107580436], [121.750488259441, 17.6126107580436], [121.750488259441, 17.6230817882545], [121.739501931318, 17.6230817882545], [121.739501931318, 17.6126107580436]]]]}, "properties": {"taskId": 1596, "taskX": 27465, "taskY": 18013, "taskZoom": 15, "taskSplittable": true, "taskStatus": "LOCKED_FOR_MAPPING"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.14599607187, 18.4170786554759], [122.167968728117, 18.4170786554759], [122.167968728117, 18.4379246502857], [122.14599607187, 18.4379246502857], [122.14599607187, 18.4170786554759]]]]}, "properties": {"taskId": 1620, "taskX": 13751, "taskY": 9045, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.4379246502857], [121.442871071996, 18.4379246502857], [121.442871071996, 18.4587681168231], [121.42089841575, 18.4587681168231], [121.42089841575, 18.4379246502857]]]]}, "properties": {"taskId": 1641, "taskX": 13718, "taskY": 9046, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 18.4587681168231], [121.464843728242, 18.4587681168231], [121.464843728242, 18.4796090526366], [121.442871071996, 18.4796090526366], [121.442871071996, 18.4587681168231]]]]}, "properties": {"taskId": 1644, "taskX": 13719, "taskY": 9047, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 18.4796090526366], [122.14599607187, 18.4796090526366], [122.14599607187, 18.5004474552763], [122.124023415624, 18.5004474552763], [122.124023415624, 18.4796090526366]]]]}, "properties": {"taskId": 1613, "taskX": 13750, "taskY": 9048, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.5505088906724], [121.904296853164, 20.5916521172995], [121.948242165656, 20.5916521172995], [121.948242165656, 20.5505088906724], [121.904296853164, 20.5505088906724]]]]}, "properties": {"taskId": 1019, "taskX": 6870, "taskY": 4574, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 19.8907230205771], [122.03613279064, 19.9320413026892], [122.080078103132, 19.9320413026892], [122.080078103132, 19.8907230205771], [122.03613279064, 19.8907230205771]]]]}, "properties": {"taskId": 1270, "taskX": 6873, "taskY": 4558, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.6649598274553], [121.695556618826, 17.6649598274553], [121.695556618826, 17.6754278152737], [121.684570290703, 17.6754278152737], [121.684570290703, 17.6649598274553]]]]}, "properties": {"taskId": 1865, "taskX": 27460, "taskY": 18018, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 20.7920660972647], [121.843872048487, 20.7920660972647], [121.843872048487, 20.7972014307453], [121.838378884426, 20.7972014307453], [121.838378884426, 20.7920660972647]]]]}, "properties": {"taskId": 1506, "taskX": 54948, "taskY": 36639, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.3336694425994], [121.662597634457, 18.3336694425994], [121.662597634457, 18.3440977989279], [121.651611306334, 18.3440977989279], [121.651611306334, 18.3336694425994]]]]}, "properties": {"taskId": 1727, "taskX": 27457, "taskY": 18082, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.97902594998], [121.904296853164, 19.0205771076849], [121.948242165656, 19.0205771076849], [121.948242165656, 18.97902594998], [121.904296853164, 18.97902594998]]]]}, "properties": {"taskId": 984, "taskX": 6870, "taskY": 4536, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.6754278152737], [121.706542946949, 17.6754278152737], [121.706542946949, 17.6858951936713], [121.695556618826, 17.6858951936713], [121.695556618826, 17.6754278152737]]]]}, "properties": {"taskId": 1868, "taskX": 27461, "taskY": 18019, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.5093545851978], [121.948242165656, 20.5505088906724], [121.992187478148, 20.5505088906724], [121.992187478148, 20.5093545851978], [121.948242165656, 20.5093545851978]]]]}, "properties": {"taskId": 1108, "taskX": 6871, "taskY": 4573, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.885352908103, 19.7667035483167], [121.904296853164, 19.8002984303442], [121.904296853164, 19.7667035483167], [121.885352908103, 19.7667035483167]]]]}, "properties": {"taskId": 919, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 20.5916521172995], [121.816406228179, 20.6327842468519], [121.860351540672, 20.6327842468519], [121.860351540672, 20.5916521172995], [121.816406228179, 20.5916521172995]]]]}, "properties": {"taskId": 851, "taskX": 6868, "taskY": 4575, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 17.957832099161], [121.970214821902, 17.957832099161], [121.970214821902, 17.9787330924414], [121.948242165656, 17.9787330924414], [121.948242165656, 17.957832099161]]]]}, "properties": {"taskId": 1522, "taskX": 13742, "taskY": 9023, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.5505088906724], [121.948242165656, 20.5916521172995], [121.992187478148, 20.5916521172995], [121.992187478148, 20.5505088906724], [121.948242165656, 20.5505088906724]]]]}, "properties": {"taskId": 1109, "taskX": 6871, "taskY": 4574, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 21.1471263167504], [122.030835251085, 21.1254976329936], [121.992187478148, 21.1254976329936], [121.992187478148, 21.1471263167504]]]]}, "properties": {"taskId": 1213, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.001942412133, 19.9733487826778], [122.008919437967, 19.9857064273023], [121.992187478148, 20.0014299687182], [121.992187478148, 20.014645441902], [122.03613279064, 20.014645441902], [122.03613279064, 19.9733487826778], [122.001942412133, 19.9733487826778]]]]}, "properties": {"taskId": 1185, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.5916521172995], [121.948242165656, 20.6327842468519], [121.992187478148, 20.6327842468519], [121.992187478148, 20.5916521172995], [121.948242165656, 20.5916521172995]]]]}, "properties": {"taskId": 1110, "taskX": 6871, "taskY": 4575, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.171246515447, 19.8493939550095], [122.167968728117, 19.8399631504058], [122.167968728117, 19.8493939550095], [122.171246515447, 19.8493939550095]]]]}, "properties": {"taskId": 1426, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 20.2209657760506], [121.992187478148, 20.2621971207684], [122.03613279064, 20.2621971207684], [122.03613279064, 20.2209657760506], [121.992187478148, 20.2209657760506]]]]}, "properties": {"taskId": 1191, "taskX": 6872, "taskY": 4566, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.011026496315, 20.6739052611303], [122.028373323228, 20.6327842468519], [121.992187478148, 20.6327842468519], [121.992187478148, 20.6739052611303], [122.011026496315, 20.6739052611303]]]]}, "properties": {"taskId": 1201, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.233636495637, 17.9369286344415], [122.228961492445, 17.8951143006479], [122.211914040609, 17.8951143006479], [122.211914040609, 17.9369286344415], [122.233636495637, 17.9369286344415]]]]}, "properties": {"taskId": 1442, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.4379246502857], [121.728515603195, 18.4796090526366], [121.772460915687, 18.4796090526366], [121.772460915687, 18.4379246502857], [121.728515603195, 18.4379246502857]]]]}, "properties": {"taskId": 661, "taskX": 6866, "taskY": 4523, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.7150151419632], [121.948242165656, 20.7561138712068], [121.992187478148, 20.7561138712068], [121.992187478148, 20.7150151419632], [121.948242165656, 20.7150151419632]]]]}, "properties": {"taskId": 1113, "taskX": 6871, "taskY": 4578, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 19.1866776946495], [121.333007790766, 19.2281767344513], [121.376953103258, 19.2281767344513], [121.376953103258, 19.1866776946495], [121.333007790766, 19.1866776946495]]]]}, "properties": {"taskId": 208, "taskX": 6857, "taskY": 4541, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 19.5597901331299], [121.552734353227, 19.6011941578891], [121.596679665719, 19.6011941578891], [121.596679665719, 19.5597901331299], [121.552734353227, 19.5597901331299]]]]}, "properties": {"taskId": 462, "taskX": 6862, "taskY": 4550, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 19.3526108910439], [121.552734353227, 19.3940678920553], [121.596679665719, 19.3940678920553], [121.596679665719, 19.3526108910439], [121.552734353227, 19.3526108910439]]]]}, "properties": {"taskId": 457, "taskX": 6862, "taskY": 4545, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 19.2696652931808], [121.552734353227, 19.3111433517365], [121.596679665719, 19.3111433517365], [121.596679665719, 19.2696652931808], [121.552734353227, 19.2696652931808]]]]}, "properties": {"taskId": 455, "taskX": 6862, "taskY": 4543, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.687893744344, 20.5916521172995], [121.684570290703, 20.6123915118734], [121.684570290703, 20.6327842468519], [121.728515603195, 20.6327842468519], [121.728515603195, 20.5916521172995], [121.687893744344, 20.5916521172995]]]]}, "properties": {"taskId": 632, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.843872048487, 20.7869305890102], [121.849365212549, 20.7869305890102], [121.849365212549, 20.7920660972647], [121.843872048487, 20.7920660972647], [121.843872048487, 20.7869305890102]]]]}, "properties": {"taskId": 1507, "taskX": 54949, "taskY": 36638, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.6754278152737], [121.695556618826, 17.6754278152737], [121.695556618826, 17.6858951936713], [121.684570290703, 17.6858951936713], [121.684570290703, 17.6754278152737]]]]}, "properties": {"taskId": 1866, "taskX": 27460, "taskY": 18019, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.723022439134, 17.6335522106155], [121.728515603195, 17.6335522106155], [121.728515603195, 17.638787193754], [121.723022439134, 17.638787193754], [121.723022439134, 17.6335522106155]]]]}, "properties": {"taskId": 1907, "taskX": 54927, "taskY": 36030, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.3962301348468], [121.728515603195, 18.4379246502857], [121.772460915687, 18.4379246502857], [121.772460915687, 18.3962301348468], [121.728515603195, 18.3962301348468]]]]}, "properties": {"taskId": 660, "taskX": 6866, "taskY": 4522, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 18.7711150590949], [121.289062478274, 18.812717853159], [121.333007790766, 18.812717853159], [121.333007790766, 18.7711150590949], [121.289062478274, 18.7711150590949]]]]}, "properties": {"taskId": 157, "taskX": 6856, "taskY": 4531, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 19.1451681929035], [121.464843728242, 19.1866776946495], [121.508789040735, 19.1866776946495], [121.508789040735, 19.1451681929035], [121.464843728242, 19.1451681929035]]]]}, "properties": {"taskId": 350, "taskX": 6860, "taskY": 4540, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 20.3446269403386], [122.03613279064, 20.3858253783768], [122.080078103132, 20.3858253783768], [122.080078103132, 20.3446269403386], [122.03613279064, 20.3446269403386]]]]}, "properties": {"taskId": 1281, "taskX": 6873, "taskY": 4569, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 20.5916521172995], [121.860351540672, 20.6327842468519], [121.904296853164, 20.6327842468519], [121.904296853164, 20.5916521172995], [121.860351540672, 20.5916521172995]]]]}, "properties": {"taskId": 933, "taskX": 6869, "taskY": 4575, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.3962301348468], [121.772460915687, 18.4379246502857], [121.816406228179, 18.4379246502857], [121.816406228179, 18.3962301348468], [121.772460915687, 18.3962301348468]]]]}, "properties": {"taskId": 732, "taskX": 6867, "taskY": 4522, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 20.1797234992999], [121.860351540672, 20.2209657760506], [121.904296853164, 20.2209657760506], [121.904296853164, 20.1797234992999], [121.860351540672, 20.1797234992999]]]]}, "properties": {"taskId": 923, "taskX": 6869, "taskY": 4565, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.7972014307453], [121.904296853164, 20.8382778024909], [121.948242165656, 20.8382778024909], [121.948242165656, 20.7972014307453], [121.904296853164, 20.7972014307453]]]]}, "properties": {"taskId": 1025, "taskX": 6870, "taskY": 4580, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 19.5183754752406], [121.772460915687, 19.5597901331299], [121.816406228179, 19.5597901331299], [121.816406228179, 19.5183754752406], [121.772460915687, 19.5183754752406]]]]}, "properties": {"taskId": 759, "taskX": 6867, "taskY": 4549, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 19.3111433517365], [121.552734353227, 19.3526108910439], [121.596679665719, 19.3526108910439], [121.596679665719, 19.3111433517365], [121.552734353227, 19.3111433517365]]]]}, "properties": {"taskId": 456, "taskX": 6862, "taskY": 4544, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 19.3940678920553], [121.552734353227, 19.43551433575], [121.596679665719, 19.43551433575], [121.596679665719, 19.3940678920553], [121.552734353227, 19.3940678920553]]]]}, "properties": {"taskId": 458, "taskX": 6862, "taskY": 4546, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.843872048487, 20.7766590483203], [121.849365212549, 20.7766590483203], [121.849365212549, 20.7817949060169], [121.843872048487, 20.7817949060169], [121.843872048487, 20.7766590483203]]]]}, "properties": {"taskId": 1511, "taskX": 54949, "taskY": 36636, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 17.9369286344414], [121.970214821902, 17.9369286344414], [121.970214821902, 17.957832099161], [121.948242165656, 17.957832099161], [121.948242165656, 17.9369286344414]]]]}, "properties": {"taskId": 1521, "taskX": 13742, "taskY": 9022, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 17.957832099161], [121.992187478148, 17.957832099161], [121.992187478148, 17.9787330924414], [121.970214821902, 17.9787330924414], [121.970214821902, 17.957832099161]]]]}, "properties": {"taskId": 1524, "taskX": 13743, "taskY": 9023, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.063066977054, 20.5505088906724], [122.080078103132, 20.5101511202861], [122.080078103132, 20.5093545851978], [122.03613279064, 20.5093545851978], [122.03613279064, 20.5505088906724], [122.063066977054, 20.5505088906724]]]]}, "properties": {"taskId": 1285, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 20.7766590483203], [121.843872048487, 20.7766590483203], [121.843872048487, 20.7817949060169], [121.838378884426, 20.7817949060169], [121.838378884426, 20.7766590483203]]]]}, "properties": {"taskId": 1509, "taskX": 54948, "taskY": 36636, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.843872048487, 20.7817949060169], [121.849365212549, 20.7817949060169], [121.849365212549, 20.7869305890102], [121.843872048487, 20.7869305890102], [121.843872048487, 20.7817949060169]]]]}, "properties": {"taskId": 1512, "taskX": 54949, "taskY": 36637, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 17.9369286344414], [121.992187478148, 17.9369286344414], [121.992187478148, 17.957832099161], [121.970214821902, 17.957832099161], [121.970214821902, 17.9369286344414]]]]}, "properties": {"taskId": 1523, "taskX": 13743, "taskY": 9022, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[120.937499978337, 18.4969465639563], [120.935093952191, 18.5212833222942], [120.937499978337, 18.5212833222942], [120.937499978337, 18.4969465639563]]]]}, "properties": {"taskId": 1, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[120.935093952191, 18.5212833222942], [120.93097408111, 18.5629474396796], [120.937499978337, 18.5629474396796], [120.937499978337, 18.5212833222942], [120.935093952191, 18.5212833222942]]]]}, "properties": {"taskId": 2, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[120.93097408111, 18.5629474396796], [120.926854210028, 18.6046013852398], [120.937499978337, 18.6046013852398], [120.937499978337, 18.5629474396796], [120.93097408111, 18.5629474396796]]]]}, "properties": {"taskId": 3, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[120.926854210028, 18.6046013852398], [120.924934839449, 18.6240036975593], [120.937499978337, 18.6345096825382], [120.937499978337, 18.6046013852398], [120.926854210028, 18.6046013852398]]]]}, "properties": {"taskId": 4, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[120.981445290829, 18.4042780282769], [120.946907495699, 18.4017571294941], [120.943333694354, 18.4379246502857], [120.981445290829, 18.4379246502857], [120.981445290829, 18.4042780282769]]]]}, "properties": {"taskId": 5, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[120.943333694354, 18.4379246502857], [120.939213823273, 18.4796090526366], [120.981445290829, 18.4796090526366], [120.981445290829, 18.4379246502857], [120.943333694354, 18.4379246502857]]]]}, "properties": {"taskId": 6, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[120.939213823273, 18.4796090526366], [120.937499978337, 18.4969465639563], [120.937499978337, 18.5212833222942], [120.981445290829, 18.5212833222942], [120.981445290829, 18.4796090526366], [120.939213823273, 18.4796090526366]]]]}, "properties": {"taskId": 7, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[120.937499978337, 18.5212833222942], [120.937499978337, 18.5629474396796], [120.981445290829, 18.5629474396796], [120.981445290829, 18.5212833222942], [120.937499978337, 18.5212833222942]]]]}, "properties": {"taskId": 8, "taskX": 6848, "taskY": 4525, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[120.937499978337, 18.5629474396796], [120.937499978337, 18.6046013852398], [120.981445290829, 18.6046013852398], [120.981445290829, 18.5629474396796], [120.937499978337, 18.5629474396796]]]]}, "properties": {"taskId": 9, "taskX": 6848, "taskY": 4526, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[120.937499978337, 18.6345096825382], [120.951536482092, 18.6462451394485], [120.981445290829, 18.6462451394485], [120.981445290829, 18.6046013852398], [120.937499978337, 18.6046013852398], [120.937499978337, 18.6345096825382]]]]}, "properties": {"taskId": 10, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[120.951536482092, 18.6462451394485], [120.981445290829, 18.6712482002383], [120.981445290829, 18.6462451394485], [120.951536482092, 18.6462451394485]]]]}, "properties": {"taskId": 11, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.025390603321, 18.407485524345], [120.981445290829, 18.4042780282769], [120.981445290829, 18.4379246502857], [121.025390603321, 18.4379246502857], [121.025390603321, 18.407485524345]]]]}, "properties": {"taskId": 12, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[120.981445290829, 18.4379246502857], [120.981445290829, 18.4796090526366], [121.025390603321, 18.4796090526366], [121.025390603321, 18.4379246502857], [120.981445290829, 18.4379246502857]]]]}, "properties": {"taskId": 13, "taskX": 6849, "taskY": 4523, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[120.981445290829, 18.4796090526366], [120.981445290829, 18.5212833222942], [121.025390603321, 18.5212833222942], [121.025390603321, 18.4796090526366], [120.981445290829, 18.4796090526366]]]]}, "properties": {"taskId": 14, "taskX": 6849, "taskY": 4524, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[120.981445290829, 18.5629474396796], [120.981445290829, 18.6046013852398], [121.025390603321, 18.6046013852398], [121.025390603321, 18.5629474396796], [120.981445290829, 18.5629474396796]]]]}, "properties": {"taskId": 16, "taskX": 6849, "taskY": 4526, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[120.981445290829, 18.6046013852398], [120.981445290829, 18.6462451394485], [121.025390603321, 18.6462451394485], [121.025390603321, 18.6046013852398], [120.981445290829, 18.6046013852398]]]]}, "properties": {"taskId": 17, "taskX": 6849, "taskY": 4527, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[120.981445290829, 18.6712482002383], [121.001341214286, 18.6878786828054], [121.025390603321, 18.6878786828054], [121.025390603321, 18.6462451394485], [120.981445290829, 18.6462451394485], [120.981445290829, 18.6712482002383]]]]}, "properties": {"taskId": 18, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.001341214286, 18.6878786828054], [121.025390603321, 18.7079787592201], [121.025390603321, 18.6878786828054], [121.001341214286, 18.6878786828054]]]]}, "properties": {"taskId": 19, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.069335915813, 18.4106929606564], [121.025390603321, 18.407485524345], [121.025390603321, 18.4379246502857], [121.069335915813, 18.4379246502857], [121.069335915813, 18.4106929606564]]]]}, "properties": {"taskId": 20, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.025390603321, 18.4379246502857], [121.025390603321, 18.4796090526366], [121.069335915813, 18.4796090526366], [121.069335915813, 18.4379246502857], [121.025390603321, 18.4379246502857]]]]}, "properties": {"taskId": 21, "taskX": 6850, "taskY": 4523, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.025390603321, 18.4796090526366], [121.025390603321, 18.5212833222942], [121.069335915813, 18.5212833222942], [121.069335915813, 18.4796090526366], [121.025390603321, 18.4796090526366]]]]}, "properties": {"taskId": 22, "taskX": 6850, "taskY": 4524, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.025390603321, 18.5629474396796], [121.025390603321, 18.6046013852398], [121.069335915813, 18.6046013852398], [121.069335915813, 18.5629474396796], [121.025390603321, 18.5629474396796]]]]}, "properties": {"taskId": 24, "taskX": 6850, "taskY": 4526, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.025390603321, 18.6462451394485], [121.025390603321, 18.6878786828054], [121.069335915813, 18.6878786828054], [121.069335915813, 18.6462451394485], [121.025390603321, 18.6462451394485]]]]}, "properties": {"taskId": 26, "taskX": 6850, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.025390603321, 18.7079787592201], [121.051145946481, 18.7295019958367], [121.069335915813, 18.7295019958367], [121.069335915813, 18.6878786828054], [121.025390603321, 18.6878786828054], [121.025390603321, 18.7079787592201]]]]}, "properties": {"taskId": 27, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 20.5916521172995], [121.728515603195, 20.6327842468519], [121.772460915687, 20.6327842468519], [121.772460915687, 20.5916521172995], [121.728515603195, 20.5916521172995]]]]}, "properties": {"taskId": 701, "taskX": 6866, "taskY": 4575, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 18.6878786828054], [122.124023415624, 18.7295019958367], [122.167968728117, 18.7295019958367], [122.167968728117, 18.6878786828054], [122.124023415624, 18.6878786828054]]]]}, "properties": {"taskId": 1379, "taskX": 6875, "taskY": 4529, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 18.6046013852398], [121.289062478274, 18.6462451394485], [121.333007790766, 18.6462451394485], [121.333007790766, 18.6046013852398], [121.289062478274, 18.6046013852398]]]]}, "properties": {"taskId": 153, "taskX": 6856, "taskY": 4527, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.244629492038, 18.6046013852398], [122.255859353101, 18.5860907618031], [122.255859353101, 18.5629474396796], [122.211914040609, 18.5629474396796], [122.211914040609, 18.6046013852398], [122.244629492038, 18.6046013852398]]]]}, "properties": {"taskId": 1458, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.2209657760506], [121.948242165656, 20.2621971207684], [121.992187478148, 20.2621971207684], [121.992187478148, 20.2209657760506], [121.948242165656, 20.2209657760506]]]]}, "properties": {"taskId": 1101, "taskX": 6871, "taskY": 4566, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 18.6462451394485], [121.245117165782, 18.6878786828054], [121.289062478274, 18.6878786828054], [121.289062478274, 18.6462451394485], [121.245117165782, 18.6462451394485]]]]}, "properties": {"taskId": 120, "taskX": 6855, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.113281228305, 18.7295019958367], [121.113281228305, 18.7711150590949], [121.157226540798, 18.7711150590949], [121.157226540798, 18.7295019958367], [121.113281228305, 18.7295019958367]]]]}, "properties": {"taskId": 50, "taskX": 6852, "taskY": 4530, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.6878786828054], [121.640624978211, 18.7295019958367], [121.684570290703, 18.7295019958367], [121.684570290703, 18.6878786828054], [121.640624978211, 18.6878786828054]]]]}, "properties": {"taskId": 547, "taskX": 6864, "taskY": 4529, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 19.0621178802261], [121.333007790766, 19.1036482483685], [121.376953103258, 19.1036482483685], [121.376953103258, 19.0621178802261], [121.333007790766, 19.0621178802261]]]]}, "properties": {"taskId": 205, "taskX": 6857, "taskY": 4538, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 19.1866776946495], [121.948242165656, 19.2281767344513], [121.992187478148, 19.2281767344513], [121.992187478148, 19.1866776946495], [121.948242165656, 19.1866776946495]]]]}, "properties": {"taskId": 1076, "taskX": 6871, "taskY": 4541, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 19.3940678920553], [121.376953103258, 19.43551433575], [121.42089841575, 19.43551433575], [121.42089841575, 19.3940678920553], [121.376953103258, 19.3940678920553]]]]}, "properties": {"taskId": 258, "taskX": 6858, "taskY": 4546, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.7295019958367], [121.376953103258, 18.7711150590949], [121.42089841575, 18.7711150590949], [121.42089841575, 18.7295019958367], [121.376953103258, 18.7295019958367]]]]}, "properties": {"taskId": 242, "taskX": 6858, "taskY": 4530, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 19.1933646566458], [121.178404273818, 19.2281767344513], [121.20117185329, 19.2281767344513], [121.20117185329, 19.1866776946495], [121.157226540798, 19.1866776946495], [121.157226540798, 19.1933646566458]]]]}, "properties": {"taskId": 82, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.113281228305, 18.6878786828054], [121.113281228305, 18.7295019958367], [121.157226540798, 18.7295019958367], [121.157226540798, 18.6878786828054], [121.113281228305, 18.6878786828054]]]]}, "properties": {"taskId": 49, "taskX": 6852, "taskY": 4529, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.3962301348468], [121.684570290703, 18.4379246502857], [121.728515603195, 18.4379246502857], [121.728515603195, 18.3962301348468], [121.684570290703, 18.3962301348468]]]]}, "properties": {"taskId": 595, "taskX": 6865, "taskY": 4522, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 20.5505088906724], [121.772460915687, 20.5916521172995], [121.816406228179, 20.5916521172995], [121.816406228179, 20.5505088906724], [121.772460915687, 20.5505088906724]]]]}, "properties": {"taskId": 773, "taskX": 6867, "taskY": 4574, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 20.1384703089924], [121.992187478148, 20.1797234992999], [122.03613279064, 20.1797234992999], [122.03613279064, 20.1384703089924], [121.992187478148, 20.1384703089924]]]]}, "properties": {"taskId": 1189, "taskX": 6872, "taskY": 4564, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 20.1665219460572], [121.802341897071, 20.1797234992999], [121.816406228179, 20.1797234992999], [121.816406228179, 20.1665219460572]]]]}, "properties": {"taskId": 763, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.028373323228, 20.6327842468519], [122.03613279064, 20.6143866687216], [122.03613279064, 20.5916521172995], [121.992187478148, 20.5916521172995], [121.992187478148, 20.6327842468519], [122.028373323228, 20.6327842468519]]]]}, "properties": {"taskId": 1200, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 21.0024710507632], [121.860351540672, 21.0434912132036], [121.904296853164, 21.0434912132036], [121.904296853164, 21.0024710507632], [121.860351540672, 21.0024710507632]]]]}, "properties": {"taskId": 943, "taskX": 6869, "taskY": 4585, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 19.9320413026892], [122.080078103132, 19.9733487826778], [122.124023415624, 19.9733487826778], [122.124023415624, 19.9320413026892], [122.080078103132, 19.9320413026892]]]]}, "properties": {"taskId": 1335, "taskX": 6874, "taskY": 4559, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 18.5212833222942], [121.333007790766, 18.5629474396796], [121.376953103258, 18.5629474396796], [121.376953103258, 18.5212833222942], [121.333007790766, 18.5212833222942]]]]}, "properties": {"taskId": 192, "taskX": 6857, "taskY": 4525, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 19.43551433575], [121.596679665719, 19.476950203134], [121.640624978211, 19.476950203134], [121.640624978211, 19.43551433575], [121.596679665719, 19.43551433575]]]]}, "properties": {"taskId": 512, "taskX": 6863, "taskY": 4547, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 21.1225326933868], [122.045540308199, 21.1172673253737], [122.041373294016, 21.0845000799111], [122.03613279064, 21.0845000799111], [122.03613279064, 21.1225326933868]]]]}, "properties": {"taskId": 1290, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.843872048487, 20.7920660972647], [121.849365212549, 20.7920660972647], [121.849365212549, 20.7972014307453], [121.843872048487, 20.7972014307453], [121.843872048487, 20.7920660972647]]]]}, "properties": {"taskId": 1508, "taskX": 54949, "taskY": 36639, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.723022439134, 17.638787193754], [121.728515603195, 17.638787193754], [121.728515603195, 17.6440220248121], [121.723022439134, 17.6440220248121], [121.723022439134, 17.638787193754]]]]}, "properties": {"taskId": 1908, "taskX": 54927, "taskY": 36031, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.5629474396796], [121.464843728242, 18.6046013852398], [121.508789040735, 18.6046013852398], [121.508789040735, 18.5629474396796], [121.464843728242, 18.5629474396796]]]]}, "properties": {"taskId": 336, "taskX": 6860, "taskY": 4526, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.3962301348468], [121.640624978211, 18.4379246502857], [121.684570290703, 18.4379246502857], [121.684570290703, 18.3962301348468], [121.640624978211, 18.3962301348468]]]]}, "properties": {"taskId": 540, "taskX": 6864, "taskY": 4522, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.8543103586344], [121.596679665719, 18.895892556153], [121.640624978211, 18.895892556153], [121.640624978211, 18.8543103586344], [121.596679665719, 18.8543103586344]]]]}, "properties": {"taskId": 498, "taskX": 6863, "taskY": 4533, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 20.7561138712068], [121.860351540672, 20.7561138712068], [121.860351540672, 20.7766590483203], [121.838378884426, 20.7766590483203], [121.838378884426, 20.7561138712068]]]]}, "properties": {"taskId": 1499, "taskX": 13737, "taskY": 9158, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.3545255259514], [121.772460915687, 18.3962301348468], [121.816406228179, 18.3962301348468], [121.816406228179, 18.3545255259514], [121.772460915687, 18.3545255259514]]]]}, "properties": {"taskId": 731, "taskX": 6867, "taskY": 4521, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.073239121456, 18.9374644263732], [122.080078103132, 18.9239871621806], [122.080078103132, 18.895892556153], [122.03613279064, 18.895892556153], [122.03613279064, 18.9374644263732], [122.073239121456, 18.9374644263732]]]]}, "properties": {"taskId": 1248, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 18.6462451394485], [121.20117185329, 18.6878786828054], [121.245117165782, 18.6878786828054], [121.245117165782, 18.6462451394485], [121.20117185329, 18.6462451394485]]]]}, "properties": {"taskId": 91, "taskX": 6854, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.178707621992, 18.7295019958367], [122.1998013221, 18.6878786828054], [122.167968728117, 18.6878786828054], [122.167968728117, 18.7295019958367], [122.178707621992, 18.7295019958367]]]]}, "properties": {"taskId": 1424, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.085046300121, 19.6011941578891], [122.082161848984, 19.5928821867652], [122.080078103132, 19.5805423211476], [122.080078103132, 19.6011941578891], [122.085046300121, 19.6011941578891]]]]}, "properties": {"taskId": 1326, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.3128108432568], [121.860351540672, 18.3545255259514], [121.904296853164, 18.3545255259514], [121.904296853164, 18.3128108432568], [121.860351540672, 18.3128108432568]]]]}, "properties": {"taskId": 884, "taskX": 6869, "taskY": 4520, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.200927712486, 18.4379246502857], [122.211914040609, 18.4379246502857], [122.211914040609, 18.4483466997417], [122.200927712486, 18.4483466997417], [122.200927712486, 18.4379246502857]]]]}, "properties": {"taskId": 1691, "taskX": 27507, "taskY": 18092, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.3128108432568], [121.904296853164, 18.3545255259514], [121.948242165656, 18.3545255259514], [121.948242165656, 18.3128108432568], [121.904296853164, 18.3128108432568]]]]}, "properties": {"taskId": 968, "taskX": 6870, "taskY": 4520, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 18.9374644263732], [121.333007790766, 18.97902594998], [121.376953103258, 18.97902594998], [121.376953103258, 18.9374644263732], [121.333007790766, 18.9374644263732]]]]}, "properties": {"taskId": 202, "taskX": 6857, "taskY": 4535, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.3962301348468], [122.03613279064, 18.4379246502857], [122.080078103132, 18.4379246502857], [122.080078103132, 18.3962301348468], [122.03613279064, 18.3962301348468]]]]}, "properties": {"taskId": 1236, "taskX": 6873, "taskY": 4522, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 21.1963013114126], [121.948242165656, 21.1717158573759], [121.948242165656, 21.1664838545876], [121.904296853164, 21.1664838545876], [121.904296853164, 21.1963013114126]]]]}, "properties": {"taskId": 1034, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.4379246502857], [121.684570290703, 18.4796090526366], [121.728515603195, 18.4796090526366], [121.728515603195, 18.4379246502857], [121.684570290703, 18.4379246502857]]]]}, "properties": {"taskId": 596, "taskX": 6865, "taskY": 4523, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.4379246502857], [121.596679665719, 18.4796090526366], [121.640624978211, 18.4796090526366], [121.640624978211, 18.4379246502857], [121.596679665719, 18.4379246502857]]]]}, "properties": {"taskId": 488, "taskX": 6863, "taskY": 4523, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.5629474396796], [121.772460915687, 18.6046013852398], [121.816406228179, 18.6046013852398], [121.816406228179, 18.5629474396796], [121.772460915687, 18.5629474396796]]]]}, "properties": {"taskId": 736, "taskX": 6867, "taskY": 4526, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.7711150590949], [121.948242165656, 18.812717853159], [121.992187478148, 18.812717853159], [121.992187478148, 18.7711150590949], [121.948242165656, 18.7711150590949]]]]}, "properties": {"taskId": 1066, "taskX": 6871, "taskY": 4531, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.143400216294, 20.0972062236316], [122.161303812453, 20.0559312617487], [122.124023415624, 20.0559312617487], [122.124023415624, 20.0972062236316], [122.143400216294, 20.0972062236316]]]]}, "properties": {"taskId": 1392, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.895892556153], [121.772460915687, 18.9374644263732], [121.816406228179, 18.9374644263732], [121.816406228179, 18.895892556153], [121.772460915687, 18.895892556153]]]]}, "properties": {"taskId": 744, "taskX": 6867, "taskY": 4534, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.7711150590949], [121.860351540672, 18.812717853159], [121.904296853164, 18.812717853159], [121.904296853164, 18.7711150590949], [121.860351540672, 18.7711150590949]]]]}, "properties": {"taskId": 895, "taskX": 6869, "taskY": 4531, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.92626950941, 20.3858253783768], [121.948242165656, 20.3858253783768], [121.948242165656, 20.4064204714195], [121.92626950941, 20.4064204714195], [121.92626950941, 20.3858253783768]]]]}, "properties": {"taskId": 1543, "taskX": 13741, "taskY": 9140, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.3446269403386], [121.92626950941, 20.3446269403386], [121.92626950941, 20.3652275339181], [121.904296853164, 20.3652275339181], [121.904296853164, 20.3446269403386]]]]}, "properties": {"taskId": 1545, "taskX": 13740, "taskY": 9138, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.92626950941, 20.3652275339181], [121.948242165656, 20.3652275339181], [121.948242165656, 20.3858253783768], [121.92626950941, 20.3858253783768], [121.92626950941, 20.3652275339181]]]]}, "properties": {"taskId": 1548, "taskX": 13741, "taskY": 9139, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 20.7355659016665], [121.838378884426, 20.7355659016665], [121.838378884426, 20.7561138712068], [121.81640622818, 20.7561138712068], [121.81640622818, 20.7355659016665]]]]}, "properties": {"taskId": 1562, "taskX": 13736, "taskY": 9157, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.051145946481, 18.7295019958367], [121.069335915813, 18.7447013461158], [121.069335915813, 18.7295019958367], [121.051145946481, 18.7295019958367]]]]}, "properties": {"taskId": 28, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.113281228305, 18.4139003372023], [121.069335915813, 18.4106929606564], [121.069335915813, 18.4379246502857], [121.113281228305, 18.4379246502857], [121.113281228305, 18.4139003372023]]]]}, "properties": {"taskId": 29, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.069335915813, 18.4379246502857], [121.069335915813, 18.4796090526366], [121.113281228305, 18.4796090526366], [121.113281228305, 18.4379246502857], [121.069335915813, 18.4379246502857]]]]}, "properties": {"taskId": 30, "taskX": 6851, "taskY": 4523, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.069335915813, 18.4796090526366], [121.069335915813, 18.5212833222942], [121.113281228305, 18.5212833222942], [121.113281228305, 18.4796090526366], [121.069335915813, 18.4796090526366]]]]}, "properties": {"taskId": 31, "taskX": 6851, "taskY": 4524, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.069335915813, 18.6878786828054], [121.069335915813, 18.7295019958367], [121.113281228305, 18.7295019958367], [121.113281228305, 18.6878786828054], [121.069335915813, 18.6878786828054]]]]}, "properties": {"taskId": 36, "taskX": 6851, "taskY": 4529, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.069335915813, 18.7447013461158], [121.100950678675, 18.7711150590949], [121.113281228305, 18.7711150590949], [121.113281228305, 18.7295019958367], [121.069335915813, 18.7295019958367], [121.069335915813, 18.7447013461158]]]]}, "properties": {"taskId": 37, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.100950678675, 18.7711150590949], [121.113281228305, 18.7814159475737], [121.113281228305, 18.7711150590949], [121.100950678675, 18.7711150590949]]]]}, "properties": {"taskId": 38, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.113281228305, 19.0251562115188], [121.101656435728, 19.0621178802261], [121.113281228305, 19.0621178802261], [121.113281228305, 19.0251562115188]]]]}, "properties": {"taskId": 39, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.102668686092, 19.1036482483685], [121.113281228305, 19.1211036189965], [121.113281228305, 19.1036482483685], [121.102668686092, 19.1036482483685]]]]}, "properties": {"taskId": 41, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 18.4057712940169], [121.137337630234, 18.415656083661], [121.113281228305, 18.4139003372023], [121.113281228305, 18.4379246502857], [121.157226540798, 18.4379246502857], [121.157226540798, 18.4057712940169]]]]}, "properties": {"taskId": 42, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.113281228305, 18.4379246502857], [121.113281228305, 18.4796090526366], [121.157226540798, 18.4796090526366], [121.157226540798, 18.4379246502857], [121.113281228305, 18.4379246502857]]]]}, "properties": {"taskId": 43, "taskX": 6852, "taskY": 4523, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.113281228305, 18.4796090526366], [121.113281228305, 18.5212833222942], [121.157226540798, 18.5212833222942], [121.157226540798, 18.4796090526366], [121.113281228305, 18.4796090526366]]]]}, "properties": {"taskId": 44, "taskX": 6852, "taskY": 4524, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.113281228305, 18.6462451394485], [121.113281228305, 18.6878786828054], [121.157226540798, 18.6878786828054], [121.157226540798, 18.6462451394485], [121.113281228305, 18.6462451394485]]]]}, "properties": {"taskId": 48, "taskX": 6852, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.113281228305, 18.7814159475737], [121.15075541087, 18.812717853159], [121.157226540798, 18.812717853159], [121.157226540798, 18.7711150590949], [121.113281228305, 18.7711150590949], [121.113281228305, 18.7814159475737]]]]}, "properties": {"taskId": 51, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.15075541087, 18.812717853159], [121.157226540798, 18.818122550258], [121.157226540798, 18.812717853159], [121.15075541087, 18.812717853159]]]]}, "properties": {"taskId": 52, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 18.885355476458], [121.1539155705, 18.895892556153], [121.157226540798, 18.895892556153], [121.157226540798, 18.885355476458]]]]}, "properties": {"taskId": 53, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.1539155705, 18.895892556153], [121.140850786807, 18.9374644263732], [121.157226540798, 18.9374644263732], [121.157226540798, 18.895892556153], [121.1539155705, 18.895892556153]]]]}, "properties": {"taskId": 54, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.140850786807, 18.9374644263732], [121.127786003114, 18.97902594998], [121.157226540798, 18.97902594998], [121.157226540798, 18.9374644263732], [121.140850786807, 18.9374644263732]]]]}, "properties": {"taskId": 55, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.127786003114, 18.97902594998], [121.114721219421, 19.0205771076849], [121.157226540798, 19.0205771076849], [121.157226540798, 18.97902594998], [121.127786003114, 18.97902594998]]]]}, "properties": {"taskId": 56, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.113281228305, 19.0621178802261], [121.113281228305, 19.1036482483685], [121.157226540798, 19.1036482483685], [121.157226540798, 19.0621178802261], [121.113281228305, 19.0621178802261]]]]}, "properties": {"taskId": 58, "taskX": 6852, "taskY": 4538, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.113281228305, 19.1211036189965], [121.127913882001, 19.1451681929035], [121.157226540798, 19.1451681929035], [121.157226540798, 19.1036482483685], [121.113281228305, 19.1036482483685], [121.113281228305, 19.1211036189965]]]]}, "properties": {"taskId": 59, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.127913882001, 19.1451681929035], [121.153159077909, 19.1866776946495], [121.157226540798, 19.1866776946495], [121.157226540798, 19.1451681929035], [121.127913882001, 19.1451681929035]]]]}, "properties": {"taskId": 60, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.153159077909, 19.1866776946495], [121.157226540798, 19.1933646566458], [121.157226540798, 19.1866776946495], [121.153159077909, 19.1866776946495]]]]}, "properties": {"taskId": 61, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 18.3839284593668], [121.176422959089, 18.3962301348468], [121.20117185329, 18.3962301348468], [121.20117185329, 18.3839284593668]]]]}, "properties": {"taskId": 62, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.176422959089, 18.3962301348468], [121.157226540798, 18.4057712940169], [121.157226540798, 18.4379246502857], [121.20117185329, 18.4379246502857], [121.20117185329, 18.3962301348468], [121.176422959089, 18.3962301348468]]]]}, "properties": {"taskId": 63, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 18.4379246502857], [121.157226540798, 18.4796090526366], [121.20117185329, 18.4796090526366], [121.20117185329, 18.4379246502857], [121.157226540798, 18.4379246502857]]]]}, "properties": {"taskId": 64, "taskX": 6853, "taskY": 4523, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 18.4796090526366], [121.157226540798, 18.5212833222942], [121.20117185329, 18.5212833222942], [121.20117185329, 18.4796090526366], [121.157226540798, 18.4796090526366]]]]}, "properties": {"taskId": 65, "taskX": 6853, "taskY": 4524, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 18.5212833222942], [121.157226540798, 18.5629474396796], [121.20117185329, 18.5629474396796], [121.20117185329, 18.5212833222942], [121.157226540798, 18.5212833222942]]]]}, "properties": {"taskId": 66, "taskX": 6853, "taskY": 4525, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 18.6462451394485], [121.157226540798, 18.6878786828054], [121.20117185329, 18.6878786828054], [121.20117185329, 18.6462451394485], [121.157226540798, 18.6462451394485]]]]}, "properties": {"taskId": 69, "taskX": 6853, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 18.6878786828054], [121.157226540798, 18.7295019958367], [121.20117185329, 18.7295019958367], [121.20117185329, 18.6878786828054], [121.157226540798, 18.6878786828054]]]]}, "properties": {"taskId": 70, "taskX": 6853, "taskY": 4529, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 18.7295019958367], [121.157226540798, 18.7711150590949], [121.20117185329, 18.7711150590949], [121.20117185329, 18.7295019958367], [121.157226540798, 18.7295019958367]]]]}, "properties": {"taskId": 71, "taskX": 6853, "taskY": 4530, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 18.818122550258], [121.173958500467, 18.8320963017832], [121.166980354192, 18.8543103586344], [121.20117185329, 18.8543103586344], [121.20117185329, 18.812717853159], [121.157226540798, 18.812717853159], [121.157226540798, 18.818122550258]]]]}, "properties": {"taskId": 73, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 18.895892556153], [121.157226540798, 18.9374644263732], [121.20117185329, 18.9374644263732], [121.20117185329, 18.895892556153], [121.157226540798, 18.895892556153]]]]}, "properties": {"taskId": 75, "taskX": 6853, "taskY": 4534, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 18.9374644263732], [121.157226540798, 18.97902594998], [121.20117185329, 18.97902594998], [121.20117185329, 18.9374644263732], [121.157226540798, 18.9374644263732]]]]}, "properties": {"taskId": 76, "taskX": 6853, "taskY": 4535, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 18.97902594998], [121.157226540798, 19.0205771076849], [121.20117185329, 19.0205771076849], [121.20117185329, 18.97902594998], [121.157226540798, 18.97902594998]]]]}, "properties": {"taskId": 77, "taskX": 6853, "taskY": 4536, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 19.0205771076849], [121.157226540798, 19.0621178802261], [121.20117185329, 19.0621178802261], [121.20117185329, 19.0205771076849], [121.157226540798, 19.0205771076849]]]]}, "properties": {"taskId": 78, "taskX": 6853, "taskY": 4537, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 19.0621178802261], [121.157226540798, 19.1036482483685], [121.20117185329, 19.1036482483685], [121.20117185329, 19.0621178802261], [121.157226540798, 19.0621178802261]]]]}, "properties": {"taskId": 79, "taskX": 6853, "taskY": 4538, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 19.1036482483685], [121.157226540798, 19.1451681929035], [121.20117185329, 19.1451681929035], [121.20117185329, 19.1036482483685], [121.157226540798, 19.1036482483685]]]]}, "properties": {"taskId": 80, "taskX": 6853, "taskY": 4539, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 19.1451681929035], [121.157226540798, 19.1866776946495], [121.20117185329, 19.1866776946495], [121.20117185329, 19.1451681929035], [121.157226540798, 19.1451681929035]]]]}, "properties": {"taskId": 81, "taskX": 6853, "taskY": 4540, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.178404273818, 19.2281767344513], [121.20117185329, 19.2655939834495], [121.20117185329, 19.2281767344513], [121.178404273818, 19.2281767344513]]]]}, "properties": {"taskId": 83, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 18.3620828568923], [121.20117185329, 18.3839284593668], [121.20117185329, 18.3962301348468], [121.245117165782, 18.3962301348468], [121.245117165782, 18.3620828568923]]]]}, "properties": {"taskId": 84, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 18.3962301348468], [121.20117185329, 18.4379246502857], [121.245117165782, 18.4379246502857], [121.245117165782, 18.3962301348468], [121.20117185329, 18.3962301348468]]]]}, "properties": {"taskId": 85, "taskX": 6854, "taskY": 4522, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 18.4379246502857], [121.20117185329, 18.4796090526366], [121.245117165782, 18.4796090526366], [121.245117165782, 18.4379246502857], [121.20117185329, 18.4379246502857]]]]}, "properties": {"taskId": 86, "taskX": 6854, "taskY": 4523, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 18.6046013852398], [121.20117185329, 18.6462451394485], [121.245117165782, 18.6462451394485], [121.245117165782, 18.6046013852398], [121.20117185329, 18.6046013852398]]]]}, "properties": {"taskId": 90, "taskX": 6854, "taskY": 4527, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 18.6878786828054], [121.20117185329, 18.7295019958367], [121.245117165782, 18.7295019958367], [121.245117165782, 18.6878786828054], [121.20117185329, 18.6878786828054]]]]}, "properties": {"taskId": 92, "taskX": 6854, "taskY": 4529, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 18.7295019958367], [121.20117185329, 18.7711150590949], [121.245117165782, 18.7711150590949], [121.245117165782, 18.7295019958367], [121.20117185329, 18.7295019958367]]]]}, "properties": {"taskId": 93, "taskX": 6854, "taskY": 4530, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 18.7711150590949], [121.20117185329, 18.812717853159], [121.245117165782, 18.812717853159], [121.245117165782, 18.7711150590949], [121.20117185329, 18.7711150590949]]]]}, "properties": {"taskId": 94, "taskX": 6854, "taskY": 4531, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 18.812717853159], [121.20117185329, 18.8543103586344], [121.245117165782, 18.8543103586344], [121.245117165782, 18.812717853159], [121.20117185329, 18.812717853159]]]]}, "properties": {"taskId": 95, "taskX": 6854, "taskY": 4532, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 18.8543103586344], [121.20117185329, 18.895892556153], [121.245117165782, 18.895892556153], [121.245117165782, 18.8543103586344], [121.20117185329, 18.8543103586344]]]]}, "properties": {"taskId": 96, "taskX": 6854, "taskY": 4533, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 18.895892556153], [121.20117185329, 18.9374644263732], [121.245117165782, 18.9374644263732], [121.245117165782, 18.895892556153], [121.20117185329, 18.895892556153]]]]}, "properties": {"taskId": 97, "taskX": 6854, "taskY": 4534, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 18.9374644263732], [121.20117185329, 18.97902594998], [121.245117165782, 18.97902594998], [121.245117165782, 18.9374644263732], [121.20117185329, 18.9374644263732]]]]}, "properties": {"taskId": 98, "taskX": 6854, "taskY": 4535, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 18.97902594998], [121.20117185329, 19.0205771076849], [121.245117165782, 19.0205771076849], [121.245117165782, 18.97902594998], [121.20117185329, 18.97902594998]]]]}, "properties": {"taskId": 99, "taskX": 6854, "taskY": 4536, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 19.0205771076849], [121.20117185329, 19.0621178802261], [121.245117165782, 19.0621178802261], [121.245117165782, 19.0205771076849], [121.20117185329, 19.0205771076849]]]]}, "properties": {"taskId": 100, "taskX": 6854, "taskY": 4537, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 19.0621178802261], [121.20117185329, 19.1036482483685], [121.245117165782, 19.1036482483685], [121.245117165782, 19.0621178802261], [121.20117185329, 19.0621178802261]]]]}, "properties": {"taskId": 101, "taskX": 6854, "taskY": 4538, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 19.1036482483685], [121.20117185329, 19.1451681929035], [121.245117165782, 19.1451681929035], [121.245117165782, 19.1036482483685], [121.20117185329, 19.1036482483685]]]]}, "properties": {"taskId": 102, "taskX": 6854, "taskY": 4539, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 19.1451681929035], [121.20117185329, 19.1866776946495], [121.245117165782, 19.1866776946495], [121.245117165782, 19.1451681929035], [121.20117185329, 19.1451681929035]]]]}, "properties": {"taskId": 103, "taskX": 6854, "taskY": 4540, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 19.1866776946495], [121.20117185329, 19.2281767344513], [121.245117165782, 19.2281767344513], [121.245117165782, 19.1866776946495], [121.20117185329, 19.1866776946495]]]]}, "properties": {"taskId": 104, "taskX": 6854, "taskY": 4541, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 19.2655939834495], [121.203649469727, 19.2696652931808], [121.245117165782, 19.2696652931808], [121.245117165782, 19.2281767344513], [121.20117185329, 19.2281767344513], [121.20117185329, 19.2655939834495]]]]}, "properties": {"taskId": 105, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.203649469727, 19.2696652931808], [121.228894665636, 19.3111433517365], [121.245117165782, 19.3111433517365], [121.245117165782, 19.2696652931808], [121.203649469727, 19.2696652931808]]]]}, "properties": {"taskId": 106, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.228894665636, 19.3111433517365], [121.245117165782, 19.3377914985862], [121.245117165782, 19.3111433517365], [121.228894665636, 19.3111433517365]]]]}, "properties": {"taskId": 107, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 17.7950758657982], [121.273291975135, 17.8114560854767], [121.289062478274, 17.8114560854767], [121.289062478274, 17.7950758657982]]]]}, "properties": {"taskId": 108, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.273291975135, 17.8114560854767], [121.254524683199, 17.8309469948039], [121.264367814931, 17.8532901110035], [121.289062478274, 17.8532901110035], [121.289062478274, 17.8114560854767], [121.273291975135, 17.8114560854767]]]]}, "properties": {"taskId": 109, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.264367814931, 17.8532901110035], [121.282796546696, 17.8951143006479], [121.289062478274, 17.8951143006479], [121.289062478274, 17.8532901110035], [121.264367814931, 17.8532901110035]]]]}, "properties": {"taskId": 110, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.282796546696, 17.8951143006479], [121.289062478274, 17.9093326503171], [121.289062478274, 17.8951143006479], [121.282796546696, 17.8951143006479]]]]}, "properties": {"taskId": 111, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 18.3402344894191], [121.260318439288, 18.3545255259514], [121.289062478274, 18.3545255259514], [121.289062478274, 18.3402344894191]]]]}, "properties": {"taskId": 112, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.260318439288, 18.3545255259514], [121.245117165782, 18.3620828568923], [121.245117165782, 18.3962301348468], [121.289062478274, 18.3962301348468], [121.289062478274, 18.3545255259514], [121.260318439288, 18.3545255259514]]]]}, "properties": {"taskId": 113, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 18.3962301348468], [121.245117165782, 18.4379246502857], [121.289062478274, 18.4379246502857], [121.289062478274, 18.3962301348468], [121.245117165782, 18.3962301348468]]]]}, "properties": {"taskId": 114, "taskX": 6855, "taskY": 4522, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 18.4379246502857], [121.245117165782, 18.4796090526366], [121.289062478274, 18.4796090526366], [121.289062478274, 18.4379246502857], [121.245117165782, 18.4379246502857]]]]}, "properties": {"taskId": 115, "taskX": 6855, "taskY": 4523, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 18.5629474396796], [121.245117165782, 18.6046013852398], [121.289062478274, 18.6046013852398], [121.289062478274, 18.5629474396796], [121.245117165782, 18.5629474396796]]]]}, "properties": {"taskId": 118, "taskX": 6855, "taskY": 4526, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 18.6046013852398], [121.245117165782, 18.6462451394485], [121.289062478274, 18.6462451394485], [121.289062478274, 18.6046013852398], [121.245117165782, 18.6046013852398]]]]}, "properties": {"taskId": 119, "taskX": 6855, "taskY": 4527, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 18.6878786828054], [121.245117165782, 18.7295019958367], [121.289062478274, 18.7295019958367], [121.289062478274, 18.6878786828054], [121.245117165782, 18.6878786828054]]]]}, "properties": {"taskId": 121, "taskX": 6855, "taskY": 4529, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 18.7295019958367], [121.245117165782, 18.7711150590949], [121.289062478274, 18.7711150590949], [121.289062478274, 18.7295019958367], [121.245117165782, 18.7295019958367]]]]}, "properties": {"taskId": 122, "taskX": 6855, "taskY": 4530, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 18.812717853159], [121.245117165782, 18.8543103586344], [121.289062478274, 18.8543103586344], [121.289062478274, 18.812717853159], [121.245117165782, 18.812717853159]]]]}, "properties": {"taskId": 124, "taskX": 6855, "taskY": 4532, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 18.8543103586344], [121.245117165782, 18.895892556153], [121.289062478274, 18.895892556153], [121.289062478274, 18.8543103586344], [121.245117165782, 18.8543103586344]]]]}, "properties": {"taskId": 125, "taskX": 6855, "taskY": 4533, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 18.895892556153], [121.245117165782, 18.9374644263732], [121.289062478274, 18.9374644263732], [121.289062478274, 18.895892556153], [121.245117165782, 18.895892556153]]]]}, "properties": {"taskId": 126, "taskX": 6855, "taskY": 4534, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 18.9374644263732], [121.245117165782, 18.97902594998], [121.289062478274, 18.97902594998], [121.289062478274, 18.9374644263732], [121.245117165782, 18.9374644263732]]]]}, "properties": {"taskId": 127, "taskX": 6855, "taskY": 4535, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 18.97902594998], [121.245117165782, 19.0205771076849], [121.289062478274, 19.0205771076849], [121.289062478274, 18.97902594998], [121.245117165782, 18.97902594998]]]]}, "properties": {"taskId": 128, "taskX": 6855, "taskY": 4536, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 19.0205771076849], [121.245117165782, 19.0621178802261], [121.289062478274, 19.0621178802261], [121.289062478274, 19.0205771076849], [121.245117165782, 19.0205771076849]]]]}, "properties": {"taskId": 129, "taskX": 6855, "taskY": 4537, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 19.0621178802261], [121.245117165782, 19.1036482483685], [121.289062478274, 19.1036482483685], [121.289062478274, 19.0621178802261], [121.245117165782, 19.0621178802261]]]]}, "properties": {"taskId": 130, "taskX": 6855, "taskY": 4538, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 19.1036482483685], [121.245117165782, 19.1451681929035], [121.289062478274, 19.1451681929035], [121.289062478274, 19.1036482483685], [121.245117165782, 19.1036482483685]]]]}, "properties": {"taskId": 131, "taskX": 6855, "taskY": 4539, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 19.1451681929035], [121.245117165782, 19.1866776946495], [121.289062478274, 19.1866776946495], [121.289062478274, 19.1451681929035], [121.245117165782, 19.1451681929035]]]]}, "properties": {"taskId": 132, "taskX": 6855, "taskY": 4540, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 19.2281767344513], [121.245117165782, 19.2696652931808], [121.289062478274, 19.2696652931808], [121.289062478274, 19.2281767344513], [121.245117165782, 19.2281767344513]]]]}, "properties": {"taskId": 134, "taskX": 6855, "taskY": 4542, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 19.2696652931808], [121.245117165782, 19.3111433517365], [121.289062478274, 19.3111433517365], [121.289062478274, 19.2696652931808], [121.245117165782, 19.2696652931808]]]]}, "properties": {"taskId": 135, "taskX": 6855, "taskY": 4543, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 19.3377914985862], [121.254139861544, 19.3526108910439], [121.289062478274, 19.3526108910439], [121.289062478274, 19.3111433517365], [121.245117165782, 19.3111433517365], [121.245117165782, 19.3377914985862]]]]}, "properties": {"taskId": 136, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.254139861544, 19.3526108910439], [121.279385057453, 19.3940678920553], [121.289062478274, 19.3940678920553], [121.289062478274, 19.3526108910439], [121.254139861544, 19.3526108910439]]]]}, "properties": {"taskId": 137, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.279385057453, 19.3940678920553], [121.289062478274, 19.4099571014812], [121.289062478274, 19.3940678920553], [121.279385057453, 19.3940678920553]]]]}, "properties": {"taskId": 138, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 17.7494236202751], [121.31357540177, 17.7696122440617], [121.333007790766, 17.7696122440617], [121.333007790766, 17.7494236202751]]]]}, "properties": {"taskId": 139, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.31357540177, 17.7696122440617], [121.289062478274, 17.7950758657982], [121.289062478274, 17.8114560854767], [121.333007790766, 17.8114560854767], [121.333007790766, 17.7696122440617], [121.31357540177, 17.7696122440617]]]]}, "properties": {"taskId": 140, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 17.8532901110035], [121.289062478274, 17.8951143006479], [121.333007790766, 17.8951143006479], [121.333007790766, 17.8532901110035], [121.289062478274, 17.8532901110035]]]]}, "properties": {"taskId": 142, "taskX": 6856, "taskY": 4509, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 17.9093326503171], [121.301225278461, 17.9369286344415], [121.333007790766, 17.9369286344415], [121.333007790766, 17.8951143006479], [121.289062478274, 17.8951143006479], [121.289062478274, 17.9093326503171]]]]}, "properties": {"taskId": 143, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.301225278461, 17.9369286344415], [121.319654010225, 17.9787330924414], [121.333007790766, 17.9787330924414], [121.333007790766, 17.9369286344415], [121.301225278461, 17.9369286344415]]]]}, "properties": {"taskId": 144, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.319654010225, 17.9787330924414], [121.333007790766, 18.0090191498875], [121.333007790766, 17.9787330924414], [121.319654010225, 17.9787330924414]]]]}, "properties": {"taskId": 145, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 18.3183833597745], [121.289062478274, 18.3402344894191], [121.289062478274, 18.3545255259514], [121.333007790766, 18.3545255259514], [121.333007790766, 18.3183833597745]]]]}, "properties": {"taskId": 146, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 18.3545255259514], [121.289062478274, 18.3962301348468], [121.333007790766, 18.3962301348468], [121.333007790766, 18.3545255259514], [121.289062478274, 18.3545255259514]]]]}, "properties": {"taskId": 147, "taskX": 6856, "taskY": 4521, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 18.3962301348468], [121.289062478274, 18.4379246502857], [121.333007790766, 18.4379246502857], [121.333007790766, 18.3962301348468], [121.289062478274, 18.3962301348468]]]]}, "properties": {"taskId": 148, "taskX": 6856, "taskY": 4522, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 18.5212833222942], [121.289062478274, 18.5629474396796], [121.333007790766, 18.5629474396796], [121.333007790766, 18.5212833222942], [121.289062478274, 18.5212833222942]]]]}, "properties": {"taskId": 151, "taskX": 6856, "taskY": 4525, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 18.5629474396796], [121.289062478274, 18.6046013852398], [121.333007790766, 18.6046013852398], [121.333007790766, 18.5629474396796], [121.289062478274, 18.5629474396796]]]]}, "properties": {"taskId": 152, "taskX": 6856, "taskY": 4526, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 18.6462451394485], [121.289062478274, 18.6878786828054], [121.333007790766, 18.6878786828054], [121.333007790766, 18.6462451394485], [121.289062478274, 18.6462451394485]]]]}, "properties": {"taskId": 154, "taskX": 6856, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 18.6878786828054], [121.289062478274, 18.7295019958367], [121.333007790766, 18.7295019958367], [121.333007790766, 18.6878786828054], [121.289062478274, 18.6878786828054]]]]}, "properties": {"taskId": 155, "taskX": 6856, "taskY": 4529, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 18.7295019958367], [121.289062478274, 18.7711150590949], [121.333007790766, 18.7711150590949], [121.333007790766, 18.7295019958367], [121.289062478274, 18.7295019958367]]]]}, "properties": {"taskId": 156, "taskX": 6856, "taskY": 4530, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 18.8543103586344], [121.289062478274, 18.895892556153], [121.333007790766, 18.895892556153], [121.333007790766, 18.8543103586344], [121.289062478274, 18.8543103586344]]]]}, "properties": {"taskId": 159, "taskX": 6856, "taskY": 4533, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 18.895892556153], [121.289062478274, 18.9374644263732], [121.333007790766, 18.9374644263732], [121.333007790766, 18.895892556153], [121.289062478274, 18.895892556153]]]]}, "properties": {"taskId": 160, "taskX": 6856, "taskY": 4534, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 18.9374644263732], [121.289062478274, 18.97902594998], [121.333007790766, 18.97902594998], [121.333007790766, 18.9374644263732], [121.289062478274, 18.9374644263732]]]]}, "properties": {"taskId": 161, "taskX": 6856, "taskY": 4535, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 18.97902594998], [121.289062478274, 19.0205771076849], [121.333007790766, 19.0205771076849], [121.333007790766, 18.97902594998], [121.289062478274, 18.97902594998]]]]}, "properties": {"taskId": 162, "taskX": 6856, "taskY": 4536, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 19.0205771076849], [121.289062478274, 19.0621178802261], [121.333007790766, 19.0621178802261], [121.333007790766, 19.0205771076849], [121.289062478274, 19.0205771076849]]]]}, "properties": {"taskId": 163, "taskX": 6856, "taskY": 4537, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 19.0621178802261], [121.289062478274, 19.1036482483685], [121.333007790766, 19.1036482483685], [121.333007790766, 19.0621178802261], [121.289062478274, 19.0621178802261]]]]}, "properties": {"taskId": 164, "taskX": 6856, "taskY": 4538, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 19.1036482483685], [121.289062478274, 19.1451681929035], [121.333007790766, 19.1451681929035], [121.333007790766, 19.1036482483685], [121.289062478274, 19.1036482483685]]]]}, "properties": {"taskId": 165, "taskX": 6856, "taskY": 4539, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 19.1451681929035], [121.289062478274, 19.1866776946495], [121.333007790766, 19.1866776946495], [121.333007790766, 19.1451681929035], [121.289062478274, 19.1451681929035]]]]}, "properties": {"taskId": 166, "taskX": 6856, "taskY": 4540, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 19.1866776946495], [121.289062478274, 19.2281767344513], [121.333007790766, 19.2281767344513], [121.333007790766, 19.1866776946495], [121.289062478274, 19.1866776946495]]]]}, "properties": {"taskId": 167, "taskX": 6856, "taskY": 4541, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 19.2281767344513], [121.289062478274, 19.2696652931808], [121.333007790766, 19.2696652931808], [121.333007790766, 19.2281767344513], [121.289062478274, 19.2281767344513]]]]}, "properties": {"taskId": 168, "taskX": 6856, "taskY": 4542, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 19.2696652931808], [121.289062478274, 19.3111433517365], [121.333007790766, 19.3111433517365], [121.333007790766, 19.2696652931808], [121.289062478274, 19.2696652931808]]]]}, "properties": {"taskId": 169, "taskX": 6856, "taskY": 4543, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 19.3111433517365], [121.289062478274, 19.3526108910439], [121.333007790766, 19.3526108910439], [121.333007790766, 19.3111433517365], [121.289062478274, 19.3111433517365]]]]}, "properties": {"taskId": 170, "taskX": 6856, "taskY": 4544, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 19.3526108910439], [121.289062478274, 19.3940678920553], [121.333007790766, 19.3940678920553], [121.333007790766, 19.3526108910439], [121.289062478274, 19.3526108910439]]]]}, "properties": {"taskId": 171, "taskX": 6856, "taskY": 4545, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 19.4099571014812], [121.291146223984, 19.4133781686471], [121.316965626435, 19.43551433575], [121.333007790766, 19.43551433575], [121.333007790766, 19.3940678920553], [121.289062478274, 19.3940678920553], [121.289062478274, 19.4099571014812]]]]}, "properties": {"taskId": 172, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.316965626435, 19.43551433575], [121.333007790766, 19.449266505139], [121.333007790766, 19.43551433575], [121.316965626435, 19.43551433575]]]]}, "properties": {"taskId": 173, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 17.6841208924261], [121.375776907932, 17.6858951936713], [121.376953103258, 17.6858951936713], [121.376953103258, 17.6841208924261]]]]}, "properties": {"taskId": 174, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.375776907932, 17.6858951936713], [121.348022018306, 17.7277586067781], [121.376953103258, 17.7277586067781], [121.376953103258, 17.6858951936713], [121.375776907932, 17.6858951936713]]]]}, "properties": {"taskId": 175, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.348022018306, 17.7277586067781], [121.335091536484, 17.7472586478578], [121.333007790766, 17.7494236202751], [121.333007790766, 17.7696122440617], [121.376953103258, 17.7696122440617], [121.376953103258, 17.7277586067781], [121.348022018306, 17.7277586067781]]]]}, "properties": {"taskId": 176, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 17.7696122440617], [121.333007790766, 17.8114560854767], [121.376953103258, 17.8114560854767], [121.376953103258, 17.7696122440617], [121.333007790766, 17.7696122440617]]]]}, "properties": {"taskId": 177, "taskX": 6857, "taskY": 4507, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 17.8951143006479], [121.333007790766, 17.9369286344415], [121.376953103258, 17.9369286344415], [121.376953103258, 17.8951143006479], [121.333007790766, 17.8951143006479]]]]}, "properties": {"taskId": 180, "taskX": 6857, "taskY": 4510, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 17.9369286344415], [121.333007790766, 17.9787330924414], [121.376953103258, 17.9787330924414], [121.376953103258, 17.9369286344415], [121.333007790766, 17.9369286344415]]]]}, "properties": {"taskId": 181, "taskX": 6857, "taskY": 4511, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 18.0090191498875], [121.33808274199, 18.0205276547308], [121.376953103258, 18.0205276547308], [121.376953103258, 17.9787330924414], [121.333007790766, 17.9787330924414], [121.333007790766, 18.0090191498875]]]]}, "properties": {"taskId": 182, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.33808274199, 18.0205276547308], [121.356511473754, 18.0623123014185], [121.376953103258, 18.0623123014185], [121.376953103258, 18.0205276547308], [121.33808274199, 18.0205276547308]]]]}, "properties": {"taskId": 183, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.356511473754, 18.0623123014185], [121.374940205519, 18.104087012639], [121.376953103258, 18.104087012639], [121.376953103258, 18.0623123014185], [121.356511473754, 18.0623123014185]]]]}, "properties": {"taskId": 184, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.374940205519, 18.104087012639], [121.376953103258, 18.1086492969849], [121.376953103258, 18.104087012639], [121.374940205519, 18.104087012639]]]]}, "properties": {"taskId": 185, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.2965294707879], [121.344213919487, 18.3128108432568], [121.376953103258, 18.3128108432568], [121.376953103258, 18.2965294707879]]]]}, "properties": {"taskId": 186, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.344213919487, 18.3128108432568], [121.333007790766, 18.3183833597745], [121.333007790766, 18.3545255259514], [121.376953103258, 18.3545255259514], [121.376953103258, 18.3128108432568], [121.344213919487, 18.3128108432568]]]]}, "properties": {"taskId": 187, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 18.3545255259514], [121.333007790766, 18.3962301348468], [121.376953103258, 18.3962301348468], [121.376953103258, 18.3545255259514], [121.333007790766, 18.3545255259514]]]]}, "properties": {"taskId": 188, "taskX": 6857, "taskY": 4521, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 18.4796090526366], [121.333007790766, 18.5212833222942], [121.376953103258, 18.5212833222942], [121.376953103258, 18.4796090526366], [121.333007790766, 18.4796090526366]]]]}, "properties": {"taskId": 191, "taskX": 6857, "taskY": 4524, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 18.6046013852398], [121.333007790766, 18.6462451394485], [121.376953103258, 18.6462451394485], [121.376953103258, 18.6046013852398], [121.333007790766, 18.6046013852398]]]]}, "properties": {"taskId": 194, "taskX": 6857, "taskY": 4527, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 18.6878786828054], [121.333007790766, 18.7295019958367], [121.376953103258, 18.7295019958367], [121.376953103258, 18.6878786828054], [121.333007790766, 18.6878786828054]]]]}, "properties": {"taskId": 196, "taskX": 6857, "taskY": 4529, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 18.7295019958367], [121.333007790766, 18.7711150590949], [121.376953103258, 18.7711150590949], [121.376953103258, 18.7295019958367], [121.333007790766, 18.7295019958367]]]]}, "properties": {"taskId": 197, "taskX": 6857, "taskY": 4530, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 18.7711150590949], [121.333007790766, 18.812717853159], [121.376953103258, 18.812717853159], [121.376953103258, 18.7711150590949], [121.333007790766, 18.7711150590949]]]]}, "properties": {"taskId": 198, "taskX": 6857, "taskY": 4531, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 18.812717853159], [121.333007790766, 18.8543103586344], [121.376953103258, 18.8543103586344], [121.376953103258, 18.812717853159], [121.333007790766, 18.812717853159]]]]}, "properties": {"taskId": 199, "taskX": 6857, "taskY": 4532, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 18.8543103586344], [121.333007790766, 18.895892556153], [121.376953103258, 18.895892556153], [121.376953103258, 18.8543103586344], [121.333007790766, 18.8543103586344]]]]}, "properties": {"taskId": 200, "taskX": 6857, "taskY": 4533, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 18.895892556153], [121.333007790766, 18.9374644263732], [121.376953103258, 18.9374644263732], [121.376953103258, 18.895892556153], [121.333007790766, 18.895892556153]]]]}, "properties": {"taskId": 201, "taskX": 6857, "taskY": 4534, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 18.97902594998], [121.333007790766, 19.0205771076849], [121.376953103258, 19.0205771076849], [121.376953103258, 18.97902594998], [121.333007790766, 18.97902594998]]]]}, "properties": {"taskId": 203, "taskX": 6857, "taskY": 4536, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 19.0205771076849], [121.333007790766, 19.0621178802261], [121.376953103258, 19.0621178802261], [121.376953103258, 19.0205771076849], [121.333007790766, 19.0205771076849]]]]}, "properties": {"taskId": 204, "taskX": 6857, "taskY": 4537, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 19.1036482483685], [121.333007790766, 19.1451681929035], [121.376953103258, 19.1451681929035], [121.376953103258, 19.1036482483685], [121.333007790766, 19.1036482483685]]]]}, "properties": {"taskId": 206, "taskX": 6857, "taskY": 4539, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 19.1451681929035], [121.333007790766, 19.1866776946495], [121.376953103258, 19.1866776946495], [121.376953103258, 19.1451681929035], [121.333007790766, 19.1451681929035]]]]}, "properties": {"taskId": 207, "taskX": 6857, "taskY": 4540, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 19.2281767344513], [121.333007790766, 19.2696652931808], [121.376953103258, 19.2696652931808], [121.376953103258, 19.2281767344513], [121.333007790766, 19.2281767344513]]]]}, "properties": {"taskId": 209, "taskX": 6857, "taskY": 4542, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 19.2696652931808], [121.333007790766, 19.3111433517365], [121.376953103258, 19.3111433517365], [121.376953103258, 19.2696652931808], [121.333007790766, 19.2696652931808]]]]}, "properties": {"taskId": 210, "taskX": 6857, "taskY": 4543, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 19.3111433517365], [121.333007790766, 19.3526108910439], [121.376953103258, 19.3526108910439], [121.376953103258, 19.3111433517365], [121.333007790766, 19.3111433517365]]]]}, "properties": {"taskId": 211, "taskX": 6857, "taskY": 4544, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 19.3526108910439], [121.333007790766, 19.3940678920553], [121.376953103258, 19.3940678920553], [121.376953103258, 19.3526108910439], [121.333007790766, 19.3526108910439]]]]}, "properties": {"taskId": 212, "taskX": 6857, "taskY": 4545, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 19.3940678920553], [121.333007790766, 19.43551433575], [121.376953103258, 19.43551433575], [121.376953103258, 19.3940678920553], [121.333007790766, 19.3940678920553]]]]}, "properties": {"taskId": 213, "taskX": 6857, "taskY": 4546, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 19.449266505139], [121.365305470176, 19.476950203134], [121.376953103258, 19.476950203134], [121.376953103258, 19.43551433575], [121.333007790766, 19.43551433575], [121.333007790766, 19.449266505139]]]]}, "properties": {"taskId": 214, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.365305470176, 19.476950203134], [121.376953103258, 19.4869327186755], [121.376953103258, 19.476950203134], [121.365305470176, 19.476950203134]]]]}, "properties": {"taskId": 215, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 17.6178164511126], [121.403531797558, 17.6440220248121], [121.42089841575, 17.6440220248121], [121.42089841575, 17.6178164511126]]]]}, "properties": {"taskId": 216, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.403531797558, 17.6440220248121], [121.376953103258, 17.6841208924261], [121.376953103258, 17.6858951936713], [121.42089841575, 17.6858951936713], [121.42089841575, 17.6440220248121], [121.403531797558, 17.6440220248121]]]]}, "properties": {"taskId": 217, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 17.6858951936713], [121.376953103258, 17.7277586067781], [121.42089841575, 17.7277586067781], [121.42089841575, 17.6858951936713], [121.376953103258, 17.6858951936713]]]]}, "properties": {"taskId": 218, "taskX": 6858, "taskY": 4505, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 17.7277586067781], [121.376953103258, 17.7696122440617], [121.42089841575, 17.7696122440617], [121.42089841575, 17.7277586067781], [121.376953103258, 17.7277586067781]]]]}, "properties": {"taskId": 219, "taskX": 6858, "taskY": 4506, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 17.7696122440617], [121.376953103258, 17.8114560854767], [121.42089841575, 17.8114560854767], [121.42089841575, 17.7696122440617], [121.376953103258, 17.7696122440617]]]]}, "properties": {"taskId": 220, "taskX": 6858, "taskY": 4507, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 17.8114560854767], [121.376953103258, 17.8532901110035], [121.42089841575, 17.8532901110035], [121.42089841575, 17.8114560854767], [121.376953103258, 17.8114560854767]]]]}, "properties": {"taskId": 221, "taskX": 6858, "taskY": 4508, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 17.8532901110035], [121.376953103258, 17.8951143006479], [121.42089841575, 17.8951143006479], [121.42089841575, 17.8532901110035], [121.376953103258, 17.8532901110035]]]]}, "properties": {"taskId": 222, "taskX": 6858, "taskY": 4509, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 17.9369286344415], [121.376953103258, 17.9787330924414], [121.42089841575, 17.9787330924414], [121.42089841575, 17.9369286344415], [121.376953103258, 17.9369286344415]]]]}, "properties": {"taskId": 224, "taskX": 6858, "taskY": 4511, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 17.9787330924414], [121.376953103258, 18.0205276547308], [121.42089841575, 18.0205276547308], [121.42089841575, 17.9787330924414], [121.376953103258, 17.9787330924414]]]]}, "properties": {"taskId": 225, "taskX": 6858, "taskY": 4512, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.0205276547308], [121.376953103258, 18.0623123014185], [121.42089841575, 18.0623123014185], [121.42089841575, 18.0205276547308], [121.376953103258, 18.0205276547308]]]]}, "properties": {"taskId": 226, "taskX": 6858, "taskY": 4513, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.0623123014185], [121.376953103258, 18.104087012639], [121.42089841575, 18.104087012639], [121.42089841575, 18.0623123014185], [121.376953103258, 18.0623123014185]]]]}, "properties": {"taskId": 227, "taskX": 6858, "taskY": 4514, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.1086492969849], [121.393368937284, 18.1458517685528], [121.42089841575, 18.1458517685528], [121.42089841575, 18.104087012639], [121.376953103258, 18.104087012639], [121.376953103258, 18.1086492969849]]]]}, "properties": {"taskId": 228, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.393368937284, 18.1458517685528], [121.411797669048, 18.1876065493462], [121.42089841575, 18.1876065493462], [121.42089841575, 18.1458517685528], [121.393368937284, 18.1458517685528]]]]}, "properties": {"taskId": 229, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.411797669048, 18.1876065493462], [121.42089841575, 18.2082228223861], [121.42089841575, 18.1876065493462], [121.411797669048, 18.1876065493462]]]]}, "properties": {"taskId": 230, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.2746728252905], [121.376953103258, 18.2965294707879], [121.376953103258, 18.3128108432568], [121.42089841575, 18.3128108432568], [121.42089841575, 18.2746728252905]]]]}, "properties": {"taskId": 231, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.4796090526366], [121.376953103258, 18.5212833222942], [121.42089841575, 18.5212833222942], [121.42089841575, 18.4796090526366], [121.376953103258, 18.4796090526366]]]]}, "properties": {"taskId": 236, "taskX": 6858, "taskY": 4524, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.5212833222942], [121.376953103258, 18.5629474396796], [121.42089841575, 18.5629474396796], [121.42089841575, 18.5212833222942], [121.376953103258, 18.5212833222942]]]]}, "properties": {"taskId": 237, "taskX": 6858, "taskY": 4525, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.6462451394485], [121.376953103258, 18.6878786828054], [121.42089841575, 18.6878786828054], [121.42089841575, 18.6462451394485], [121.376953103258, 18.6462451394485]]]]}, "properties": {"taskId": 240, "taskX": 6858, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.6878786828054], [121.376953103258, 18.7295019958367], [121.42089841575, 18.7295019958367], [121.42089841575, 18.6878786828054], [121.376953103258, 18.6878786828054]]]]}, "properties": {"taskId": 241, "taskX": 6858, "taskY": 4529, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.7711150590949], [121.376953103258, 18.812717853159], [121.42089841575, 18.812717853159], [121.42089841575, 18.7711150590949], [121.376953103258, 18.7711150590949]]]]}, "properties": {"taskId": 243, "taskX": 6858, "taskY": 4531, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.812717853159], [121.376953103258, 18.8543103586344], [121.42089841575, 18.8543103586344], [121.42089841575, 18.812717853159], [121.376953103258, 18.812717853159]]]]}, "properties": {"taskId": 244, "taskX": 6858, "taskY": 4532, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.8543103586344], [121.376953103258, 18.895892556153], [121.42089841575, 18.895892556153], [121.42089841575, 18.8543103586344], [121.376953103258, 18.8543103586344]]]]}, "properties": {"taskId": 245, "taskX": 6858, "taskY": 4533, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.895892556153], [121.376953103258, 18.9374644263732], [121.42089841575, 18.9374644263732], [121.42089841575, 18.895892556153], [121.376953103258, 18.895892556153]]]]}, "properties": {"taskId": 246, "taskX": 6858, "taskY": 4534, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.9374644263732], [121.376953103258, 18.97902594998], [121.42089841575, 18.97902594998], [121.42089841575, 18.9374644263732], [121.376953103258, 18.9374644263732]]]]}, "properties": {"taskId": 247, "taskX": 6858, "taskY": 4535, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.97902594998], [121.376953103258, 19.0205771076849], [121.42089841575, 19.0205771076849], [121.42089841575, 18.97902594998], [121.376953103258, 18.97902594998]]]]}, "properties": {"taskId": 248, "taskX": 6858, "taskY": 4536, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 19.0205771076849], [121.376953103258, 19.0621178802261], [121.42089841575, 19.0621178802261], [121.42089841575, 19.0205771076849], [121.376953103258, 19.0205771076849]]]]}, "properties": {"taskId": 249, "taskX": 6858, "taskY": 4537, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 19.0621178802261], [121.376953103258, 19.1036482483685], [121.42089841575, 19.1036482483685], [121.42089841575, 19.0621178802261], [121.376953103258, 19.0621178802261]]]]}, "properties": {"taskId": 250, "taskX": 6858, "taskY": 4538, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 19.1036482483685], [121.376953103258, 19.1451681929035], [121.42089841575, 19.1451681929035], [121.42089841575, 19.1036482483685], [121.376953103258, 19.1036482483685]]]]}, "properties": {"taskId": 251, "taskX": 6858, "taskY": 4539, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 19.1451681929035], [121.376953103258, 19.1866776946495], [121.42089841575, 19.1866776946495], [121.42089841575, 19.1451681929035], [121.376953103258, 19.1451681929035]]]]}, "properties": {"taskId": 252, "taskX": 6858, "taskY": 4540, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 19.1866776946495], [121.376953103258, 19.2281767344513], [121.42089841575, 19.2281767344513], [121.42089841575, 19.1866776946495], [121.376953103258, 19.1866776946495]]]]}, "properties": {"taskId": 253, "taskX": 6858, "taskY": 4541, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 19.2281767344513], [121.376953103258, 19.2696652931808], [121.42089841575, 19.2696652931808], [121.42089841575, 19.2281767344513], [121.376953103258, 19.2281767344513]]]]}, "properties": {"taskId": 254, "taskX": 6858, "taskY": 4542, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 19.2696652931808], [121.376953103258, 19.3111433517365], [121.42089841575, 19.3111433517365], [121.42089841575, 19.2696652931808], [121.376953103258, 19.2696652931808]]]]}, "properties": {"taskId": 255, "taskX": 6858, "taskY": 4543, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 19.3111433517365], [121.376953103258, 19.3526108910439], [121.42089841575, 19.3526108910439], [121.42089841575, 19.3111433517365], [121.376953103258, 19.3111433517365]]]]}, "properties": {"taskId": 256, "taskX": 6858, "taskY": 4544, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 19.3526108910439], [121.376953103258, 19.3940678920553], [121.42089841575, 19.3940678920553], [121.42089841575, 19.3526108910439], [121.376953103258, 19.3526108910439]]]]}, "properties": {"taskId": 257, "taskX": 6858, "taskY": 4545, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 19.43551433575], [121.376953103258, 19.476950203134], [121.42089841575, 19.476950203134], [121.42089841575, 19.43551433575], [121.376953103258, 19.43551433575]]]]}, "properties": {"taskId": 259, "taskX": 6858, "taskY": 4547, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 19.4869327186755], [121.413645313918, 19.5183754752406], [121.42089841575, 19.5183754752406], [121.42089841575, 19.476950203134], [121.376953103258, 19.476950203134], [121.376953103258, 19.4869327186755]]]]}, "properties": {"taskId": 260, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.413645313918, 19.5183754752406], [121.42089841575, 19.5245901720105], [121.42089841575, 19.5183754752406], [121.413645313918, 19.5183754752406]]]]}, "properties": {"taskId": 261, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 17.5837797951429], [121.439966063787, 17.602139120297], [121.464843728242, 17.602139120297], [121.464843728242, 17.5837797951429]]]]}, "properties": {"taskId": 262, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.439966063787, 17.602139120297], [121.422982161484, 17.614671901292], [121.42089841575, 17.6178164511126], [121.42089841575, 17.6440220248121], [121.464843728242, 17.6440220248121], [121.464843728242, 17.602139120297], [121.439966063787, 17.602139120297]]]]}, "properties": {"taskId": 263, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 17.8114560854767], [121.42089841575, 17.8532901110035], [121.464843728242, 17.8532901110035], [121.464843728242, 17.8114560854767], [121.42089841575, 17.8114560854767]]]]}, "properties": {"taskId": 268, "taskX": 6859, "taskY": 4508, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 17.8532901110035], [121.42089841575, 17.8951143006479], [121.464843728242, 17.8951143006479], [121.464843728242, 17.8532901110035], [121.42089841575, 17.8532901110035]]]]}, "properties": {"taskId": 269, "taskX": 6859, "taskY": 4509, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 17.8951143006479], [121.42089841575, 17.9369286344415], [121.464843728242, 17.9369286344415], [121.464843728242, 17.8951143006479], [121.42089841575, 17.8951143006479]]]]}, "properties": {"taskId": 270, "taskX": 6859, "taskY": 4510, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 17.9369286344415], [121.42089841575, 17.9787330924414], [121.464843728242, 17.9787330924414], [121.464843728242, 17.9369286344415], [121.42089841575, 17.9369286344415]]]]}, "properties": {"taskId": 271, "taskX": 6859, "taskY": 4511, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.0205276547308], [121.42089841575, 18.0623123014185], [121.464843728242, 18.0623123014185], [121.464843728242, 18.0205276547308], [121.42089841575, 18.0205276547308]]]]}, "properties": {"taskId": 273, "taskX": 6859, "taskY": 4513, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.0623123014185], [121.42089841575, 18.104087012639], [121.464843728242, 18.104087012639], [121.464843728242, 18.0623123014185], [121.42089841575, 18.0623123014185]]]]}, "properties": {"taskId": 274, "taskX": 6859, "taskY": 4514, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.2082228223861], [121.430226400813, 18.2293513352315], [121.464843728242, 18.2293513352315], [121.464843728242, 18.1876065493462], [121.42089841575, 18.1876065493462], [121.42089841575, 18.2082228223861]]]]}, "properties": {"taskId": 277, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.430226400813, 18.2293513352315], [121.444954817734, 18.2627069640542], [121.428109399687, 18.271086106447], [121.464843728242, 18.271086106447], [121.464843728242, 18.2293513352315], [121.430226400813, 18.2293513352315]]]]}, "properties": {"taskId": 278, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.428109399687, 18.271086106447], [121.42089841575, 18.2746728252905], [121.42089841575, 18.3128108432568], [121.464843728242, 18.3128108432568], [121.464843728242, 18.271086106447], [121.428109399687, 18.271086106447]]]]}, "properties": {"taskId": 279, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.3128108432568], [121.42089841575, 18.3545255259514], [121.464843728242, 18.3545255259514], [121.464843728242, 18.3128108432568], [121.42089841575, 18.3128108432568]]]]}, "properties": {"taskId": 280, "taskX": 6859, "taskY": 4520, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.3545255259514], [121.42089841575, 18.3962301348468], [121.464843728242, 18.3962301348468], [121.464843728242, 18.3545255259514], [121.42089841575, 18.3545255259514]]]]}, "properties": {"taskId": 281, "taskX": 6859, "taskY": 4521, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.4796090526366], [121.42089841575, 18.5212833222942], [121.464843728242, 18.5212833222942], [121.464843728242, 18.4796090526366], [121.42089841575, 18.4796090526366]]]]}, "properties": {"taskId": 284, "taskX": 6859, "taskY": 4524, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.6046013852398], [121.42089841575, 18.6462451394485], [121.464843728242, 18.6462451394485], [121.464843728242, 18.6046013852398], [121.42089841575, 18.6046013852398]]]]}, "properties": {"taskId": 287, "taskX": 6859, "taskY": 4527, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.6462451394485], [121.42089841575, 18.6878786828054], [121.464843728242, 18.6878786828054], [121.464843728242, 18.6462451394485], [121.42089841575, 18.6462451394485]]]]}, "properties": {"taskId": 288, "taskX": 6859, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.7295019958367], [121.42089841575, 18.7711150590949], [121.464843728242, 18.7711150590949], [121.464843728242, 18.7295019958367], [121.42089841575, 18.7295019958367]]]]}, "properties": {"taskId": 290, "taskX": 6859, "taskY": 4530, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.7711150590949], [121.42089841575, 18.812717853159], [121.464843728242, 18.812717853159], [121.464843728242, 18.7711150590949], [121.42089841575, 18.7711150590949]]]]}, "properties": {"taskId": 291, "taskX": 6859, "taskY": 4531, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.812717853159], [121.42089841575, 18.8543103586344], [121.464843728242, 18.8543103586344], [121.464843728242, 18.812717853159], [121.42089841575, 18.812717853159]]]]}, "properties": {"taskId": 292, "taskX": 6859, "taskY": 4532, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.8543103586344], [121.42089841575, 18.895892556153], [121.464843728242, 18.895892556153], [121.464843728242, 18.8543103586344], [121.42089841575, 18.8543103586344]]]]}, "properties": {"taskId": 293, "taskX": 6859, "taskY": 4533, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.895892556153], [121.42089841575, 18.9374644263732], [121.464843728242, 18.9374644263732], [121.464843728242, 18.895892556153], [121.42089841575, 18.895892556153]]]]}, "properties": {"taskId": 294, "taskX": 6859, "taskY": 4534, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.9374644263732], [121.42089841575, 18.97902594998], [121.464843728242, 18.97902594998], [121.464843728242, 18.9374644263732], [121.42089841575, 18.9374644263732]]]]}, "properties": {"taskId": 295, "taskX": 6859, "taskY": 4535, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.97902594998], [121.42089841575, 19.0205771076849], [121.464843728242, 19.0205771076849], [121.464843728242, 18.97902594998], [121.42089841575, 18.97902594998]]]]}, "properties": {"taskId": 296, "taskX": 6859, "taskY": 4536, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 19.0205771076849], [121.42089841575, 19.0621178802261], [121.464843728242, 19.0621178802261], [121.464843728242, 19.0205771076849], [121.42089841575, 19.0205771076849]]]]}, "properties": {"taskId": 297, "taskX": 6859, "taskY": 4537, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 19.0621178802261], [121.42089841575, 19.1036482483685], [121.464843728242, 19.1036482483685], [121.464843728242, 19.0621178802261], [121.42089841575, 19.0621178802261]]]]}, "properties": {"taskId": 298, "taskX": 6859, "taskY": 4538, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 19.1036482483685], [121.42089841575, 19.1451681929035], [121.464843728242, 19.1451681929035], [121.464843728242, 19.1036482483685], [121.42089841575, 19.1036482483685]]]]}, "properties": {"taskId": 299, "taskX": 6859, "taskY": 4539, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 19.1451681929035], [121.42089841575, 19.1866776946495], [121.464843728242, 19.1866776946495], [121.464843728242, 19.1451681929035], [121.42089841575, 19.1451681929035]]]]}, "properties": {"taskId": 300, "taskX": 6859, "taskY": 4540, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 19.1866776946495], [121.42089841575, 19.2281767344513], [121.464843728242, 19.2281767344513], [121.464843728242, 19.1866776946495], [121.42089841575, 19.1866776946495]]]]}, "properties": {"taskId": 301, "taskX": 6859, "taskY": 4541, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 19.2281767344513], [121.42089841575, 19.2696652931808], [121.464843728242, 19.2696652931808], [121.464843728242, 19.2281767344513], [121.42089841575, 19.2281767344513]]]]}, "properties": {"taskId": 302, "taskX": 6859, "taskY": 4542, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 19.2696652931808], [121.42089841575, 19.3111433517365], [121.464843728242, 19.3111433517365], [121.464843728242, 19.2696652931808], [121.42089841575, 19.2696652931808]]]]}, "properties": {"taskId": 303, "taskX": 6859, "taskY": 4543, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 19.3111433517365], [121.42089841575, 19.3526108910439], [121.464843728242, 19.3526108910439], [121.464843728242, 19.3111433517365], [121.42089841575, 19.3111433517365]]]]}, "properties": {"taskId": 304, "taskX": 6859, "taskY": 4544, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 19.3526108910439], [121.42089841575, 19.3940678920553], [121.464843728242, 19.3940678920553], [121.464843728242, 19.3526108910439], [121.42089841575, 19.3526108910439]]]]}, "properties": {"taskId": 305, "taskX": 6859, "taskY": 4545, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 19.43551433575], [121.42089841575, 19.476950203134], [121.464843728242, 19.476950203134], [121.464843728242, 19.43551433575], [121.42089841575, 19.43551433575]]]]}, "properties": {"taskId": 307, "taskX": 6859, "taskY": 4547, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 19.476950203134], [121.42089841575, 19.5183754752406], [121.464843728242, 19.5183754752406], [121.464843728242, 19.476950203134], [121.42089841575, 19.476950203134]]]]}, "properties": {"taskId": 308, "taskX": 6859, "taskY": 4548, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 19.5245901720105], [121.461985157659, 19.5597901331299], [121.464843728242, 19.5597901331299], [121.464843728242, 19.5183754752406], [121.42089841575, 19.5183754752406], [121.42089841575, 19.5245901720105]]]]}, "properties": {"taskId": 309, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.461985157659, 19.5597901331299], [121.464843728242, 19.562238850918], [121.464843728242, 19.5597901331299], [121.461985157659, 19.5597901331299]]]]}, "properties": {"taskId": 310, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 17.5513442908546], [121.496728647331, 17.5602465002479], [121.508789040735, 17.5602465002479], [121.508789040735, 17.5513442908546]]]]}, "properties": {"taskId": 311, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.496728647331, 17.5602465002479], [121.464843728242, 17.5837797951429], [121.464843728242, 17.602139120297], [121.508789040735, 17.602139120297], [121.508789040735, 17.5602465002479], [121.496728647331, 17.5602465002479]]]]}, "properties": {"taskId": 312, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 17.602139120297], [121.464843728242, 17.6440220248121], [121.508789040735, 17.6440220248121], [121.508789040735, 17.602139120297], [121.464843728242, 17.602139120297]]]]}, "properties": {"taskId": 313, "taskX": 6860, "taskY": 4503, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 17.8532901110035], [121.464843728242, 17.8951143006479], [121.508789040735, 17.8951143006479], [121.508789040735, 17.8532901110035], [121.464843728242, 17.8532901110035]]]]}, "properties": {"taskId": 319, "taskX": 6860, "taskY": 4509, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 17.8951143006479], [121.464843728242, 17.9369286344415], [121.508789040735, 17.9369286344415], [121.508789040735, 17.8951143006479], [121.464843728242, 17.8951143006479]]]]}, "properties": {"taskId": 320, "taskX": 6860, "taskY": 4510, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 17.9369286344415], [121.464843728242, 17.9787330924414], [121.508789040735, 17.9787330924414], [121.508789040735, 17.9369286344415], [121.464843728242, 17.9369286344415]]]]}, "properties": {"taskId": 321, "taskX": 6860, "taskY": 4511, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 17.9787330924414], [121.464843728242, 18.0205276547308], [121.508789040735, 18.0205276547308], [121.508789040735, 17.9787330924414], [121.464843728242, 17.9787330924414]]]]}, "properties": {"taskId": 322, "taskX": 6860, "taskY": 4512, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.0205276547308], [121.464843728242, 18.0623123014185], [121.508789040735, 18.0623123014185], [121.508789040735, 18.0205276547308], [121.464843728242, 18.0205276547308]]]]}, "properties": {"taskId": 323, "taskX": 6860, "taskY": 4513, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.3128108432568], [121.464843728242, 18.3545255259514], [121.508789040735, 18.3545255259514], [121.508789040735, 18.3128108432568], [121.464843728242, 18.3128108432568]]]]}, "properties": {"taskId": 330, "taskX": 6860, "taskY": 4520, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.4379246502857], [121.464843728242, 18.4796090526366], [121.508789040735, 18.4796090526366], [121.508789040735, 18.4379246502857], [121.464843728242, 18.4379246502857]]]]}, "properties": {"taskId": 333, "taskX": 6860, "taskY": 4523, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.6046013852398], [121.464843728242, 18.6462451394485], [121.508789040735, 18.6462451394485], [121.508789040735, 18.6046013852398], [121.464843728242, 18.6046013852398]]]]}, "properties": {"taskId": 337, "taskX": 6860, "taskY": 4527, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.6878786828054], [121.464843728242, 18.7295019958367], [121.508789040735, 18.7295019958367], [121.508789040735, 18.6878786828054], [121.464843728242, 18.6878786828054]]]]}, "properties": {"taskId": 339, "taskX": 6860, "taskY": 4529, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.7711150590949], [121.464843728242, 18.812717853159], [121.508789040735, 18.812717853159], [121.508789040735, 18.7711150590949], [121.464843728242, 18.7711150590949]]]]}, "properties": {"taskId": 341, "taskX": 6860, "taskY": 4531, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.812717853159], [121.464843728242, 18.8543103586344], [121.508789040735, 18.8543103586344], [121.508789040735, 18.812717853159], [121.464843728242, 18.812717853159]]]]}, "properties": {"taskId": 342, "taskX": 6860, "taskY": 4532, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.8543103586344], [121.464843728242, 18.895892556153], [121.508789040735, 18.895892556153], [121.508789040735, 18.8543103586344], [121.464843728242, 18.8543103586344]]]]}, "properties": {"taskId": 343, "taskX": 6860, "taskY": 4533, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.895892556153], [121.464843728242, 18.9374644263732], [121.508789040735, 18.9374644263732], [121.508789040735, 18.895892556153], [121.464843728242, 18.895892556153]]]]}, "properties": {"taskId": 344, "taskX": 6860, "taskY": 4534, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.9374644263732], [121.464843728242, 18.97902594998], [121.508789040735, 18.97902594998], [121.508789040735, 18.9374644263732], [121.464843728242, 18.9374644263732]]]]}, "properties": {"taskId": 345, "taskX": 6860, "taskY": 4535, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.97902594998], [121.464843728242, 19.0205771076849], [121.508789040735, 19.0205771076849], [121.508789040735, 18.97902594998], [121.464843728242, 18.97902594998]]]]}, "properties": {"taskId": 346, "taskX": 6860, "taskY": 4536, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 19.0205771076849], [121.464843728242, 19.0621178802261], [121.508789040735, 19.0621178802261], [121.508789040735, 19.0205771076849], [121.464843728242, 19.0205771076849]]]]}, "properties": {"taskId": 347, "taskX": 6860, "taskY": 4537, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 19.0621178802261], [121.464843728242, 19.1036482483685], [121.508789040735, 19.1036482483685], [121.508789040735, 19.0621178802261], [121.464843728242, 19.0621178802261]]]]}, "properties": {"taskId": 348, "taskX": 6860, "taskY": 4538, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 19.1036482483685], [121.464843728242, 19.1451681929035], [121.508789040735, 19.1451681929035], [121.508789040735, 19.1036482483685], [121.464843728242, 19.1036482483685]]]]}, "properties": {"taskId": 349, "taskX": 6860, "taskY": 4539, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 19.1866776946495], [121.464843728242, 19.2281767344513], [121.508789040735, 19.2281767344513], [121.508789040735, 19.1866776946495], [121.464843728242, 19.1866776946495]]]]}, "properties": {"taskId": 351, "taskX": 6860, "taskY": 4541, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 19.3111433517365], [121.464843728242, 19.3526108910439], [121.508789040735, 19.3526108910439], [121.508789040735, 19.3111433517365], [121.464843728242, 19.3111433517365]]]]}, "properties": {"taskId": 354, "taskX": 6860, "taskY": 4544, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 19.3526108910439], [121.464843728242, 19.3940678920553], [121.508789040735, 19.3940678920553], [121.508789040735, 19.3526108910439], [121.464843728242, 19.3526108910439]]]]}, "properties": {"taskId": 355, "taskX": 6860, "taskY": 4545, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 19.3940678920553], [121.464843728242, 19.43551433575], [121.508789040735, 19.43551433575], [121.508789040735, 19.3940678920553], [121.464843728242, 19.3940678920553]]]]}, "properties": {"taskId": 356, "taskX": 6860, "taskY": 4546, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 19.43551433575], [121.464843728242, 19.476950203134], [121.508789040735, 19.476950203134], [121.508789040735, 19.43551433575], [121.464843728242, 19.43551433575]]]]}, "properties": {"taskId": 357, "taskX": 6860, "taskY": 4547, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 19.476950203134], [121.464843728242, 19.5183754752406], [121.508789040735, 19.5183754752406], [121.508789040735, 19.476950203134], [121.464843728242, 19.476950203134]]]]}, "properties": {"taskId": 358, "taskX": 6860, "taskY": 4548, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 19.5183754752406], [121.464843728242, 19.5597901331299], [121.508789040735, 19.5597901331299], [121.508789040735, 19.5183754752406], [121.464843728242, 19.5183754752406]]]]}, "properties": {"taskId": 359, "taskX": 6860, "taskY": 4549, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 19.562238850918], [121.508789040735, 19.5998787411907], [121.508789040735, 19.5597901331299], [121.464843728242, 19.5597901331299], [121.464843728242, 19.562238850918]]]]}, "properties": {"taskId": 360, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.5189029779319], [121.508789040735, 17.5513442908546], [121.508789040735, 17.5602465002479], [121.552734353227, 17.5602465002479], [121.552734353227, 17.5189029779319]]]]}, "properties": {"taskId": 361, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 17.6858951936713], [121.508789040735, 17.7277586067781], [121.552734353227, 17.7277586067781], [121.552734353227, 17.6858951936713], [121.508789040735, 17.6858951936713]]]]}, "properties": {"taskId": 365, "taskX": 6861, "taskY": 4505, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 17.8114560854767], [121.508789040735, 17.8532901110035], [121.552734353227, 17.8532901110035], [121.552734353227, 17.8114560854767], [121.508789040735, 17.8114560854767]]]]}, "properties": {"taskId": 368, "taskX": 6861, "taskY": 4508, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 17.8532901110035], [121.508789040735, 17.8951143006479], [121.552734353227, 17.8951143006479], [121.552734353227, 17.8532901110035], [121.508789040735, 17.8532901110035]]]]}, "properties": {"taskId": 369, "taskX": 6861, "taskY": 4509, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 17.9787330924414], [121.508789040735, 18.0205276547308], [121.552734353227, 18.0205276547308], [121.552734353227, 17.9787330924414], [121.508789040735, 17.9787330924414]]]]}, "properties": {"taskId": 372, "taskX": 6861, "taskY": 4512, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.0205276547308], [121.508789040735, 18.0623123014185], [121.552734353227, 18.0623123014185], [121.552734353227, 18.0205276547308], [121.508789040735, 18.0205276547308]]]]}, "properties": {"taskId": 373, "taskX": 6861, "taskY": 4513, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.104087012639], [121.508789040735, 18.1458517685528], [121.552734353227, 18.1458517685528], [121.552734353227, 18.104087012639], [121.508789040735, 18.104087012639]]]]}, "properties": {"taskId": 375, "taskX": 6861, "taskY": 4515, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.1458517685528], [121.508789040735, 18.1876065493462], [121.552734353227, 18.1876065493462], [121.552734353227, 18.1458517685528], [121.508789040735, 18.1458517685528]]]]}, "properties": {"taskId": 376, "taskX": 6861, "taskY": 4516, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.1876065493462], [121.508789040735, 18.2293513352315], [121.552734353227, 18.2293513352315], [121.552734353227, 18.1876065493462], [121.508789040735, 18.1876065493462]]]]}, "properties": {"taskId": 377, "taskX": 6861, "taskY": 4517, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.271086106447], [121.508789040735, 18.3128108432568], [121.552734353227, 18.3128108432568], [121.552734353227, 18.271086106447], [121.508789040735, 18.271086106447]]]]}, "properties": {"taskId": 379, "taskX": 6861, "taskY": 4519, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.3128108432568], [121.508789040735, 18.3545255259514], [121.552734353227, 18.3545255259514], [121.552734353227, 18.3128108432568], [121.508789040735, 18.3128108432568]]]]}, "properties": {"taskId": 380, "taskX": 6861, "taskY": 4520, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.5629474396796], [121.508789040735, 18.6046013852398], [121.552734353227, 18.6046013852398], [121.552734353227, 18.5629474396796], [121.508789040735, 18.5629474396796]]]]}, "properties": {"taskId": 386, "taskX": 6861, "taskY": 4526, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.6046013852398], [121.508789040735, 18.6462451394485], [121.552734353227, 18.6462451394485], [121.552734353227, 18.6046013852398], [121.508789040735, 18.6046013852398]]]]}, "properties": {"taskId": 387, "taskX": 6861, "taskY": 4527, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.6462451394485], [121.508789040735, 18.6878786828054], [121.552734353227, 18.6878786828054], [121.552734353227, 18.6462451394485], [121.508789040735, 18.6462451394485]]]]}, "properties": {"taskId": 388, "taskX": 6861, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.7711150590949], [121.508789040735, 18.812717853159], [121.552734353227, 18.812717853159], [121.552734353227, 18.7711150590949], [121.508789040735, 18.7711150590949]]]]}, "properties": {"taskId": 391, "taskX": 6861, "taskY": 4531, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.812717853159], [121.508789040735, 18.8543103586344], [121.552734353227, 18.8543103586344], [121.552734353227, 18.812717853159], [121.508789040735, 18.812717853159]]]]}, "properties": {"taskId": 392, "taskX": 6861, "taskY": 4532, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.8543103586344], [121.508789040735, 18.895892556153], [121.552734353227, 18.895892556153], [121.552734353227, 18.8543103586344], [121.508789040735, 18.8543103586344]]]]}, "properties": {"taskId": 393, "taskX": 6861, "taskY": 4533, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.895892556153], [121.508789040735, 18.9374644263732], [121.552734353227, 18.9374644263732], [121.552734353227, 18.895892556153], [121.508789040735, 18.895892556153]]]]}, "properties": {"taskId": 394, "taskX": 6861, "taskY": 4534, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.9374644263732], [121.508789040735, 18.97902594998], [121.552734353227, 18.97902594998], [121.552734353227, 18.9374644263732], [121.508789040735, 18.9374644263732]]]]}, "properties": {"taskId": 395, "taskX": 6861, "taskY": 4535, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.97902594998], [121.508789040735, 19.0205771076849], [121.552734353227, 19.0205771076849], [121.552734353227, 18.97902594998], [121.508789040735, 18.97902594998]]]]}, "properties": {"taskId": 396, "taskX": 6861, "taskY": 4536, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 19.0205771076849], [121.508789040735, 19.0621178802261], [121.552734353227, 19.0621178802261], [121.552734353227, 19.0205771076849], [121.508789040735, 19.0205771076849]]]]}, "properties": {"taskId": 397, "taskX": 6861, "taskY": 4537, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 19.0621178802261], [121.508789040735, 19.1036482483685], [121.552734353227, 19.1036482483685], [121.552734353227, 19.0621178802261], [121.508789040735, 19.0621178802261]]]]}, "properties": {"taskId": 398, "taskX": 6861, "taskY": 4538, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 19.1036482483685], [121.508789040735, 19.1451681929035], [121.552734353227, 19.1451681929035], [121.552734353227, 19.1036482483685], [121.508789040735, 19.1036482483685]]]]}, "properties": {"taskId": 399, "taskX": 6861, "taskY": 4539, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 19.1451681929035], [121.508789040735, 19.1866776946495], [121.552734353227, 19.1866776946495], [121.552734353227, 19.1451681929035], [121.508789040735, 19.1451681929035]]]]}, "properties": {"taskId": 400, "taskX": 6861, "taskY": 4540, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 19.1866776946495], [121.508789040735, 19.2281767344513], [121.552734353227, 19.2281767344513], [121.552734353227, 19.1866776946495], [121.508789040735, 19.1866776946495]]]]}, "properties": {"taskId": 401, "taskX": 6861, "taskY": 4541, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 19.2281767344513], [121.508789040735, 19.2696652931808], [121.552734353227, 19.2696652931808], [121.552734353227, 19.2281767344513], [121.508789040735, 19.2281767344513]]]]}, "properties": {"taskId": 402, "taskX": 6861, "taskY": 4542, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 19.2696652931808], [121.508789040735, 19.3111433517365], [121.552734353227, 19.3111433517365], [121.552734353227, 19.2696652931808], [121.508789040735, 19.2696652931808]]]]}, "properties": {"taskId": 403, "taskX": 6861, "taskY": 4543, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 19.3111433517365], [121.508789040735, 19.3526108910439], [121.552734353227, 19.3526108910439], [121.552734353227, 19.3111433517365], [121.508789040735, 19.3111433517365]]]]}, "properties": {"taskId": 404, "taskX": 6861, "taskY": 4544, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 19.3526108910439], [121.508789040735, 19.3940678920553], [121.552734353227, 19.3940678920553], [121.552734353227, 19.3526108910439], [121.508789040735, 19.3526108910439]]]]}, "properties": {"taskId": 405, "taskX": 6861, "taskY": 4545, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 19.3940678920553], [121.508789040735, 19.43551433575], [121.552734353227, 19.43551433575], [121.552734353227, 19.3940678920553], [121.508789040735, 19.3940678920553]]]]}, "properties": {"taskId": 406, "taskX": 6861, "taskY": 4546, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 19.43551433575], [121.508789040735, 19.476950203134], [121.552734353227, 19.476950203134], [121.552734353227, 19.43551433575], [121.508789040735, 19.43551433575]]]]}, "properties": {"taskId": 407, "taskX": 6861, "taskY": 4547, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 19.5998787411907], [121.5103250014, 19.6011941578891], [121.552734353227, 19.6011941578891], [121.552734353227, 19.5597901331299], [121.508789040735, 19.5597901331299], [121.508789040735, 19.5998787411907]]]]}, "properties": {"taskId": 410, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.5103250014, 19.6011941578891], [121.532845442734, 19.6204797217345], [121.552734353227, 19.62240117213], [121.552734353227, 19.6011941578891], [121.5103250014, 19.6011941578891]]]]}, "properties": {"taskId": 411, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.4864558657369], [121.553491230875, 17.518344184812], [121.596679665719, 17.518344184812], [121.596679665719, 17.4864558657369]]]]}, "properties": {"taskId": 412, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.553491230875, 17.518344184812], [121.552734353227, 17.5189029779319], [121.552734353227, 17.5602465002479], [121.596679665719, 17.5602465002479], [121.596679665719, 17.518344184812], [121.553491230875, 17.518344184812]]]]}, "properties": {"taskId": 413, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.7277586067781], [121.552734353227, 17.7696122440617], [121.596679665719, 17.7696122440617], [121.596679665719, 17.7277586067781], [121.552734353227, 17.7277586067781]]]]}, "properties": {"taskId": 418, "taskX": 6862, "taskY": 4506, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.8951143006479], [121.552734353227, 17.9369286344415], [121.596679665719, 17.9369286344415], [121.596679665719, 17.8951143006479], [121.552734353227, 17.8951143006479]]]]}, "properties": {"taskId": 422, "taskX": 6862, "taskY": 4510, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.3128108432568], [121.552734353227, 18.3545255259514], [121.596679665719, 18.3545255259514], [121.596679665719, 18.3128108432568], [121.552734353227, 18.3128108432568]]]]}, "properties": {"taskId": 432, "taskX": 6862, "taskY": 4520, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.3545255259514], [121.552734353227, 18.3962301348468], [121.596679665719, 18.3962301348468], [121.596679665719, 18.3545255259514], [121.552734353227, 18.3545255259514]]]]}, "properties": {"taskId": 433, "taskX": 6862, "taskY": 4521, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.3962301348468], [121.552734353227, 18.4379246502857], [121.596679665719, 18.4379246502857], [121.596679665719, 18.3962301348468], [121.552734353227, 18.3962301348468]]]]}, "properties": {"taskId": 434, "taskX": 6862, "taskY": 4522, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.4796090526366], [121.552734353227, 18.5212833222942], [121.596679665719, 18.5212833222942], [121.596679665719, 18.4796090526366], [121.552734353227, 18.4796090526366]]]]}, "properties": {"taskId": 436, "taskX": 6862, "taskY": 4524, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.5212833222942], [121.552734353227, 18.5629474396796], [121.596679665719, 18.5629474396796], [121.596679665719, 18.5212833222942], [121.552734353227, 18.5212833222942]]]]}, "properties": {"taskId": 437, "taskX": 6862, "taskY": 4525, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.5629474396796], [121.552734353227, 18.6046013852398], [121.596679665719, 18.6046013852398], [121.596679665719, 18.5629474396796], [121.552734353227, 18.5629474396796]]]]}, "properties": {"taskId": 438, "taskX": 6862, "taskY": 4526, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.6046013852398], [121.552734353227, 18.6462451394485], [121.596679665719, 18.6462451394485], [121.596679665719, 18.6046013852398], [121.552734353227, 18.6046013852398]]]]}, "properties": {"taskId": 439, "taskX": 6862, "taskY": 4527, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.7295019958367], [121.552734353227, 18.7711150590949], [121.596679665719, 18.7711150590949], [121.596679665719, 18.7295019958367], [121.552734353227, 18.7295019958367]]]]}, "properties": {"taskId": 442, "taskX": 6862, "taskY": 4530, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.7711150590949], [121.552734353227, 18.812717853159], [121.596679665719, 18.812717853159], [121.596679665719, 18.7711150590949], [121.552734353227, 18.7711150590949]]]]}, "properties": {"taskId": 443, "taskX": 6862, "taskY": 4531, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.812717853159], [121.552734353227, 18.8543103586344], [121.596679665719, 18.8543103586344], [121.596679665719, 18.812717853159], [121.552734353227, 18.812717853159]]]]}, "properties": {"taskId": 444, "taskX": 6862, "taskY": 4532, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.9374644263732], [121.552734353227, 18.97902594998], [121.596679665719, 18.97902594998], [121.596679665719, 18.9374644263732], [121.552734353227, 18.9374644263732]]]]}, "properties": {"taskId": 447, "taskX": 6862, "taskY": 4535, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.97902594998], [121.552734353227, 19.0205771076849], [121.596679665719, 19.0205771076849], [121.596679665719, 18.97902594998], [121.552734353227, 18.97902594998]]]]}, "properties": {"taskId": 448, "taskX": 6862, "taskY": 4536, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 19.0205771076849], [121.552734353227, 19.0621178802261], [121.596679665719, 19.0621178802261], [121.596679665719, 19.0205771076849], [121.552734353227, 19.0205771076849]]]]}, "properties": {"taskId": 449, "taskX": 6862, "taskY": 4537, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 19.0621178802261], [121.552734353227, 19.1036482483685], [121.596679665719, 19.1036482483685], [121.596679665719, 19.0621178802261], [121.552734353227, 19.0621178802261]]]]}, "properties": {"taskId": 450, "taskX": 6862, "taskY": 4538, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 19.1036482483685], [121.552734353227, 19.1451681929035], [121.596679665719, 19.1451681929035], [121.596679665719, 19.1036482483685], [121.552734353227, 19.1036482483685]]]]}, "properties": {"taskId": 451, "taskX": 6862, "taskY": 4539, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 19.1451681929035], [121.552734353227, 19.1866776946495], [121.596679665719, 19.1866776946495], [121.596679665719, 19.1451681929035], [121.552734353227, 19.1451681929035]]]]}, "properties": {"taskId": 452, "taskX": 6862, "taskY": 4540, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 19.1866776946495], [121.552734353227, 19.2281767344513], [121.596679665719, 19.2281767344513], [121.596679665719, 19.1866776946495], [121.552734353227, 19.1866776946495]]]]}, "properties": {"taskId": 453, "taskX": 6862, "taskY": 4541, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 19.43551433575], [121.552734353227, 19.476950203134], [121.596679665719, 19.476950203134], [121.596679665719, 19.43551433575], [121.552734353227, 19.43551433575]]]]}, "properties": {"taskId": 459, "taskX": 6862, "taskY": 4547, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 19.476950203134], [121.552734353227, 19.5183754752406], [121.596679665719, 19.5183754752406], [121.596679665719, 19.476950203134], [121.552734353227, 19.476950203134]]]]}, "properties": {"taskId": 460, "taskX": 6862, "taskY": 4548, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 19.62240117213], [121.596679665719, 19.6266466092007], [121.596679665719, 19.6011941578891], [121.552734353227, 19.6011941578891], [121.552734353227, 19.62240117213]]]]}, "properties": {"taskId": 463, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.4540029636406], [121.610253814418, 17.4764321941621], [121.640624978211, 17.4764321941621], [121.640624978211, 17.4540029636406]]]]}, "properties": {"taskId": 464, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.610253814418, 17.4764321941621], [121.596679665719, 17.4864558657369], [121.596679665719, 17.518344184812], [121.640624978211, 17.518344184812], [121.640624978211, 17.4764321941621], [121.610253814418, 17.4764321941621]]]]}, "properties": {"taskId": 465, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.5602465002479], [121.596679665719, 17.602139120297], [121.640624978211, 17.602139120297], [121.640624978211, 17.5602465002479], [121.596679665719, 17.5602465002479]]]]}, "properties": {"taskId": 467, "taskX": 6863, "taskY": 4502, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.9787330924414], [121.596679665719, 18.0205276547308], [121.640624978211, 18.0205276547308], [121.640624978211, 17.9787330924414], [121.596679665719, 17.9787330924414]]]]}, "properties": {"taskId": 477, "taskX": 6863, "taskY": 4512, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.104087012639], [121.596679665719, 18.1458517685528], [121.640624978211, 18.1458517685528], [121.640624978211, 18.104087012639], [121.596679665719, 18.104087012639]]]]}, "properties": {"taskId": 480, "taskX": 6863, "taskY": 4515, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.1876065493462], [121.596679665719, 18.2293513352315], [121.640624978211, 18.2293513352315], [121.640624978211, 18.1876065493462], [121.596679665719, 18.1876065493462]]]]}, "properties": {"taskId": 482, "taskX": 6863, "taskY": 4517, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.2293513352315], [121.596679665719, 18.271086106447], [121.640624978211, 18.271086106447], [121.640624978211, 18.2293513352315], [121.596679665719, 18.2293513352315]]]]}, "properties": {"taskId": 483, "taskX": 6863, "taskY": 4518, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.4796090526366], [121.596679665719, 18.5212833222942], [121.640624978211, 18.5212833222942], [121.640624978211, 18.4796090526366], [121.596679665719, 18.4796090526366]]]]}, "properties": {"taskId": 489, "taskX": 6863, "taskY": 4524, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.5212833222942], [121.596679665719, 18.5629474396796], [121.640624978211, 18.5629474396796], [121.640624978211, 18.5212833222942], [121.596679665719, 18.5212833222942]]]]}, "properties": {"taskId": 490, "taskX": 6863, "taskY": 4525, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.5629474396796], [121.596679665719, 18.6046013852398], [121.640624978211, 18.6046013852398], [121.640624978211, 18.5629474396796], [121.596679665719, 18.5629474396796]]]]}, "properties": {"taskId": 491, "taskX": 6863, "taskY": 4526, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.6046013852398], [121.596679665719, 18.6462451394485], [121.640624978211, 18.6462451394485], [121.640624978211, 18.6046013852398], [121.596679665719, 18.6046013852398]]]]}, "properties": {"taskId": 492, "taskX": 6863, "taskY": 4527, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.6462451394485], [121.596679665719, 18.6878786828054], [121.640624978211, 18.6878786828054], [121.640624978211, 18.6462451394485], [121.596679665719, 18.6462451394485]]]]}, "properties": {"taskId": 493, "taskX": 6863, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.6878786828054], [121.596679665719, 18.7295019958367], [121.640624978211, 18.7295019958367], [121.640624978211, 18.6878786828054], [121.596679665719, 18.6878786828054]]]]}, "properties": {"taskId": 494, "taskX": 6863, "taskY": 4529, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.7711150590949], [121.596679665719, 18.812717853159], [121.640624978211, 18.812717853159], [121.640624978211, 18.7711150590949], [121.596679665719, 18.7711150590949]]]]}, "properties": {"taskId": 496, "taskX": 6863, "taskY": 4531, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.812717853159], [121.596679665719, 18.8543103586344], [121.640624978211, 18.8543103586344], [121.640624978211, 18.812717853159], [121.596679665719, 18.812717853159]]]]}, "properties": {"taskId": 497, "taskX": 6863, "taskY": 4532, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.895892556153], [121.596679665719, 18.9374644263732], [121.640624978211, 18.9374644263732], [121.640624978211, 18.895892556153], [121.596679665719, 18.895892556153]]]]}, "properties": {"taskId": 499, "taskX": 6863, "taskY": 4534, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.9374644263732], [121.596679665719, 18.97902594998], [121.640624978211, 18.97902594998], [121.640624978211, 18.9374644263732], [121.596679665719, 18.9374644263732]]]]}, "properties": {"taskId": 500, "taskX": 6863, "taskY": 4535, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.97902594998], [121.596679665719, 19.0205771076849], [121.640624978211, 19.0205771076849], [121.640624978211, 18.97902594998], [121.596679665719, 18.97902594998]]]]}, "properties": {"taskId": 501, "taskX": 6863, "taskY": 4536, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 19.0205771076849], [121.596679665719, 19.0621178802261], [121.640624978211, 19.0621178802261], [121.640624978211, 19.0205771076849], [121.596679665719, 19.0205771076849]]]]}, "properties": {"taskId": 502, "taskX": 6863, "taskY": 4537, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 19.0621178802261], [121.596679665719, 19.1036482483685], [121.640624978211, 19.1036482483685], [121.640624978211, 19.0621178802261], [121.596679665719, 19.0621178802261]]]]}, "properties": {"taskId": 503, "taskX": 6863, "taskY": 4538, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 19.1036482483685], [121.596679665719, 19.1451681929035], [121.640624978211, 19.1451681929035], [121.640624978211, 19.1036482483685], [121.596679665719, 19.1036482483685]]]]}, "properties": {"taskId": 504, "taskX": 6863, "taskY": 4539, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 19.1451681929035], [121.596679665719, 19.1866776946495], [121.640624978211, 19.1866776946495], [121.640624978211, 19.1451681929035], [121.596679665719, 19.1451681929035]]]]}, "properties": {"taskId": 505, "taskX": 6863, "taskY": 4540, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 19.1866776946495], [121.596679665719, 19.2281767344513], [121.640624978211, 19.2281767344513], [121.640624978211, 19.1866776946495], [121.596679665719, 19.1866776946495]]]]}, "properties": {"taskId": 506, "taskX": 6863, "taskY": 4541, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 19.2281767344513], [121.596679665719, 19.2696652931808], [121.640624978211, 19.2696652931808], [121.640624978211, 19.2281767344513], [121.596679665719, 19.2281767344513]]]]}, "properties": {"taskId": 507, "taskX": 6863, "taskY": 4542, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 19.2696652931808], [121.596679665719, 19.3111433517365], [121.640624978211, 19.3111433517365], [121.640624978211, 19.2696652931808], [121.596679665719, 19.2696652931808]]]]}, "properties": {"taskId": 508, "taskX": 6863, "taskY": 4543, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 19.3111433517365], [121.596679665719, 19.3526108910439], [121.640624978211, 19.3526108910439], [121.640624978211, 19.3111433517365], [121.596679665719, 19.3111433517365]]]]}, "properties": {"taskId": 509, "taskX": 6863, "taskY": 4544, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 19.3526108910439], [121.596679665719, 19.3940678920553], [121.640624978211, 19.3940678920553], [121.640624978211, 19.3526108910439], [121.596679665719, 19.3526108910439]]]]}, "properties": {"taskId": 510, "taskX": 6863, "taskY": 4545, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 19.3940678920553], [121.596679665719, 19.43551433575], [121.640624978211, 19.43551433575], [121.640624978211, 19.3940678920553], [121.596679665719, 19.3940678920553]]]]}, "properties": {"taskId": 511, "taskX": 6863, "taskY": 4546, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 19.476950203134], [121.596679665719, 19.5183754752406], [121.640624978211, 19.5183754752406], [121.640624978211, 19.476950203134], [121.596679665719, 19.476950203134]]]]}, "properties": {"taskId": 513, "taskX": 6863, "taskY": 4548, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 19.5183754752406], [121.596679665719, 19.5597901331299], [121.640624978211, 19.5597901331299], [121.640624978211, 19.5183754752406], [121.596679665719, 19.5183754752406]]]]}, "properties": {"taskId": 514, "taskX": 6863, "taskY": 4549, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 19.5597901331299], [121.596679665719, 19.6011941578891], [121.640624978211, 19.6011941578891], [121.640624978211, 19.5597901331299], [121.596679665719, 19.5597901331299]]]]}, "properties": {"taskId": 515, "taskX": 6863, "taskY": 4550, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 19.6266466092007], [121.640624978211, 19.6308919340949], [121.640624978211, 19.6011941578891], [121.596679665719, 19.6011941578891], [121.596679665719, 19.6266466092007]]]]}, "properties": {"taskId": 516, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.4525463240224], [121.650032495699, 17.4470549127198], [121.640624978211, 17.4540029636406], [121.640624978211, 17.4764321941621], [121.684570290703, 17.4764321941621], [121.684570290703, 17.4525463240224]]]]}, "properties": {"taskId": 517, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.518344184812], [121.640624978211, 17.5602465002479], [121.684570290703, 17.5602465002479], [121.684570290703, 17.518344184812], [121.640624978211, 17.518344184812]]]]}, "properties": {"taskId": 519, "taskX": 6864, "taskY": 4501, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.7277586067781], [121.640624978211, 17.7696122440617], [121.684570290703, 17.7696122440617], [121.684570290703, 17.7277586067781], [121.640624978211, 17.7277586067781]]]]}, "properties": {"taskId": 524, "taskX": 6864, "taskY": 4506, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.7696122440617], [121.640624978211, 17.8114560854767], [121.684570290703, 17.8114560854767], [121.684570290703, 17.7696122440617], [121.640624978211, 17.7696122440617]]]]}, "properties": {"taskId": 525, "taskX": 6864, "taskY": 4507, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.8532901110035], [121.640624978211, 17.8951143006479], [121.684570290703, 17.8951143006479], [121.684570290703, 17.8532901110035], [121.640624978211, 17.8532901110035]]]]}, "properties": {"taskId": 527, "taskX": 6864, "taskY": 4509, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.9787330924414], [121.640624978211, 18.0205276547308], [121.684570290703, 18.0205276547308], [121.684570290703, 17.9787330924414], [121.640624978211, 17.9787330924414]]]]}, "properties": {"taskId": 530, "taskX": 6864, "taskY": 4512, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.4379246502857], [121.640624978211, 18.4796090526366], [121.684570290703, 18.4796090526366], [121.684570290703, 18.4379246502857], [121.640624978211, 18.4379246502857]]]]}, "properties": {"taskId": 541, "taskX": 6864, "taskY": 4523, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.4796090526366], [121.640624978211, 18.5212833222942], [121.684570290703, 18.5212833222942], [121.684570290703, 18.4796090526366], [121.640624978211, 18.4796090526366]]]]}, "properties": {"taskId": 542, "taskX": 6864, "taskY": 4524, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.5629474396796], [121.640624978211, 18.6046013852398], [121.684570290703, 18.6046013852398], [121.684570290703, 18.5629474396796], [121.640624978211, 18.5629474396796]]]]}, "properties": {"taskId": 544, "taskX": 6864, "taskY": 4526, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.6046013852398], [121.640624978211, 18.6462451394485], [121.684570290703, 18.6462451394485], [121.684570290703, 18.6046013852398], [121.640624978211, 18.6046013852398]]]]}, "properties": {"taskId": 545, "taskX": 6864, "taskY": 4527, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.6462451394485], [121.640624978211, 18.6878786828054], [121.684570290703, 18.6878786828054], [121.684570290703, 18.6462451394485], [121.640624978211, 18.6462451394485]]]]}, "properties": {"taskId": 546, "taskX": 6864, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.7295019958367], [121.640624978211, 18.7711150590949], [121.684570290703, 18.7711150590949], [121.684570290703, 18.7295019958367], [121.640624978211, 18.7295019958367]]]]}, "properties": {"taskId": 548, "taskX": 6864, "taskY": 4530, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.7711150590949], [121.640624978211, 18.812717853159], [121.684570290703, 18.812717853159], [121.684570290703, 18.7711150590949], [121.640624978211, 18.7711150590949]]]]}, "properties": {"taskId": 549, "taskX": 6864, "taskY": 4531, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.812717853159], [121.640624978211, 18.8543103586344], [121.684570290703, 18.8543103586344], [121.684570290703, 18.812717853159], [121.640624978211, 18.812717853159]]]]}, "properties": {"taskId": 550, "taskX": 6864, "taskY": 4532, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.895892556153], [121.640624978211, 18.9374644263732], [121.684570290703, 18.9374644263732], [121.684570290703, 18.895892556153], [121.640624978211, 18.895892556153]]]]}, "properties": {"taskId": 552, "taskX": 6864, "taskY": 4534, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.9374644263732], [121.640624978211, 18.97902594998], [121.684570290703, 18.97902594998], [121.684570290703, 18.9374644263732], [121.640624978211, 18.9374644263732]]]]}, "properties": {"taskId": 553, "taskX": 6864, "taskY": 4535, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.97902594998], [121.640624978211, 19.0205771076849], [121.684570290703, 19.0205771076849], [121.684570290703, 18.97902594998], [121.640624978211, 18.97902594998]]]]}, "properties": {"taskId": 554, "taskX": 6864, "taskY": 4536, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 19.0205771076849], [121.640624978211, 19.0621178802261], [121.684570290703, 19.0621178802261], [121.684570290703, 19.0205771076849], [121.640624978211, 19.0205771076849]]]]}, "properties": {"taskId": 555, "taskX": 6864, "taskY": 4537, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 19.0621178802261], [121.640624978211, 19.1036482483685], [121.684570290703, 19.1036482483685], [121.684570290703, 19.0621178802261], [121.640624978211, 19.0621178802261]]]]}, "properties": {"taskId": 556, "taskX": 6864, "taskY": 4538, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 19.1036482483685], [121.640624978211, 19.1451681929035], [121.684570290703, 19.1451681929035], [121.684570290703, 19.1036482483685], [121.640624978211, 19.1036482483685]]]]}, "properties": {"taskId": 557, "taskX": 6864, "taskY": 4539, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 19.1451681929035], [121.640624978211, 19.1866776946495], [121.684570290703, 19.1866776946495], [121.684570290703, 19.1451681929035], [121.640624978211, 19.1451681929035]]]]}, "properties": {"taskId": 558, "taskX": 6864, "taskY": 4540, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 19.1866776946495], [121.640624978211, 19.2281767344513], [121.684570290703, 19.2281767344513], [121.684570290703, 19.1866776946495], [121.640624978211, 19.1866776946495]]]]}, "properties": {"taskId": 559, "taskX": 6864, "taskY": 4541, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 19.2281767344513], [121.640624978211, 19.2696652931808], [121.684570290703, 19.2696652931808], [121.684570290703, 19.2281767344513], [121.640624978211, 19.2281767344513]]]]}, "properties": {"taskId": 560, "taskX": 6864, "taskY": 4542, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 19.2696652931808], [121.640624978211, 19.3111433517365], [121.684570290703, 19.3111433517365], [121.684570290703, 19.2696652931808], [121.640624978211, 19.2696652931808]]]]}, "properties": {"taskId": 561, "taskX": 6864, "taskY": 4543, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 19.3111433517365], [121.640624978211, 19.3526108910439], [121.684570290703, 19.3526108910439], [121.684570290703, 19.3111433517365], [121.640624978211, 19.3111433517365]]]]}, "properties": {"taskId": 562, "taskX": 6864, "taskY": 4544, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 19.3526108910439], [121.640624978211, 19.3940678920553], [121.684570290703, 19.3940678920553], [121.684570290703, 19.3526108910439], [121.640624978211, 19.3526108910439]]]]}, "properties": {"taskId": 563, "taskX": 6864, "taskY": 4545, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 19.3940678920553], [121.640624978211, 19.43551433575], [121.684570290703, 19.43551433575], [121.684570290703, 19.3940678920553], [121.640624978211, 19.3940678920553]]]]}, "properties": {"taskId": 564, "taskX": 6864, "taskY": 4546, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 19.43551433575], [121.640624978211, 19.476950203134], [121.684570290703, 19.476950203134], [121.684570290703, 19.43551433575], [121.640624978211, 19.43551433575]]]]}, "properties": {"taskId": 565, "taskX": 6864, "taskY": 4547, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 19.476950203134], [121.640624978211, 19.5183754752406], [121.684570290703, 19.5183754752406], [121.684570290703, 19.476950203134], [121.640624978211, 19.476950203134]]]]}, "properties": {"taskId": 566, "taskX": 6864, "taskY": 4548, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 19.5183754752406], [121.640624978211, 19.5597901331299], [121.684570290703, 19.5597901331299], [121.684570290703, 19.5183754752406], [121.640624978211, 19.5183754752406]]]]}, "properties": {"taskId": 567, "taskX": 6864, "taskY": 4549, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 19.5597901331299], [121.640624978211, 19.6011941578891], [121.684570290703, 19.6011941578891], [121.684570290703, 19.5597901331299], [121.640624978211, 19.5597901331299]]]]}, "properties": {"taskId": 568, "taskX": 6864, "taskY": 4550, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 20.6123915118734], [121.68130194747, 20.6327842468519], [121.684570290703, 20.6327842468519], [121.684570290703, 20.6123915118734]]]]}, "properties": {"taskId": 570, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.68130194747, 20.6327842468519], [121.679329594217, 20.645089367149], [121.684570290703, 20.6583300122631], [121.684570290703, 20.6327842468519], [121.68130194747, 20.6327842468519]]]]}, "properties": {"taskId": 571, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.459533264674], [121.684570290703, 17.4525463240224], [121.684570290703, 17.4764321941621], [121.728515603195, 17.4764321941621], [121.728515603195, 17.459533264674]]]]}, "properties": {"taskId": 572, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.4764321941621], [121.684570290703, 17.518344184812], [121.728515603195, 17.518344184812], [121.728515603195, 17.4764321941621], [121.684570290703, 17.4764321941621]]]]}, "properties": {"taskId": 573, "taskX": 6865, "taskY": 4500, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.7696122440617], [121.684570290703, 17.8114560854767], [121.728515603195, 17.8114560854767], [121.728515603195, 17.7696122440617], [121.684570290703, 17.7696122440617]]]]}, "properties": {"taskId": 580, "taskX": 6865, "taskY": 4507, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.9787330924414], [121.684570290703, 18.0205276547308], [121.728515603195, 18.0205276547308], [121.728515603195, 17.9787330924414], [121.684570290703, 17.9787330924414]]]]}, "properties": {"taskId": 585, "taskX": 6865, "taskY": 4512, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.0623123014185], [121.684570290703, 18.104087012639], [121.728515603195, 18.104087012639], [121.728515603195, 18.0623123014185], [121.684570290703, 18.0623123014185]]]]}, "properties": {"taskId": 587, "taskX": 6865, "taskY": 4514, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.1876065493462], [121.684570290703, 18.2293513352315], [121.728515603195, 18.2293513352315], [121.728515603195, 18.1876065493462], [121.684570290703, 18.1876065493462]]]]}, "properties": {"taskId": 590, "taskX": 6865, "taskY": 4517, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.271086106447], [121.684570290703, 18.3128108432568], [121.728515603195, 18.3128108432568], [121.728515603195, 18.271086106447], [121.684570290703, 18.271086106447]]]]}, "properties": {"taskId": 592, "taskX": 6865, "taskY": 4519, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.3128108432568], [121.684570290703, 18.3545255259514], [121.728515603195, 18.3545255259514], [121.728515603195, 18.3128108432568], [121.684570290703, 18.3128108432568]]]]}, "properties": {"taskId": 593, "taskX": 6865, "taskY": 4520, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.3545255259514], [121.684570290703, 18.3962301348468], [121.728515603195, 18.3962301348468], [121.728515603195, 18.3545255259514], [121.684570290703, 18.3545255259514]]]]}, "properties": {"taskId": 594, "taskX": 6865, "taskY": 4521, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.4796090526366], [121.684570290703, 18.5212833222942], [121.728515603195, 18.5212833222942], [121.728515603195, 18.4796090526366], [121.684570290703, 18.4796090526366]]]]}, "properties": {"taskId": 597, "taskX": 6865, "taskY": 4524, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.5212833222942], [121.684570290703, 18.5629474396796], [121.728515603195, 18.5629474396796], [121.728515603195, 18.5212833222942], [121.684570290703, 18.5212833222942]]]]}, "properties": {"taskId": 598, "taskX": 6865, "taskY": 4525, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.5629474396796], [121.684570290703, 18.6046013852398], [121.728515603195, 18.6046013852398], [121.728515603195, 18.5629474396796], [121.684570290703, 18.5629474396796]]]]}, "properties": {"taskId": 599, "taskX": 6865, "taskY": 4526, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.6046013852398], [121.684570290703, 18.6462451394485], [121.728515603195, 18.6462451394485], [121.728515603195, 18.6046013852398], [121.684570290703, 18.6046013852398]]]]}, "properties": {"taskId": 600, "taskX": 6865, "taskY": 4527, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.6462451394485], [121.684570290703, 18.6878786828054], [121.728515603195, 18.6878786828054], [121.728515603195, 18.6462451394485], [121.684570290703, 18.6462451394485]]]]}, "properties": {"taskId": 601, "taskX": 6865, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.6878786828054], [121.684570290703, 18.7295019958367], [121.728515603195, 18.7295019958367], [121.728515603195, 18.6878786828054], [121.684570290703, 18.6878786828054]]]]}, "properties": {"taskId": 602, "taskX": 6865, "taskY": 4529, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.7711150590949], [121.684570290703, 18.812717853159], [121.728515603195, 18.812717853159], [121.728515603195, 18.7711150590949], [121.684570290703, 18.7711150590949]]]]}, "properties": {"taskId": 604, "taskX": 6865, "taskY": 4531, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.812717853159], [121.684570290703, 18.8543103586344], [121.728515603195, 18.8543103586344], [121.728515603195, 18.812717853159], [121.684570290703, 18.812717853159]]]]}, "properties": {"taskId": 605, "taskX": 6865, "taskY": 4532, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.8543103586344], [121.684570290703, 18.895892556153], [121.728515603195, 18.895892556153], [121.728515603195, 18.8543103586344], [121.684570290703, 18.8543103586344]]]]}, "properties": {"taskId": 606, "taskX": 6865, "taskY": 4533, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.9374644263732], [121.684570290703, 18.97902594998], [121.728515603195, 18.97902594998], [121.728515603195, 18.9374644263732], [121.684570290703, 18.9374644263732]]]]}, "properties": {"taskId": 608, "taskX": 6865, "taskY": 4535, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.97902594998], [121.684570290703, 19.0205771076849], [121.728515603195, 19.0205771076849], [121.728515603195, 18.97902594998], [121.684570290703, 18.97902594998]]]]}, "properties": {"taskId": 609, "taskX": 6865, "taskY": 4536, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 19.0205771076849], [121.684570290703, 19.0621178802261], [121.728515603195, 19.0621178802261], [121.728515603195, 19.0205771076849], [121.684570290703, 19.0205771076849]]]]}, "properties": {"taskId": 610, "taskX": 6865, "taskY": 4537, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 19.0621178802261], [121.684570290703, 19.1036482483685], [121.728515603195, 19.1036482483685], [121.728515603195, 19.0621178802261], [121.684570290703, 19.0621178802261]]]]}, "properties": {"taskId": 611, "taskX": 6865, "taskY": 4538, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 19.1036482483685], [121.684570290703, 19.1451681929035], [121.728515603195, 19.1451681929035], [121.728515603195, 19.1036482483685], [121.684570290703, 19.1036482483685]]]]}, "properties": {"taskId": 612, "taskX": 6865, "taskY": 4539, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 19.1866776946495], [121.684570290703, 19.2281767344513], [121.728515603195, 19.2281767344513], [121.728515603195, 19.1866776946495], [121.684570290703, 19.1866776946495]]]]}, "properties": {"taskId": 614, "taskX": 6865, "taskY": 4541, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 19.2281767344513], [121.684570290703, 19.2696652931808], [121.728515603195, 19.2696652931808], [121.728515603195, 19.2281767344513], [121.684570290703, 19.2281767344513]]]]}, "properties": {"taskId": 615, "taskX": 6865, "taskY": 4542, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 19.2696652931808], [121.684570290703, 19.3111433517365], [121.728515603195, 19.3111433517365], [121.728515603195, 19.2696652931808], [121.684570290703, 19.2696652931808]]]]}, "properties": {"taskId": 616, "taskX": 6865, "taskY": 4543, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 19.3526108910439], [121.684570290703, 19.3940678920553], [121.728515603195, 19.3940678920553], [121.728515603195, 19.3526108910439], [121.684570290703, 19.3526108910439]]]]}, "properties": {"taskId": 618, "taskX": 6865, "taskY": 4545, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 19.3940678920553], [121.684570290703, 19.43551433575], [121.728515603195, 19.43551433575], [121.728515603195, 19.3940678920553], [121.684570290703, 19.3940678920553]]]]}, "properties": {"taskId": 619, "taskX": 6865, "taskY": 4546, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 19.43551433575], [121.684570290703, 19.476950203134], [121.728515603195, 19.476950203134], [121.728515603195, 19.43551433575], [121.684570290703, 19.43551433575]]]]}, "properties": {"taskId": 620, "taskX": 6865, "taskY": 4547, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 19.476950203134], [121.684570290703, 19.5183754752406], [121.728515603195, 19.5183754752406], [121.728515603195, 19.476950203134], [121.684570290703, 19.476950203134]]]]}, "properties": {"taskId": 621, "taskX": 6865, "taskY": 4548, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 19.5183754752406], [121.684570290703, 19.5597901331299], [121.728515603195, 19.5597901331299], [121.728515603195, 19.5183754752406], [121.684570290703, 19.5183754752406]]]]}, "properties": {"taskId": 622, "taskX": 6865, "taskY": 4549, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 19.5597901331299], [121.684570290703, 19.6011941578891], [121.728515603195, 19.6011941578891], [121.728515603195, 19.5597901331299], [121.684570290703, 19.5597901331299]]]]}, "properties": {"taskId": 623, "taskX": 6865, "taskY": 4550, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 19.6351371467923], [121.728515603195, 19.6393822472725], [121.728515603195, 19.6011941578891], [121.684570290703, 19.6011941578891], [121.684570290703, 19.6351371467923]]]]}, "properties": {"taskId": 624, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 20.3379317146323], [121.727444525587, 20.3446269403386], [121.728515603195, 20.3446269403386], [121.728515603195, 20.3379317146323]]]]}, "properties": {"taskId": 625, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.727444525587, 20.3446269403386], [121.720852728713, 20.3858253783768], [121.728515603195, 20.3858253783768], [121.728515603195, 20.3446269403386], [121.727444525587, 20.3446269403386]]]]}, "properties": {"taskId": 626, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.720852728713, 20.3858253783768], [121.714260931839, 20.4270128107534], [121.728515603195, 20.4270128107534], [121.728515603195, 20.3858253783768], [121.720852728713, 20.3858253783768]]]]}, "properties": {"taskId": 627, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.714260931839, 20.4270128107534], [121.707669134966, 20.4681892191306], [121.728515603195, 20.4681892191306], [121.728515603195, 20.4270128107534], [121.714260931839, 20.4270128107534]]]]}, "properties": {"taskId": 628, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.707669134966, 20.4681892191306], [121.701077338092, 20.5093545851978], [121.728515603195, 20.5093545851978], [121.728515603195, 20.4681892191306], [121.707669134966, 20.4681892191306]]]]}, "properties": {"taskId": 629, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701077338092, 20.5093545851978], [121.694485541218, 20.5505088906724], [121.728515603195, 20.5505088906724], [121.728515603195, 20.5093545851978], [121.701077338092, 20.5093545851978]]]]}, "properties": {"taskId": 630, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.694485541218, 20.5505088906724], [121.687893744344, 20.5916521172995], [121.728515603195, 20.5916521172995], [121.728515603195, 20.5505088906724], [121.694485541218, 20.5505088906724]]]]}, "properties": {"taskId": 631, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 20.6583300122631], [121.690735616566, 20.6739052611303], [121.728515603195, 20.6739052611303], [121.728515603195, 20.6327842468519], [121.684570290703, 20.6327842468519], [121.684570290703, 20.6583300122631]]]]}, "properties": {"taskId": 633, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.690735616566, 20.6739052611303], [121.707011642133, 20.7150151419632], [121.728515603195, 20.7150151419632], [121.728515603195, 20.6739052611303], [121.690735616566, 20.6739052611303]]]]}, "properties": {"taskId": 634, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.7232876677, 20.7561138712068], [121.728515603195, 20.7693126059434], [121.728515603195, 20.7561138712068], [121.7232876677, 20.7561138712068]]]]}, "properties": {"taskId": 636, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.4665199373555], [121.728515603195, 17.459533264674], [121.728515603195, 17.4764321941621], [121.772460915687, 17.4764321941621], [121.772460915687, 17.4665199373555]]]]}, "properties": {"taskId": 637, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.7696122440617], [121.728515603195, 17.8114560854767], [121.772460915687, 17.8114560854767], [121.772460915687, 17.7696122440617], [121.728515603195, 17.7696122440617]]]]}, "properties": {"taskId": 645, "taskX": 6866, "taskY": 4507, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.8114560854767], [121.728515603195, 17.8532901110035], [121.772460915687, 17.8532901110035], [121.772460915687, 17.8114560854767], [121.728515603195, 17.8114560854767]]]]}, "properties": {"taskId": 646, "taskX": 6866, "taskY": 4508, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.9787330924414], [121.728515603195, 18.0205276547308], [121.772460915687, 18.0205276547308], [121.772460915687, 17.9787330924414], [121.728515603195, 17.9787330924414]]]]}, "properties": {"taskId": 650, "taskX": 6866, "taskY": 4512, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.0623123014185], [121.728515603195, 18.104087012639], [121.772460915687, 18.104087012639], [121.772460915687, 18.0623123014185], [121.728515603195, 18.0623123014185]]]]}, "properties": {"taskId": 652, "taskX": 6866, "taskY": 4514, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.1458517685528], [121.728515603195, 18.1876065493462], [121.772460915687, 18.1876065493462], [121.772460915687, 18.1458517685528], [121.728515603195, 18.1458517685528]]]]}, "properties": {"taskId": 654, "taskX": 6866, "taskY": 4516, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.3128108432568], [121.728515603195, 18.3545255259514], [121.772460915687, 18.3545255259514], [121.772460915687, 18.3128108432568], [121.728515603195, 18.3128108432568]]]]}, "properties": {"taskId": 658, "taskX": 6866, "taskY": 4520, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.4796090526366], [121.728515603195, 18.5212833222942], [121.772460915687, 18.5212833222942], [121.772460915687, 18.4796090526366], [121.728515603195, 18.4796090526366]]]]}, "properties": {"taskId": 662, "taskX": 6866, "taskY": 4524, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.5212833222942], [121.728515603195, 18.5629474396796], [121.772460915687, 18.5629474396796], [121.772460915687, 18.5212833222942], [121.728515603195, 18.5212833222942]]]]}, "properties": {"taskId": 663, "taskX": 6866, "taskY": 4525, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.5629474396796], [121.728515603195, 18.6046013852398], [121.772460915687, 18.6046013852398], [121.772460915687, 18.5629474396796], [121.728515603195, 18.5629474396796]]]]}, "properties": {"taskId": 664, "taskX": 6866, "taskY": 4526, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.6046013852398], [121.728515603195, 18.6462451394485], [121.772460915687, 18.6462451394485], [121.772460915687, 18.6046013852398], [121.728515603195, 18.6046013852398]]]]}, "properties": {"taskId": 665, "taskX": 6866, "taskY": 4527, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.6462451394485], [121.728515603195, 18.6878786828054], [121.772460915687, 18.6878786828054], [121.772460915687, 18.6462451394485], [121.728515603195, 18.6462451394485]]]]}, "properties": {"taskId": 666, "taskX": 6866, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.6878786828054], [121.728515603195, 18.7295019958367], [121.772460915687, 18.7295019958367], [121.772460915687, 18.6878786828054], [121.728515603195, 18.6878786828054]]]]}, "properties": {"taskId": 667, "taskX": 6866, "taskY": 4529, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.7295019958367], [121.728515603195, 18.7711150590949], [121.772460915687, 18.7711150590949], [121.772460915687, 18.7295019958367], [121.728515603195, 18.7295019958367]]]]}, "properties": {"taskId": 668, "taskX": 6866, "taskY": 4530, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.7711150590949], [121.728515603195, 18.812717853159], [121.772460915687, 18.812717853159], [121.772460915687, 18.7711150590949], [121.728515603195, 18.7711150590949]]]]}, "properties": {"taskId": 669, "taskX": 6866, "taskY": 4531, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.812717853159], [121.728515603195, 18.8543103586344], [121.772460915687, 18.8543103586344], [121.772460915687, 18.812717853159], [121.728515603195, 18.812717853159]]]]}, "properties": {"taskId": 670, "taskX": 6866, "taskY": 4532, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.8543103586344], [121.728515603195, 18.895892556153], [121.772460915687, 18.895892556153], [121.772460915687, 18.8543103586344], [121.728515603195, 18.8543103586344]]]]}, "properties": {"taskId": 671, "taskX": 6866, "taskY": 4533, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.895892556153], [121.728515603195, 18.9374644263732], [121.772460915687, 18.9374644263732], [121.772460915687, 18.895892556153], [121.728515603195, 18.895892556153]]]]}, "properties": {"taskId": 672, "taskX": 6866, "taskY": 4534, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.9374644263732], [121.728515603195, 18.97902594998], [121.772460915687, 18.97902594998], [121.772460915687, 18.9374644263732], [121.728515603195, 18.9374644263732]]]]}, "properties": {"taskId": 673, "taskX": 6866, "taskY": 4535, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.97902594998], [121.728515603195, 19.0205771076849], [121.772460915687, 19.0205771076849], [121.772460915687, 18.97902594998], [121.728515603195, 18.97902594998]]]]}, "properties": {"taskId": 674, "taskX": 6866, "taskY": 4536, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 19.0205771076849], [121.728515603195, 19.0621178802261], [121.772460915687, 19.0621178802261], [121.772460915687, 19.0205771076849], [121.728515603195, 19.0205771076849]]]]}, "properties": {"taskId": 675, "taskX": 6866, "taskY": 4537, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 19.0621178802261], [121.728515603195, 19.1036482483685], [121.772460915687, 19.1036482483685], [121.772460915687, 19.0621178802261], [121.728515603195, 19.0621178802261]]]]}, "properties": {"taskId": 676, "taskX": 6866, "taskY": 4538, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 19.1451681929035], [121.728515603195, 19.1866776946495], [121.772460915687, 19.1866776946495], [121.772460915687, 19.1451681929035], [121.728515603195, 19.1451681929035]]]]}, "properties": {"taskId": 678, "taskX": 6866, "taskY": 4540, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 19.1866776946495], [121.728515603195, 19.2281767344513], [121.772460915687, 19.2281767344513], [121.772460915687, 19.1866776946495], [121.728515603195, 19.1866776946495]]]]}, "properties": {"taskId": 679, "taskX": 6866, "taskY": 4541, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 19.2281767344513], [121.728515603195, 19.2696652931808], [121.772460915687, 19.2696652931808], [121.772460915687, 19.2281767344513], [121.728515603195, 19.2281767344513]]]]}, "properties": {"taskId": 680, "taskX": 6866, "taskY": 4542, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 19.3111433517365], [121.728515603195, 19.3526108910439], [121.772460915687, 19.3526108910439], [121.772460915687, 19.3111433517365], [121.728515603195, 19.3111433517365]]]]}, "properties": {"taskId": 682, "taskX": 6866, "taskY": 4544, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 19.3526108910439], [121.728515603195, 19.3940678920553], [121.772460915687, 19.3940678920553], [121.772460915687, 19.3526108910439], [121.728515603195, 19.3526108910439]]]]}, "properties": {"taskId": 683, "taskX": 6866, "taskY": 4545, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 19.3940678920553], [121.728515603195, 19.43551433575], [121.772460915687, 19.43551433575], [121.772460915687, 19.3940678920553], [121.728515603195, 19.3940678920553]]]]}, "properties": {"taskId": 684, "taskX": 6866, "taskY": 4546, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 19.43551433575], [121.728515603195, 19.476950203134], [121.772460915687, 19.476950203134], [121.772460915687, 19.43551433575], [121.728515603195, 19.43551433575]]]]}, "properties": {"taskId": 685, "taskX": 6866, "taskY": 4547, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 19.476950203134], [121.728515603195, 19.5183754752406], [121.772460915687, 19.5183754752406], [121.772460915687, 19.476950203134], [121.728515603195, 19.476950203134]]]]}, "properties": {"taskId": 686, "taskX": 6866, "taskY": 4548, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 19.5183754752406], [121.728515603195, 19.5597901331299], [121.772460915687, 19.5597901331299], [121.772460915687, 19.5183754752406], [121.728515603195, 19.5183754752406]]]]}, "properties": {"taskId": 687, "taskX": 6866, "taskY": 4549, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 19.5597901331299], [121.728515603195, 19.6011941578891], [121.772460915687, 19.6011941578891], [121.772460915687, 19.5597901331299], [121.728515603195, 19.5597901331299]]]]}, "properties": {"taskId": 688, "taskX": 6866, "taskY": 4550, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 19.6393822472725], [121.761697490798, 19.6425875306324], [121.772460915687, 19.6425875306324], [121.772460915687, 19.6011941578891], [121.728515603195, 19.6011941578891], [121.728515603195, 19.6393822472725]]]]}, "properties": {"taskId": 689, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761697490798, 19.6425875306324], [121.772460915687, 19.6436272355151], [121.772460915687, 19.6425875306324], [121.761697490798, 19.6425875306324]]]]}, "properties": {"taskId": 690, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 20.2077677176124], [121.758396584579, 20.2209657760506], [121.772460915687, 20.2209657760506], [121.772460915687, 20.2077677176124]]]]}, "properties": {"taskId": 691, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.758396584579, 20.2209657760506], [121.745247562967, 20.2333038894091], [121.740628119335, 20.2621971207684], [121.772460915687, 20.2621971207684], [121.772460915687, 20.2209657760506], [121.758396584579, 20.2209657760506]]]]}, "properties": {"taskId": 692, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.740628119335, 20.2621971207684], [121.734036322461, 20.3034175150047], [121.772460915687, 20.3034175150047], [121.772460915687, 20.2621971207684], [121.740628119335, 20.2621971207684]]]]}, "properties": {"taskId": 693, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734036322461, 20.3034175150047], [121.728515603195, 20.3379317146323], [121.728515603195, 20.3446269403386], [121.772460915687, 20.3446269403386], [121.772460915687, 20.3034175150047], [121.734036322461, 20.3034175150047]]]]}, "properties": {"taskId": 694, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 20.3446269403386], [121.728515603195, 20.3858253783768], [121.772460915687, 20.3858253783768], [121.772460915687, 20.3446269403386], [121.728515603195, 20.3446269403386]]]]}, "properties": {"taskId": 695, "taskX": 6866, "taskY": 4569, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 20.3858253783768], [121.728515603195, 20.4270128107534], [121.772460915687, 20.4270128107534], [121.772460915687, 20.3858253783768], [121.728515603195, 20.3858253783768]]]]}, "properties": {"taskId": 696, "taskX": 6866, "taskY": 4570, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 20.4270128107534], [121.728515603195, 20.4681892191306], [121.772460915687, 20.4681892191306], [121.772460915687, 20.4270128107534], [121.728515603195, 20.4270128107534]]]]}, "properties": {"taskId": 697, "taskX": 6866, "taskY": 4571, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 20.4681892191306], [121.728515603195, 20.5093545851978], [121.772460915687, 20.5093545851978], [121.772460915687, 20.4681892191306], [121.728515603195, 20.4681892191306]]]]}, "properties": {"taskId": 698, "taskX": 6866, "taskY": 4572, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 20.5093545851978], [121.728515603195, 20.5505088906724], [121.772460915687, 20.5505088906724], [121.772460915687, 20.5093545851978], [121.728515603195, 20.5093545851978]]]]}, "properties": {"taskId": 699, "taskX": 6866, "taskY": 4573, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 20.5505088906724], [121.728515603195, 20.5916521172995], [121.772460915687, 20.5916521172995], [121.772460915687, 20.5505088906724], [121.728515603195, 20.5505088906724]]]]}, "properties": {"taskId": 700, "taskX": 6866, "taskY": 4574, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 20.6327842468519], [121.728515603195, 20.6739052611303], [121.772460915687, 20.6739052611303], [121.772460915687, 20.6327842468519], [121.728515603195, 20.6327842468519]]]]}, "properties": {"taskId": 702, "taskX": 6866, "taskY": 4576, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 20.6739052611303], [121.728515603195, 20.7150151419632], [121.772460915687, 20.7150151419632], [121.772460915687, 20.6739052611303], [121.728515603195, 20.6739052611303]]]]}, "properties": {"taskId": 703, "taskX": 6866, "taskY": 4577, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 20.7150151419632], [121.728515603195, 20.7561138712068], [121.772460915687, 20.7561138712068], [121.772460915687, 20.7150151419632], [121.728515603195, 20.7150151419632]]]]}, "properties": {"taskId": 704, "taskX": 6866, "taskY": 4578, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739563693267, 20.7972014307453], [121.755839718834, 20.8382778024909], [121.772460915687, 20.8382778024909], [121.772460915687, 20.7972014307453], [121.739563693267, 20.7972014307453]]]]}, "properties": {"taskId": 706, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.755839718834, 20.8382778024909], [121.772115744401, 20.8793429683834], [121.772460915687, 20.8793429683834], [121.772460915687, 20.8382778024909], [121.755839718834, 20.8382778024909]]]]}, "properties": {"taskId": 707, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772115744401, 20.8793429683834], [121.772460915687, 20.8802137300428], [121.772460915687, 20.8793429683834], [121.772115744401, 20.8793429683834]]]]}, "properties": {"taskId": 708, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 17.4735063419731], [121.772460915687, 17.4665199373555], [121.772460915687, 17.4764321941621], [121.816406228179, 17.4764321941621], [121.816406228179, 17.4735063419731]]]]}, "properties": {"taskId": 709, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.7277586067781], [121.772460915687, 17.7696122440617], [121.816406228179, 17.7696122440617], [121.816406228179, 17.7277586067781], [121.772460915687, 17.7277586067781]]]]}, "properties": {"taskId": 716, "taskX": 6867, "taskY": 4506, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.8114560854767], [121.772460915687, 17.8532901110035], [121.816406228179, 17.8532901110035], [121.816406228179, 17.8114560854767], [121.772460915687, 17.8114560854767]]]]}, "properties": {"taskId": 718, "taskX": 6867, "taskY": 4508, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.9787330924414], [121.772460915687, 18.0205276547308], [121.816406228179, 18.0205276547308], [121.816406228179, 17.9787330924414], [121.772460915687, 17.9787330924414]]]]}, "properties": {"taskId": 722, "taskX": 6867, "taskY": 4512, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.1876065493462], [121.772460915687, 18.2293513352315], [121.816406228179, 18.2293513352315], [121.816406228179, 18.1876065493462], [121.772460915687, 18.1876065493462]]]]}, "properties": {"taskId": 727, "taskX": 6867, "taskY": 4517, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.3128108432568], [121.772460915687, 18.3545255259514], [121.816406228179, 18.3545255259514], [121.816406228179, 18.3128108432568], [121.772460915687, 18.3128108432568]]]]}, "properties": {"taskId": 730, "taskX": 6867, "taskY": 4520, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.4379246502857], [121.772460915687, 18.4796090526366], [121.816406228179, 18.4796090526366], [121.816406228179, 18.4379246502857], [121.772460915687, 18.4379246502857]]]]}, "properties": {"taskId": 733, "taskX": 6867, "taskY": 4523, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.4796090526366], [121.772460915687, 18.5212833222942], [121.816406228179, 18.5212833222942], [121.816406228179, 18.4796090526366], [121.772460915687, 18.4796090526366]]]]}, "properties": {"taskId": 734, "taskX": 6867, "taskY": 4524, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.5212833222942], [121.772460915687, 18.5629474396796], [121.816406228179, 18.5629474396796], [121.816406228179, 18.5212833222942], [121.772460915687, 18.5212833222942]]]]}, "properties": {"taskId": 735, "taskX": 6867, "taskY": 4525, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.6046013852398], [121.772460915687, 18.6462451394485], [121.816406228179, 18.6462451394485], [121.816406228179, 18.6046013852398], [121.772460915687, 18.6046013852398]]]]}, "properties": {"taskId": 737, "taskX": 6867, "taskY": 4527, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.6462451394485], [121.772460915687, 18.6878786828054], [121.816406228179, 18.6878786828054], [121.816406228179, 18.6462451394485], [121.772460915687, 18.6462451394485]]]]}, "properties": {"taskId": 738, "taskX": 6867, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.6878786828054], [121.772460915687, 18.7295019958367], [121.816406228179, 18.7295019958367], [121.816406228179, 18.6878786828054], [121.772460915687, 18.6878786828054]]]]}, "properties": {"taskId": 739, "taskX": 6867, "taskY": 4529, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.7295019958367], [121.772460915687, 18.7711150590949], [121.816406228179, 18.7711150590949], [121.816406228179, 18.7295019958367], [121.772460915687, 18.7295019958367]]]]}, "properties": {"taskId": 740, "taskX": 6867, "taskY": 4530, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.7711150590949], [121.772460915687, 18.812717853159], [121.816406228179, 18.812717853159], [121.816406228179, 18.7711150590949], [121.772460915687, 18.7711150590949]]]]}, "properties": {"taskId": 741, "taskX": 6867, "taskY": 4531, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.812717853159], [121.772460915687, 18.8543103586344], [121.816406228179, 18.8543103586344], [121.816406228179, 18.812717853159], [121.772460915687, 18.812717853159]]]]}, "properties": {"taskId": 742, "taskX": 6867, "taskY": 4532, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.8543103586344], [121.772460915687, 18.895892556153], [121.816406228179, 18.895892556153], [121.816406228179, 18.8543103586344], [121.772460915687, 18.8543103586344]]]]}, "properties": {"taskId": 743, "taskX": 6867, "taskY": 4533, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.9374644263732], [121.772460915687, 18.97902594998], [121.816406228179, 18.97902594998], [121.816406228179, 18.9374644263732], [121.772460915687, 18.9374644263732]]]]}, "properties": {"taskId": 745, "taskX": 6867, "taskY": 4535, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.97902594998], [121.772460915687, 19.0205771076849], [121.816406228179, 19.0205771076849], [121.816406228179, 18.97902594998], [121.772460915687, 18.97902594998]]]]}, "properties": {"taskId": 746, "taskX": 6867, "taskY": 4536, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 19.0205771076849], [121.772460915687, 19.0621178802261], [121.816406228179, 19.0621178802261], [121.816406228179, 19.0205771076849], [121.772460915687, 19.0205771076849]]]]}, "properties": {"taskId": 747, "taskX": 6867, "taskY": 4537, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 19.0621178802261], [121.772460915687, 19.1036482483685], [121.816406228179, 19.1036482483685], [121.816406228179, 19.0621178802261], [121.772460915687, 19.0621178802261]]]]}, "properties": {"taskId": 748, "taskX": 6867, "taskY": 4538, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 19.1036482483685], [121.772460915687, 19.1451681929035], [121.816406228179, 19.1451681929035], [121.816406228179, 19.1036482483685], [121.772460915687, 19.1036482483685]]]]}, "properties": {"taskId": 749, "taskX": 6867, "taskY": 4539, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 19.1451681929035], [121.772460915687, 19.1866776946495], [121.816406228179, 19.1866776946495], [121.816406228179, 19.1451681929035], [121.772460915687, 19.1451681929035]]]]}, "properties": {"taskId": 750, "taskX": 6867, "taskY": 4540, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 19.1866776946495], [121.772460915687, 19.2281767344513], [121.816406228179, 19.2281767344513], [121.816406228179, 19.1866776946495], [121.772460915687, 19.1866776946495]]]]}, "properties": {"taskId": 751, "taskX": 6867, "taskY": 4541, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 19.2281767344513], [121.772460915687, 19.2696652931808], [121.816406228179, 19.2696652931808], [121.816406228179, 19.2281767344513], [121.772460915687, 19.2281767344513]]]]}, "properties": {"taskId": 752, "taskX": 6867, "taskY": 4542, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 19.2696652931808], [121.772460915687, 19.3111433517365], [121.816406228179, 19.3111433517365], [121.816406228179, 19.2696652931808], [121.772460915687, 19.2696652931808]]]]}, "properties": {"taskId": 753, "taskX": 6867, "taskY": 4543, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 19.3111433517365], [121.772460915687, 19.3526108910439], [121.816406228179, 19.3526108910439], [121.816406228179, 19.3111433517365], [121.772460915687, 19.3111433517365]]]]}, "properties": {"taskId": 754, "taskX": 6867, "taskY": 4544, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 19.3526108910439], [121.772460915687, 19.3940678920553], [121.816406228179, 19.3940678920553], [121.816406228179, 19.3526108910439], [121.772460915687, 19.3526108910439]]]]}, "properties": {"taskId": 755, "taskX": 6867, "taskY": 4545, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 19.3940678920553], [121.772460915687, 19.43551433575], [121.816406228179, 19.43551433575], [121.816406228179, 19.3940678920553], [121.772460915687, 19.3940678920553]]]]}, "properties": {"taskId": 756, "taskX": 6867, "taskY": 4546, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 19.43551433575], [121.772460915687, 19.476950203134], [121.816406228179, 19.476950203134], [121.816406228179, 19.43551433575], [121.772460915687, 19.43551433575]]]]}, "properties": {"taskId": 757, "taskX": 6867, "taskY": 4547, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 19.476950203134], [121.772460915687, 19.5183754752406], [121.816406228179, 19.5183754752406], [121.816406228179, 19.476950203134], [121.772460915687, 19.476950203134]]]]}, "properties": {"taskId": 758, "taskX": 6867, "taskY": 4548, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 19.5597901331299], [121.772460915687, 19.6011941578891], [121.816406228179, 19.6011941578891], [121.816406228179, 19.5597901331299], [121.772460915687, 19.5597901331299]]]]}, "properties": {"taskId": 760, "taskX": 6867, "taskY": 4550, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 19.6011941578891], [121.772460915687, 19.6425875306324], [121.816406228179, 19.6425875306324], [121.816406228179, 19.6011941578891], [121.772460915687, 19.6011941578891]]]]}, "properties": {"taskId": 761, "taskX": 6867, "taskY": 4551, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 19.6436272355151], [121.816406228179, 19.6478721114999], [121.816406228179, 19.6425875306324], [121.772460915687, 19.6425875306324], [121.772460915687, 19.6436272355151]]]]}, "properties": {"taskId": 762, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.802341897071, 20.1797234992999], [121.772460915687, 20.2077677176124], [121.772460915687, 20.2209657760506], [121.816406228179, 20.2209657760506], [121.816406228179, 20.1797234992999], [121.802341897071, 20.1797234992999]]]]}, "properties": {"taskId": 764, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 20.2209657760506], [121.772460915687, 20.2621971207684], [121.816406228179, 20.2621971207684], [121.816406228179, 20.2209657760506], [121.772460915687, 20.2209657760506]]]]}, "properties": {"taskId": 765, "taskX": 6867, "taskY": 4566, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 20.2621971207684], [121.772460915687, 20.3034175150047], [121.816406228179, 20.3034175150047], [121.816406228179, 20.2621971207684], [121.772460915687, 20.2621971207684]]]]}, "properties": {"taskId": 766, "taskX": 6867, "taskY": 4567, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 20.3034175150047], [121.772460915687, 20.3446269403386], [121.816406228179, 20.3446269403386], [121.816406228179, 20.3034175150047], [121.772460915687, 20.3034175150047]]]]}, "properties": {"taskId": 767, "taskX": 6867, "taskY": 4568, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 20.3446269403386], [121.772460915687, 20.3858253783768], [121.816406228179, 20.3858253783768], [121.816406228179, 20.3446269403386], [121.772460915687, 20.3446269403386]]]]}, "properties": {"taskId": 768, "taskX": 6867, "taskY": 4569, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 20.3858253783768], [121.772460915687, 20.4270128107534], [121.816406228179, 20.4270128107534], [121.816406228179, 20.3858253783768], [121.772460915687, 20.3858253783768]]]]}, "properties": {"taskId": 769, "taskX": 6867, "taskY": 4570, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 20.4270128107534], [121.772460915687, 20.4681892191306], [121.816406228179, 20.4681892191306], [121.816406228179, 20.4270128107534], [121.772460915687, 20.4270128107534]]]]}, "properties": {"taskId": 770, "taskX": 6867, "taskY": 4571, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 20.4681892191306], [121.772460915687, 20.5093545851978], [121.816406228179, 20.5093545851978], [121.816406228179, 20.4681892191306], [121.772460915687, 20.4681892191306]]]]}, "properties": {"taskId": 771, "taskX": 6867, "taskY": 4572, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 20.5093545851978], [121.772460915687, 20.5505088906724], [121.816406228179, 20.5505088906724], [121.816406228179, 20.5093545851978], [121.772460915687, 20.5093545851978]]]]}, "properties": {"taskId": 772, "taskX": 6867, "taskY": 4573, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 20.5916521172995], [121.772460915687, 20.6327842468519], [121.816406228179, 20.6327842468519], [121.816406228179, 20.5916521172995], [121.772460915687, 20.5916521172995]]]]}, "properties": {"taskId": 774, "taskX": 6867, "taskY": 4575, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 20.6327842468519], [121.772460915687, 20.6739052611303], [121.816406228179, 20.6739052611303], [121.816406228179, 20.6327842468519], [121.772460915687, 20.6327842468519]]]]}, "properties": {"taskId": 775, "taskX": 6867, "taskY": 4576, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 20.7561138712068], [121.772460915687, 20.7972014307453], [121.816406228179, 20.7972014307453], [121.816406228179, 20.7561138712068], [121.772460915687, 20.7561138712068]]]]}, "properties": {"taskId": 778, "taskX": 6867, "taskY": 4579, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 20.8382778024909], [121.772460915687, 20.8793429683834], [121.816406228179, 20.8793429683834], [121.816406228179, 20.8382778024909], [121.772460915687, 20.8382778024909]]]]}, "properties": {"taskId": 780, "taskX": 6867, "taskY": 4581, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 20.8802137300428], [121.788391769967, 20.920396910391], [121.816406228179, 20.920396910391], [121.816406228179, 20.8793429683834], [121.772460915687, 20.8793429683834], [121.772460915687, 20.8802137300428]]]]}, "properties": {"taskId": 781, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.788391769967, 20.920396910391], [121.804667795534, 20.9614396105096], [121.816406228179, 20.9614396105096], [121.816406228179, 20.920396910391], [121.788391769967, 20.920396910391]]]]}, "properties": {"taskId": 782, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.804667795534, 20.9614396105096], [121.816406228179, 20.9910330291801], [121.816406228179, 20.9614396105096], [121.804667795534, 20.9614396105096]]]]}, "properties": {"taskId": 783, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.834810686074, 17.4764321941621], [121.816406228179, 17.4735063419731], [121.816406228179, 17.4764321941621], [121.834810686074, 17.4764321941621]]]]}, "properties": {"taskId": 784, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.4804924784334], [121.834810686074, 17.4764321941621], [121.816406228179, 17.4764321941621], [121.816406228179, 17.518344184812], [121.860351540672, 17.518344184812], [121.860351540672, 17.4804924784334]]]]}, "properties": {"taskId": 785, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 17.5602465002479], [121.816406228179, 17.602139120297], [121.860351540672, 17.602139120297], [121.860351540672, 17.5602465002479], [121.816406228179, 17.5602465002479]]]]}, "properties": {"taskId": 787, "taskX": 6868, "taskY": 4502, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 17.6858951936713], [121.816406228179, 17.7277586067781], [121.860351540672, 17.7277586067781], [121.860351540672, 17.6858951936713], [121.816406228179, 17.6858951936713]]]]}, "properties": {"taskId": 790, "taskX": 6868, "taskY": 4505, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 17.9369286344415], [121.816406228179, 17.9787330924414], [121.860351540672, 17.9787330924414], [121.860351540672, 17.9369286344415], [121.816406228179, 17.9369286344415]]]]}, "properties": {"taskId": 796, "taskX": 6868, "taskY": 4511, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 17.9787330924414], [121.816406228179, 18.0205276547308], [121.860351540672, 18.0205276547308], [121.860351540672, 17.9787330924414], [121.816406228179, 17.9787330924414]]]]}, "properties": {"taskId": 797, "taskX": 6868, "taskY": 4512, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 18.0623123014185], [121.816406228179, 18.104087012639], [121.860351540672, 18.104087012639], [121.860351540672, 18.0623123014185], [121.816406228179, 18.0623123014185]]]]}, "properties": {"taskId": 799, "taskX": 6868, "taskY": 4514, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 18.1458517685528], [121.816406228179, 18.1876065493462], [121.860351540672, 18.1876065493462], [121.860351540672, 18.1458517685528], [121.816406228179, 18.1458517685528]]]]}, "properties": {"taskId": 801, "taskX": 6868, "taskY": 4516, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 18.3962301348468], [121.816406228179, 18.4379246502857], [121.860351540672, 18.4379246502857], [121.860351540672, 18.3962301348468], [121.816406228179, 18.3962301348468]]]]}, "properties": {"taskId": 807, "taskX": 6868, "taskY": 4522, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 18.4379246502857], [121.816406228179, 18.4796090526366], [121.860351540672, 18.4796090526366], [121.860351540672, 18.4379246502857], [121.816406228179, 18.4379246502857]]]]}, "properties": {"taskId": 808, "taskX": 6868, "taskY": 4523, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 18.5212833222942], [121.816406228179, 18.5629474396796], [121.860351540672, 18.5629474396796], [121.860351540672, 18.5212833222942], [121.816406228179, 18.5212833222942]]]]}, "properties": {"taskId": 810, "taskX": 6868, "taskY": 4525, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 18.5629474396796], [121.816406228179, 18.6046013852398], [121.860351540672, 18.6046013852398], [121.860351540672, 18.5629474396796], [121.816406228179, 18.5629474396796]]]]}, "properties": {"taskId": 811, "taskX": 6868, "taskY": 4526, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 18.6046013852398], [121.816406228179, 18.6462451394485], [121.860351540672, 18.6462451394485], [121.860351540672, 18.6046013852398], [121.816406228179, 18.6046013852398]]]]}, "properties": {"taskId": 812, "taskX": 6868, "taskY": 4527, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 18.6462451394485], [121.816406228179, 18.6878786828054], [121.860351540672, 18.6878786828054], [121.860351540672, 18.6462451394485], [121.816406228179, 18.6462451394485]]]]}, "properties": {"taskId": 813, "taskX": 6868, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 18.6878786828054], [121.816406228179, 18.7295019958367], [121.860351540672, 18.7295019958367], [121.860351540672, 18.6878786828054], [121.816406228179, 18.6878786828054]]]]}, "properties": {"taskId": 814, "taskX": 6868, "taskY": 4529, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 18.7295019958367], [121.816406228179, 18.7711150590949], [121.860351540672, 18.7711150590949], [121.860351540672, 18.7295019958367], [121.816406228179, 18.7295019958367]]]]}, "properties": {"taskId": 815, "taskX": 6868, "taskY": 4530, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 18.7711150590949], [121.816406228179, 18.812717853159], [121.860351540672, 18.812717853159], [121.860351540672, 18.7711150590949], [121.816406228179, 18.7711150590949]]]]}, "properties": {"taskId": 816, "taskX": 6868, "taskY": 4531, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 18.812717853159], [121.816406228179, 18.8543103586344], [121.860351540672, 18.8543103586344], [121.860351540672, 18.812717853159], [121.816406228179, 18.812717853159]]]]}, "properties": {"taskId": 817, "taskX": 6868, "taskY": 4532, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 18.8543103586344], [121.816406228179, 18.895892556153], [121.860351540672, 18.895892556153], [121.860351540672, 18.8543103586344], [121.816406228179, 18.8543103586344]]]]}, "properties": {"taskId": 818, "taskX": 6868, "taskY": 4533, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 18.895892556153], [121.816406228179, 18.9374644263732], [121.860351540672, 18.9374644263732], [121.860351540672, 18.895892556153], [121.816406228179, 18.895892556153]]]]}, "properties": {"taskId": 819, "taskX": 6868, "taskY": 4534, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 18.9374644263732], [121.816406228179, 18.97902594998], [121.860351540672, 18.97902594998], [121.860351540672, 18.9374644263732], [121.816406228179, 18.9374644263732]]]]}, "properties": {"taskId": 820, "taskX": 6868, "taskY": 4535, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 18.97902594998], [121.816406228179, 19.0205771076849], [121.860351540672, 19.0205771076849], [121.860351540672, 18.97902594998], [121.816406228179, 18.97902594998]]]]}, "properties": {"taskId": 821, "taskX": 6868, "taskY": 4536, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 19.0205771076849], [121.816406228179, 19.0621178802261], [121.860351540672, 19.0621178802261], [121.860351540672, 19.0205771076849], [121.816406228179, 19.0205771076849]]]]}, "properties": {"taskId": 822, "taskX": 6868, "taskY": 4537, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 19.0621178802261], [121.816406228179, 19.1036482483685], [121.860351540672, 19.1036482483685], [121.860351540672, 19.0621178802261], [121.816406228179, 19.0621178802261]]]]}, "properties": {"taskId": 823, "taskX": 6868, "taskY": 4538, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 19.1036482483685], [121.816406228179, 19.1451681929035], [121.860351540672, 19.1451681929035], [121.860351540672, 19.1036482483685], [121.816406228179, 19.1036482483685]]]]}, "properties": {"taskId": 824, "taskX": 6868, "taskY": 4539, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 19.1451681929035], [121.816406228179, 19.1866776946495], [121.860351540672, 19.1866776946495], [121.860351540672, 19.1451681929035], [121.816406228179, 19.1451681929035]]]]}, "properties": {"taskId": 825, "taskX": 6868, "taskY": 4540, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 19.1866776946495], [121.816406228179, 19.2281767344513], [121.860351540672, 19.2281767344513], [121.860351540672, 19.1866776946495], [121.816406228179, 19.1866776946495]]]]}, "properties": {"taskId": 826, "taskX": 6868, "taskY": 4541, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 19.2281767344513], [121.816406228179, 19.2696652931808], [121.860351540672, 19.2696652931808], [121.860351540672, 19.2281767344513], [121.816406228179, 19.2281767344513]]]]}, "properties": {"taskId": 827, "taskX": 6868, "taskY": 4542, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 19.2696652931808], [121.816406228179, 19.3111433517365], [121.860351540672, 19.3111433517365], [121.860351540672, 19.2696652931808], [121.816406228179, 19.2696652931808]]]]}, "properties": {"taskId": 828, "taskX": 6868, "taskY": 4543, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 19.3111433517365], [121.816406228179, 19.3526108910439], [121.860351540672, 19.3526108910439], [121.860351540672, 19.3111433517365], [121.816406228179, 19.3111433517365]]]]}, "properties": {"taskId": 829, "taskX": 6868, "taskY": 4544, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 19.3526108910439], [121.816406228179, 19.3940678920553], [121.860351540672, 19.3940678920553], [121.860351540672, 19.3526108910439], [121.816406228179, 19.3526108910439]]]]}, "properties": {"taskId": 830, "taskX": 6868, "taskY": 4545, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 19.3940678920553], [121.816406228179, 19.43551433575], [121.860351540672, 19.43551433575], [121.860351540672, 19.3940678920553], [121.816406228179, 19.3940678920553]]]]}, "properties": {"taskId": 831, "taskX": 6868, "taskY": 4546, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 19.43551433575], [121.816406228179, 19.476950203134], [121.860351540672, 19.476950203134], [121.860351540672, 19.43551433575], [121.816406228179, 19.43551433575]]]]}, "properties": {"taskId": 832, "taskX": 6868, "taskY": 4547, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 19.476950203134], [121.816406228179, 19.5183754752406], [121.860351540672, 19.5183754752406], [121.860351540672, 19.476950203134], [121.816406228179, 19.476950203134]]]]}, "properties": {"taskId": 833, "taskX": 6868, "taskY": 4548, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 19.5183754752406], [121.816406228179, 19.5597901331299], [121.860351540672, 19.5597901331299], [121.860351540672, 19.5183754752406], [121.816406228179, 19.5183754752406]]]]}, "properties": {"taskId": 834, "taskX": 6868, "taskY": 4549, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 19.5597901331299], [121.816406228179, 19.6011941578891], [121.860351540672, 19.6011941578891], [121.860351540672, 19.5597901331299], [121.816406228179, 19.5597901331299]]]]}, "properties": {"taskId": 835, "taskX": 6868, "taskY": 4550, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 19.6478721114999], [121.818489973984, 19.6480733871196], [121.838717106491, 19.6839702325013], [121.860351540672, 19.6839702325013], [121.860351540672, 19.6425875306324], [121.816406228179, 19.6425875306324], [121.816406228179, 19.6478721114999]]]]}, "properties": {"taskId": 837, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838717106491, 19.6839702325013], [121.860351540672, 19.7223556960654], [121.860351540672, 19.6839702325013], [121.838717106491, 19.6839702325013]]]]}, "properties": {"taskId": 838, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 20.125265266864], [121.846287209563, 20.1384703089924], [121.860351540672, 20.1384703089924], [121.860351540672, 20.125265266864]]]]}, "properties": {"taskId": 839, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.846287209563, 20.1384703089924], [121.816406228179, 20.1665219460572], [121.816406228179, 20.1797234992999], [121.860351540672, 20.1797234992999], [121.860351540672, 20.1384703089924], [121.846287209563, 20.1384703089924]]]]}, "properties": {"taskId": 840, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 20.1797234992999], [121.816406228179, 20.2209657760506], [121.860351540672, 20.2209657760506], [121.860351540672, 20.1797234992999], [121.816406228179, 20.1797234992999]]]]}, "properties": {"taskId": 841, "taskX": 6868, "taskY": 4565, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 20.2209657760506], [121.816406228179, 20.2621971207684], [121.860351540672, 20.2621971207684], [121.860351540672, 20.2209657760506], [121.816406228179, 20.2209657760506]]]]}, "properties": {"taskId": 842, "taskX": 6868, "taskY": 4566, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 20.2621971207684], [121.816406228179, 20.3034175150047], [121.860351540672, 20.3034175150047], [121.860351540672, 20.2621971207684], [121.816406228179, 20.2621971207684]]]]}, "properties": {"taskId": 843, "taskX": 6868, "taskY": 4567, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 20.3034175150047], [121.816406228179, 20.3446269403386], [121.860351540672, 20.3446269403386], [121.860351540672, 20.3034175150047], [121.816406228179, 20.3034175150047]]]]}, "properties": {"taskId": 844, "taskX": 6868, "taskY": 4568, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 20.3446269403386], [121.816406228179, 20.3858253783768], [121.860351540672, 20.3858253783768], [121.860351540672, 20.3446269403386], [121.816406228179, 20.3446269403386]]]]}, "properties": {"taskId": 845, "taskX": 6868, "taskY": 4569, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 20.4270128107534], [121.816406228179, 20.4681892191306], [121.860351540672, 20.4681892191306], [121.860351540672, 20.4270128107534], [121.816406228179, 20.4270128107534]]]]}, "properties": {"taskId": 847, "taskX": 6868, "taskY": 4571, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 20.4681892191306], [121.816406228179, 20.5093545851978], [121.860351540672, 20.5093545851978], [121.860351540672, 20.4681892191306], [121.816406228179, 20.4681892191306]]]]}, "properties": {"taskId": 848, "taskX": 6868, "taskY": 4572, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 20.5093545851978], [121.816406228179, 20.5505088906724], [121.860351540672, 20.5505088906724], [121.860351540672, 20.5093545851978], [121.816406228179, 20.5093545851978]]]]}, "properties": {"taskId": 849, "taskX": 6868, "taskY": 4573, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 20.6327842468519], [121.816406228179, 20.6739052611303], [121.860351540672, 20.6739052611303], [121.860351540672, 20.6327842468519], [121.816406228179, 20.6327842468519]]]]}, "properties": {"taskId": 852, "taskX": 6868, "taskY": 4576, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 20.7972014307453], [121.816406228179, 20.8382778024909], [121.860351540672, 20.8382778024909], [121.860351540672, 20.7972014307453], [121.816406228179, 20.7972014307453]]]]}, "properties": {"taskId": 856, "taskX": 6868, "taskY": 4580, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 20.8382778024909], [121.816406228179, 20.8793429683834], [121.860351540672, 20.8793429683834], [121.860351540672, 20.8382778024909], [121.816406228179, 20.8382778024909]]]]}, "properties": {"taskId": 857, "taskX": 6868, "taskY": 4581, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 20.920396910391], [121.816406228179, 20.9614396105096], [121.860351540672, 20.9614396105096], [121.860351540672, 20.920396910391], [121.816406228179, 20.920396910391]]]]}, "properties": {"taskId": 859, "taskX": 6868, "taskY": 4583, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 20.9910330291801], [121.820943821101, 21.0024710507632], [121.860351540672, 21.0024710507632], [121.860351540672, 20.9614396105096], [121.816406228179, 20.9614396105096], [121.816406228179, 20.9910330291801]]]]}, "properties": {"taskId": 860, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.820943821101, 21.0024710507632], [121.837219846668, 21.0434912132036], [121.860351540672, 21.0434912132036], [121.860351540672, 21.0024710507632], [121.820943821101, 21.0024710507632]]]]}, "properties": {"taskId": 861, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.837219846668, 21.0434912132036], [121.853495872235, 21.0845000799111], [121.860351540672, 21.0845000799111], [121.860351540672, 21.0434912132036], [121.837219846668, 21.0434912132036]]]]}, "properties": {"taskId": 862, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.853495872235, 21.0845000799111], [121.860351540672, 21.1017701494615], [121.860351540672, 21.0845000799111], [121.853495872235, 21.0845000799111]]]]}, "properties": {"taskId": 863, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.484474189163], [121.869759058199, 17.4819879887782], [121.860351540672, 17.4804924784334], [121.860351540672, 17.518344184812], [121.904296853164, 17.518344184812], [121.904296853164, 17.484474189163]]]]}, "properties": {"taskId": 864, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.518344184812], [121.860351540672, 17.5602465002479], [121.904296853164, 17.5602465002479], [121.904296853164, 17.518344184812], [121.860351540672, 17.518344184812]]]]}, "properties": {"taskId": 865, "taskX": 6869, "taskY": 4501, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.5602465002479], [121.860351540672, 17.602139120297], [121.904296853164, 17.602139120297], [121.904296853164, 17.5602465002479], [121.860351540672, 17.5602465002479]]]]}, "properties": {"taskId": 866, "taskX": 6869, "taskY": 4502, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.602139120297], [121.860351540672, 17.6440220248121], [121.904296853164, 17.6440220248121], [121.904296853164, 17.602139120297], [121.860351540672, 17.602139120297]]]]}, "properties": {"taskId": 867, "taskX": 6869, "taskY": 4503, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.6440220248121], [121.860351540672, 17.6858951936713], [121.904296853164, 17.6858951936713], [121.904296853164, 17.6440220248121], [121.860351540672, 17.6440220248121]]]]}, "properties": {"taskId": 868, "taskX": 6869, "taskY": 4504, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.104087012639], [121.860351540672, 18.1458517685528], [121.904296853164, 18.1458517685528], [121.904296853164, 18.104087012639], [121.860351540672, 18.104087012639]]]]}, "properties": {"taskId": 879, "taskX": 6869, "taskY": 4515, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.271086106447], [121.860351540672, 18.3128108432568], [121.904296853164, 18.3128108432568], [121.904296853164, 18.271086106447], [121.860351540672, 18.271086106447]]]]}, "properties": {"taskId": 883, "taskX": 6869, "taskY": 4519, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.3962301348468], [121.860351540672, 18.4379246502857], [121.904296853164, 18.4379246502857], [121.904296853164, 18.3962301348468], [121.860351540672, 18.3962301348468]]]]}, "properties": {"taskId": 886, "taskX": 6869, "taskY": 4522, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.4379246502857], [121.860351540672, 18.4796090526366], [121.904296853164, 18.4796090526366], [121.904296853164, 18.4379246502857], [121.860351540672, 18.4379246502857]]]]}, "properties": {"taskId": 887, "taskX": 6869, "taskY": 4523, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.4796090526366], [121.860351540672, 18.5212833222942], [121.904296853164, 18.5212833222942], [121.904296853164, 18.4796090526366], [121.860351540672, 18.4796090526366]]]]}, "properties": {"taskId": 888, "taskX": 6869, "taskY": 4524, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.5212833222942], [121.860351540672, 18.5629474396796], [121.904296853164, 18.5629474396796], [121.904296853164, 18.5212833222942], [121.860351540672, 18.5212833222942]]]]}, "properties": {"taskId": 889, "taskX": 6869, "taskY": 4525, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.5629474396796], [121.860351540672, 18.6046013852398], [121.904296853164, 18.6046013852398], [121.904296853164, 18.5629474396796], [121.860351540672, 18.5629474396796]]]]}, "properties": {"taskId": 890, "taskX": 6869, "taskY": 4526, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.6462451394485], [121.860351540672, 18.6878786828054], [121.904296853164, 18.6878786828054], [121.904296853164, 18.6462451394485], [121.860351540672, 18.6462451394485]]]]}, "properties": {"taskId": 892, "taskX": 6869, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.6878786828054], [121.860351540672, 18.7295019958367], [121.904296853164, 18.7295019958367], [121.904296853164, 18.6878786828054], [121.860351540672, 18.6878786828054]]]]}, "properties": {"taskId": 893, "taskX": 6869, "taskY": 4529, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.7295019958367], [121.860351540672, 18.7711150590949], [121.904296853164, 18.7711150590949], [121.904296853164, 18.7295019958367], [121.860351540672, 18.7295019958367]]]]}, "properties": {"taskId": 894, "taskX": 6869, "taskY": 4530, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.812717853159], [121.860351540672, 18.8543103586344], [121.904296853164, 18.8543103586344], [121.904296853164, 18.812717853159], [121.860351540672, 18.812717853159]]]]}, "properties": {"taskId": 896, "taskX": 6869, "taskY": 4532, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.8543103586344], [121.860351540672, 18.895892556153], [121.904296853164, 18.895892556153], [121.904296853164, 18.8543103586344], [121.860351540672, 18.8543103586344]]]]}, "properties": {"taskId": 897, "taskX": 6869, "taskY": 4533, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.9374644263732], [121.860351540672, 18.97902594998], [121.904296853164, 18.97902594998], [121.904296853164, 18.9374644263732], [121.860351540672, 18.9374644263732]]]]}, "properties": {"taskId": 899, "taskX": 6869, "taskY": 4535, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.97902594998], [121.860351540672, 19.0205771076849], [121.904296853164, 19.0205771076849], [121.904296853164, 18.97902594998], [121.860351540672, 18.97902594998]]]]}, "properties": {"taskId": 900, "taskX": 6869, "taskY": 4536, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 19.0205771076849], [121.860351540672, 19.0621178802261], [121.904296853164, 19.0621178802261], [121.904296853164, 19.0205771076849], [121.860351540672, 19.0205771076849]]]]}, "properties": {"taskId": 901, "taskX": 6869, "taskY": 4537, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 19.0621178802261], [121.860351540672, 19.1036482483685], [121.904296853164, 19.1036482483685], [121.904296853164, 19.0621178802261], [121.860351540672, 19.0621178802261]]]]}, "properties": {"taskId": 902, "taskX": 6869, "taskY": 4538, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 19.1036482483685], [121.860351540672, 19.1451681929035], [121.904296853164, 19.1451681929035], [121.904296853164, 19.1036482483685], [121.860351540672, 19.1036482483685]]]]}, "properties": {"taskId": 903, "taskX": 6869, "taskY": 4539, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 19.1866776946495], [121.860351540672, 19.2281767344513], [121.904296853164, 19.2281767344513], [121.904296853164, 19.1866776946495], [121.860351540672, 19.1866776946495]]]]}, "properties": {"taskId": 905, "taskX": 6869, "taskY": 4541, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 19.2281767344513], [121.860351540672, 19.2696652931808], [121.904296853164, 19.2696652931808], [121.904296853164, 19.2281767344513], [121.860351540672, 19.2281767344513]]]]}, "properties": {"taskId": 906, "taskX": 6869, "taskY": 4542, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 19.2696652931808], [121.860351540672, 19.3111433517365], [121.904296853164, 19.3111433517365], [121.904296853164, 19.2696652931808], [121.860351540672, 19.2696652931808]]]]}, "properties": {"taskId": 907, "taskX": 6869, "taskY": 4543, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 19.3111433517365], [121.860351540672, 19.3526108910439], [121.904296853164, 19.3526108910439], [121.904296853164, 19.3111433517365], [121.860351540672, 19.3111433517365]]]]}, "properties": {"taskId": 908, "taskX": 6869, "taskY": 4544, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 19.3526108910439], [121.860351540672, 19.3940678920553], [121.904296853164, 19.3940678920553], [121.904296853164, 19.3526108910439], [121.860351540672, 19.3526108910439]]]]}, "properties": {"taskId": 909, "taskX": 6869, "taskY": 4545, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 19.3940678920553], [121.860351540672, 19.43551433575], [121.904296853164, 19.43551433575], [121.904296853164, 19.3940678920553], [121.860351540672, 19.3940678920553]]]]}, "properties": {"taskId": 910, "taskX": 6869, "taskY": 4546, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 19.43551433575], [121.860351540672, 19.476950203134], [121.904296853164, 19.476950203134], [121.904296853164, 19.43551433575], [121.860351540672, 19.43551433575]]]]}, "properties": {"taskId": 911, "taskX": 6869, "taskY": 4547, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 19.476950203134], [121.860351540672, 19.5183754752406], [121.904296853164, 19.5183754752406], [121.904296853164, 19.476950203134], [121.860351540672, 19.476950203134]]]]}, "properties": {"taskId": 912, "taskX": 6869, "taskY": 4548, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 19.5183754752406], [121.860351540672, 19.5597901331299], [121.904296853164, 19.5597901331299], [121.904296853164, 19.5183754752406], [121.860351540672, 19.5183754752406]]]]}, "properties": {"taskId": 913, "taskX": 6869, "taskY": 4549, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 19.5597901331299], [121.860351540672, 19.6011941578891], [121.904296853164, 19.6011941578891], [121.904296853164, 19.5597901331299], [121.860351540672, 19.5597901331299]]]]}, "properties": {"taskId": 914, "taskX": 6869, "taskY": 4550, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 19.7223556960654], [121.862035007297, 19.7253422446642], [121.904296853164, 19.7253422446642], [121.904296853164, 19.6839702325013], [121.860351540672, 19.6839702325013], [121.860351540672, 19.7223556960654]]]]}, "properties": {"taskId": 917, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.862035007297, 19.7253422446642], [121.885352908103, 19.7667035483167], [121.904296853164, 19.7667035483167], [121.904296853164, 19.7253422446642], [121.862035007297, 19.7253422446642]]]]}, "properties": {"taskId": 918, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.0839976985453], [121.890232522055, 20.0972062236316], [121.904296853164, 20.0972062236316], [121.904296853164, 20.0839976985453]]]]}, "properties": {"taskId": 920, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.890232522055, 20.0972062236316], [121.860351540672, 20.125265266864], [121.860351540672, 20.1384703089924], [121.904296853164, 20.1384703089924], [121.904296853164, 20.0972062236316], [121.890232522055, 20.0972062236316]]]]}, "properties": {"taskId": 921, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 20.1384703089924], [121.860351540672, 20.1797234992999], [121.904296853164, 20.1797234992999], [121.904296853164, 20.1384703089924], [121.860351540672, 20.1384703089924]]]]}, "properties": {"taskId": 922, "taskX": 6869, "taskY": 4564, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 20.2209657760506], [121.860351540672, 20.2621971207684], [121.904296853164, 20.2621971207684], [121.904296853164, 20.2209657760506], [121.860351540672, 20.2209657760506]]]]}, "properties": {"taskId": 924, "taskX": 6869, "taskY": 4566, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 20.2621971207684], [121.860351540672, 20.3034175150047], [121.904296853164, 20.3034175150047], [121.904296853164, 20.2621971207684], [121.860351540672, 20.2621971207684]]]]}, "properties": {"taskId": 925, "taskX": 6869, "taskY": 4567, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 20.3034175150047], [121.860351540672, 20.3446269403386], [121.904296853164, 20.3446269403386], [121.904296853164, 20.3034175150047], [121.860351540672, 20.3034175150047]]]]}, "properties": {"taskId": 926, "taskX": 6869, "taskY": 4568, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 20.3446269403386], [121.860351540672, 20.3858253783768], [121.904296853164, 20.3858253783768], [121.904296853164, 20.3446269403386], [121.860351540672, 20.3446269403386]]]]}, "properties": {"taskId": 927, "taskX": 6869, "taskY": 4569, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 20.3858253783768], [121.860351540672, 20.4270128107534], [121.904296853164, 20.4270128107534], [121.904296853164, 20.3858253783768], [121.860351540672, 20.3858253783768]]]]}, "properties": {"taskId": 928, "taskX": 6869, "taskY": 4570, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 20.4270128107534], [121.860351540672, 20.4681892191306], [121.904296853164, 20.4681892191306], [121.904296853164, 20.4270128107534], [121.860351540672, 20.4270128107534]]]]}, "properties": {"taskId": 929, "taskX": 6869, "taskY": 4571, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 20.4681892191306], [121.860351540672, 20.5093545851978], [121.904296853164, 20.5093545851978], [121.904296853164, 20.4681892191306], [121.860351540672, 20.4681892191306]]]]}, "properties": {"taskId": 930, "taskX": 6869, "taskY": 4572, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 20.5093545851978], [121.860351540672, 20.5505088906724], [121.904296853164, 20.5505088906724], [121.904296853164, 20.5093545851978], [121.860351540672, 20.5093545851978]]]]}, "properties": {"taskId": 931, "taskX": 6869, "taskY": 4573, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 20.5505088906724], [121.860351540672, 20.5916521172995], [121.904296853164, 20.5916521172995], [121.904296853164, 20.5505088906724], [121.860351540672, 20.5505088906724]]]]}, "properties": {"taskId": 932, "taskX": 6869, "taskY": 4574, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 20.6327842468519], [121.860351540672, 20.6739052611303], [121.904296853164, 20.6739052611303], [121.904296853164, 20.6327842468519], [121.860351540672, 20.6327842468519]]]]}, "properties": {"taskId": 934, "taskX": 6869, "taskY": 4576, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 20.6739052611303], [121.860351540672, 20.7150151419632], [121.904296853164, 20.7150151419632], [121.904296853164, 20.6739052611303], [121.860351540672, 20.6739052611303]]]]}, "properties": {"taskId": 935, "taskX": 6869, "taskY": 4577, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 20.7150151419632], [121.860351540672, 20.7561138712068], [121.904296853164, 20.7561138712068], [121.904296853164, 20.7150151419632], [121.860351540672, 20.7150151419632]]]]}, "properties": {"taskId": 936, "taskX": 6869, "taskY": 4578, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 20.7561138712068], [121.860351540672, 20.7972014307453], [121.904296853164, 20.7972014307453], [121.904296853164, 20.7561138712068], [121.860351540672, 20.7561138712068]]]]}, "properties": {"taskId": 937, "taskX": 6869, "taskY": 4579, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 20.7972014307453], [121.860351540672, 20.8382778024909], [121.904296853164, 20.8382778024909], [121.904296853164, 20.7972014307453], [121.860351540672, 20.7972014307453]]]]}, "properties": {"taskId": 938, "taskX": 6869, "taskY": 4580, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 20.8382778024909], [121.860351540672, 20.8793429683834], [121.904296853164, 20.8793429683834], [121.904296853164, 20.8382778024909], [121.860351540672, 20.8382778024909]]]]}, "properties": {"taskId": 939, "taskX": 6869, "taskY": 4581, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 20.8793429683834], [121.860351540672, 20.920396910391], [121.904296853164, 20.920396910391], [121.904296853164, 20.8793429683834], [121.860351540672, 20.8793429683834]]]]}, "properties": {"taskId": 940, "taskX": 6869, "taskY": 4582, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 20.920396910391], [121.860351540672, 20.9614396105096], [121.904296853164, 20.9614396105096], [121.904296853164, 20.920396910391], [121.860351540672, 20.920396910391]]]]}, "properties": {"taskId": 941, "taskX": 6869, "taskY": 4583, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 21.0434912132036], [121.860351540672, 21.0845000799111], [121.904296853164, 21.0845000799111], [121.904296853164, 21.0434912132036], [121.860351540672, 21.0434912132036]]]]}, "properties": {"taskId": 944, "taskX": 6869, "taskY": 4586, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 21.1017701494615], [121.869771897802, 21.1254976329936], [121.904296853164, 21.1254976329936], [121.904296853164, 21.0845000799111], [121.860351540672, 21.0845000799111], [121.860351540672, 21.1017701494615]]]]}, "properties": {"taskId": 945, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.869771897802, 21.1254976329936], [121.886047923368, 21.1664838545876], [121.904296853164, 21.1664838545876], [121.904296853164, 21.1254976329936], [121.869771897802, 21.1254976329936]]]]}, "properties": {"taskId": 946, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.899056156717, 21.1992329758164], [121.904296853164, 21.1963013114126], [121.904296853164, 21.1664838545876], [121.886047923368, 21.1664838545876], [121.899056156717, 21.1992329758164]]]]}, "properties": {"taskId": 947, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 17.4876375398103], [121.904296853164, 17.484474189163], [121.904296853164, 17.518344184812], [121.948242165656, 17.518344184812], [121.948242165656, 17.4876375398103]]]]}, "properties": {"taskId": 948, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.518344184812], [121.904296853164, 17.5602465002479], [121.948242165656, 17.5602465002479], [121.948242165656, 17.518344184812], [121.904296853164, 17.518344184812]]]]}, "properties": {"taskId": 949, "taskX": 6870, "taskY": 4501, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.5602465002479], [121.904296853164, 17.602139120297], [121.948242165656, 17.602139120297], [121.948242165656, 17.5602465002479], [121.904296853164, 17.5602465002479]]]]}, "properties": {"taskId": 950, "taskX": 6870, "taskY": 4502, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.602139120297], [121.904296853164, 17.6440220248121], [121.948242165656, 17.6440220248121], [121.948242165656, 17.602139120297], [121.904296853164, 17.602139120297]]]]}, "properties": {"taskId": 951, "taskX": 6870, "taskY": 4503, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.6440220248121], [121.904296853164, 17.6858951936713], [121.948242165656, 17.6858951936713], [121.948242165656, 17.6440220248121], [121.904296853164, 17.6440220248121]]]]}, "properties": {"taskId": 952, "taskX": 6870, "taskY": 4504, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.6858951936713], [121.904296853164, 17.7277586067781], [121.948242165656, 17.7277586067781], [121.948242165656, 17.6858951936713], [121.904296853164, 17.6858951936713]]]]}, "properties": {"taskId": 953, "taskX": 6870, "taskY": 4505, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.7277586067781], [121.904296853164, 17.7696122440617], [121.948242165656, 17.7696122440617], [121.948242165656, 17.7277586067781], [121.904296853164, 17.7277586067781]]]]}, "properties": {"taskId": 954, "taskX": 6870, "taskY": 4506, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.7696122440617], [121.904296853164, 17.8114560854767], [121.948242165656, 17.8114560854767], [121.948242165656, 17.7696122440617], [121.904296853164, 17.7696122440617]]]]}, "properties": {"taskId": 955, "taskX": 6870, "taskY": 4507, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.0623123014185], [121.904296853164, 18.104087012639], [121.948242165656, 18.104087012639], [121.948242165656, 18.0623123014185], [121.904296853164, 18.0623123014185]]]]}, "properties": {"taskId": 962, "taskX": 6870, "taskY": 4514, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.104087012639], [121.904296853164, 18.1458517685528], [121.948242165656, 18.1458517685528], [121.948242165656, 18.104087012639], [121.904296853164, 18.104087012639]]]]}, "properties": {"taskId": 963, "taskX": 6870, "taskY": 4515, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.1458517685528], [121.904296853164, 18.1876065493462], [121.948242165656, 18.1876065493462], [121.948242165656, 18.1458517685528], [121.904296853164, 18.1458517685528]]]]}, "properties": {"taskId": 964, "taskX": 6870, "taskY": 4516, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.1876065493462], [121.904296853164, 18.2293513352315], [121.948242165656, 18.2293513352315], [121.948242165656, 18.1876065493462], [121.904296853164, 18.1876065493462]]]]}, "properties": {"taskId": 965, "taskX": 6870, "taskY": 4517, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.271086106447], [121.904296853164, 18.3128108432568], [121.948242165656, 18.3128108432568], [121.948242165656, 18.271086106447], [121.904296853164, 18.271086106447]]]]}, "properties": {"taskId": 967, "taskX": 6870, "taskY": 4519, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.3545255259514], [121.904296853164, 18.3962301348468], [121.948242165656, 18.3962301348468], [121.948242165656, 18.3545255259514], [121.904296853164, 18.3545255259514]]]]}, "properties": {"taskId": 969, "taskX": 6870, "taskY": 4521, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.4379246502857], [121.904296853164, 18.4796090526366], [121.948242165656, 18.4796090526366], [121.948242165656, 18.4379246502857], [121.904296853164, 18.4379246502857]]]]}, "properties": {"taskId": 971, "taskX": 6870, "taskY": 4523, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.4796090526366], [121.904296853164, 18.5212833222942], [121.948242165656, 18.5212833222942], [121.948242165656, 18.4796090526366], [121.904296853164, 18.4796090526366]]]]}, "properties": {"taskId": 972, "taskX": 6870, "taskY": 4524, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.5212833222942], [121.904296853164, 18.5629474396796], [121.948242165656, 18.5629474396796], [121.948242165656, 18.5212833222942], [121.904296853164, 18.5212833222942]]]]}, "properties": {"taskId": 973, "taskX": 6870, "taskY": 4525, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.5629474396796], [121.904296853164, 18.6046013852398], [121.948242165656, 18.6046013852398], [121.948242165656, 18.5629474396796], [121.904296853164, 18.5629474396796]]]]}, "properties": {"taskId": 974, "taskX": 6870, "taskY": 4526, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.6462451394485], [121.904296853164, 18.6878786828054], [121.948242165656, 18.6878786828054], [121.948242165656, 18.6462451394485], [121.904296853164, 18.6462451394485]]]]}, "properties": {"taskId": 976, "taskX": 6870, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.6878786828054], [121.904296853164, 18.7295019958367], [121.948242165656, 18.7295019958367], [121.948242165656, 18.6878786828054], [121.904296853164, 18.6878786828054]]]]}, "properties": {"taskId": 977, "taskX": 6870, "taskY": 4529, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.7295019958367], [121.904296853164, 18.7711150590949], [121.948242165656, 18.7711150590949], [121.948242165656, 18.7295019958367], [121.904296853164, 18.7295019958367]]]]}, "properties": {"taskId": 978, "taskX": 6870, "taskY": 4530, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.7711150590949], [121.904296853164, 18.812717853159], [121.948242165656, 18.812717853159], [121.948242165656, 18.7711150590949], [121.904296853164, 18.7711150590949]]]]}, "properties": {"taskId": 979, "taskX": 6870, "taskY": 4531, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.812717853159], [121.904296853164, 18.8543103586344], [121.948242165656, 18.8543103586344], [121.948242165656, 18.812717853159], [121.904296853164, 18.812717853159]]]]}, "properties": {"taskId": 980, "taskX": 6870, "taskY": 4532, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.8543103586344], [121.904296853164, 18.895892556153], [121.948242165656, 18.895892556153], [121.948242165656, 18.8543103586344], [121.904296853164, 18.8543103586344]]]]}, "properties": {"taskId": 981, "taskX": 6870, "taskY": 4533, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.895892556153], [121.904296853164, 18.9374644263732], [121.948242165656, 18.9374644263732], [121.948242165656, 18.895892556153], [121.904296853164, 18.895892556153]]]]}, "properties": {"taskId": 982, "taskX": 6870, "taskY": 4534, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.9374644263732], [121.904296853164, 18.97902594998], [121.948242165656, 18.97902594998], [121.948242165656, 18.9374644263732], [121.904296853164, 18.9374644263732]]]]}, "properties": {"taskId": 983, "taskX": 6870, "taskY": 4535, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 19.0205771076849], [121.904296853164, 19.0621178802261], [121.948242165656, 19.0621178802261], [121.948242165656, 19.0205771076849], [121.904296853164, 19.0205771076849]]]]}, "properties": {"taskId": 985, "taskX": 6870, "taskY": 4537, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 19.0621178802261], [121.904296853164, 19.1036482483685], [121.948242165656, 19.1036482483685], [121.948242165656, 19.0621178802261], [121.904296853164, 19.0621178802261]]]]}, "properties": {"taskId": 986, "taskX": 6870, "taskY": 4538, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 19.1036482483685], [121.904296853164, 19.1451681929035], [121.948242165656, 19.1451681929035], [121.948242165656, 19.1036482483685], [121.904296853164, 19.1036482483685]]]]}, "properties": {"taskId": 987, "taskX": 6870, "taskY": 4539, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 19.1451681929035], [121.904296853164, 19.1866776946495], [121.948242165656, 19.1866776946495], [121.948242165656, 19.1451681929035], [121.904296853164, 19.1451681929035]]]]}, "properties": {"taskId": 988, "taskX": 6870, "taskY": 4540, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 19.1866776946495], [121.904296853164, 19.2281767344513], [121.948242165656, 19.2281767344513], [121.948242165656, 19.1866776946495], [121.904296853164, 19.1866776946495]]]]}, "properties": {"taskId": 989, "taskX": 6870, "taskY": 4541, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 19.2281767344513], [121.904296853164, 19.2696652931808], [121.948242165656, 19.2696652931808], [121.948242165656, 19.2281767344513], [121.904296853164, 19.2281767344513]]]]}, "properties": {"taskId": 990, "taskX": 6870, "taskY": 4542, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 19.2696652931808], [121.904296853164, 19.3111433517365], [121.948242165656, 19.3111433517365], [121.948242165656, 19.2696652931808], [121.904296853164, 19.2696652931808]]]]}, "properties": {"taskId": 991, "taskX": 6870, "taskY": 4543, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 19.3111433517365], [121.904296853164, 19.3526108910439], [121.948242165656, 19.3526108910439], [121.948242165656, 19.3111433517365], [121.904296853164, 19.3111433517365]]]]}, "properties": {"taskId": 992, "taskX": 6870, "taskY": 4544, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 19.3526108910439], [121.904296853164, 19.3940678920553], [121.948242165656, 19.3940678920553], [121.948242165656, 19.3526108910439], [121.904296853164, 19.3526108910439]]]]}, "properties": {"taskId": 993, "taskX": 6870, "taskY": 4545, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 19.3940678920553], [121.904296853164, 19.43551433575], [121.948242165656, 19.43551433575], [121.948242165656, 19.3940678920553], [121.904296853164, 19.3940678920553]]]]}, "properties": {"taskId": 994, "taskX": 6870, "taskY": 4546, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 19.43551433575], [121.904296853164, 19.476950203134], [121.948242165656, 19.476950203134], [121.948242165656, 19.43551433575], [121.904296853164, 19.43551433575]]]]}, "properties": {"taskId": 995, "taskX": 6870, "taskY": 4547, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 19.476950203134], [121.904296853164, 19.5183754752406], [121.948242165656, 19.5183754752406], [121.948242165656, 19.476950203134], [121.904296853164, 19.476950203134]]]]}, "properties": {"taskId": 996, "taskX": 6870, "taskY": 4548, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 19.5183754752406], [121.904296853164, 19.5597901331299], [121.948242165656, 19.5597901331299], [121.948242165656, 19.5183754752406], [121.904296853164, 19.5183754752406]]]]}, "properties": {"taskId": 997, "taskX": 6870, "taskY": 4549, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 19.5597901331299], [121.904296853164, 19.6011941578891], [121.948242165656, 19.6011941578891], [121.948242165656, 19.5597901331299], [121.904296853164, 19.5597901331299]]]]}, "properties": {"taskId": 998, "taskX": 6870, "taskY": 4550, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 19.6425875306324], [121.904296853164, 19.6839702325013], [121.948242165656, 19.6839702325013], [121.948242165656, 19.6425875306324], [121.904296853164, 19.6425875306324]]]]}, "properties": {"taskId": 1000, "taskX": 6870, "taskY": 4552, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 19.6839702325013], [121.904296853164, 19.7253422446642], [121.948242165656, 19.7253422446642], [121.948242165656, 19.6839702325013], [121.904296853164, 19.6839702325013]]]]}, "properties": {"taskId": 1001, "taskX": 6870, "taskY": 4553, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 19.7253422446642], [121.904296853164, 19.7667035483167], [121.948242165656, 19.7667035483167], [121.948242165656, 19.7253422446642], [121.904296853164, 19.7253422446642]]]]}, "properties": {"taskId": 1002, "taskX": 6870, "taskY": 4554, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 19.8002984303442], [121.908670808909, 19.8080541246818], [121.948242165656, 19.8080541246818], [121.948242165656, 19.7667035483167], [121.904296853164, 19.7667035483167], [121.904296853164, 19.8002984303442]]]]}, "properties": {"taskId": 1003, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.908670808909, 19.8080541246818], [121.931988709715, 19.8493939550095], [121.948242165656, 19.8493939550095], [121.948242165656, 19.8080541246818], [121.908670808909, 19.8080541246818]]]]}, "properties": {"taskId": 1004, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.931988709715, 19.8493939550095], [121.948242165656, 19.8782030095537], [121.948242165656, 19.8493939550095], [121.931988709715, 19.8493939550095]]]]}, "properties": {"taskId": 1005, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.0427192596409], [121.934177834547, 20.0559312617487], [121.948242165656, 20.0559312617487], [121.948242165656, 20.0427192596409]]]]}, "properties": {"taskId": 1006, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.0972062236316], [121.904296853164, 20.1384703089924], [121.948242165656, 20.1384703089924], [121.948242165656, 20.0972062236316], [121.904296853164, 20.0972062236316]]]]}, "properties": {"taskId": 1008, "taskX": 6870, "taskY": 4563, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.1384703089924], [121.904296853164, 20.1797234992999], [121.948242165656, 20.1797234992999], [121.948242165656, 20.1384703089924], [121.904296853164, 20.1384703089924]]]]}, "properties": {"taskId": 1009, "taskX": 6870, "taskY": 4564, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.1797234992999], [121.904296853164, 20.2209657760506], [121.948242165656, 20.2209657760506], [121.948242165656, 20.1797234992999], [121.904296853164, 20.1797234992999]]]]}, "properties": {"taskId": 1010, "taskX": 6870, "taskY": 4565, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.2209657760506], [121.904296853164, 20.2621971207684], [121.948242165656, 20.2621971207684], [121.948242165656, 20.2209657760506], [121.904296853164, 20.2209657760506]]]]}, "properties": {"taskId": 1011, "taskX": 6870, "taskY": 4566, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.2621971207684], [121.904296853164, 20.3034175150047], [121.948242165656, 20.3034175150047], [121.948242165656, 20.2621971207684], [121.904296853164, 20.2621971207684]]]]}, "properties": {"taskId": 1012, "taskX": 6870, "taskY": 4567, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.3034175150047], [121.904296853164, 20.3446269403386], [121.948242165656, 20.3446269403386], [121.948242165656, 20.3034175150047], [121.904296853164, 20.3034175150047]]]]}, "properties": {"taskId": 1013, "taskX": 6870, "taskY": 4568, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.4270128107534], [121.904296853164, 20.4681892191306], [121.948242165656, 20.4681892191306], [121.948242165656, 20.4270128107534], [121.904296853164, 20.4270128107534]]]]}, "properties": {"taskId": 1016, "taskX": 6870, "taskY": 4571, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.4681892191306], [121.904296853164, 20.5093545851978], [121.948242165656, 20.5093545851978], [121.948242165656, 20.4681892191306], [121.904296853164, 20.4681892191306]]]]}, "properties": {"taskId": 1017, "taskX": 6870, "taskY": 4572, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.5093545851978], [121.904296853164, 20.5505088906724], [121.948242165656, 20.5505088906724], [121.948242165656, 20.5093545851978], [121.904296853164, 20.5093545851978]]]]}, "properties": {"taskId": 1018, "taskX": 6870, "taskY": 4573, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.6739052611303], [121.904296853164, 20.7150151419632], [121.948242165656, 20.7150151419632], [121.948242165656, 20.6739052611303], [121.904296853164, 20.6739052611303]]]]}, "properties": {"taskId": 1022, "taskX": 6870, "taskY": 4577, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.7150151419632], [121.904296853164, 20.7561138712068], [121.948242165656, 20.7561138712068], [121.948242165656, 20.7150151419632], [121.904296853164, 20.7150151419632]]]]}, "properties": {"taskId": 1023, "taskX": 6870, "taskY": 4578, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.7561138712068], [121.904296853164, 20.7972014307453], [121.948242165656, 20.7972014307453], [121.948242165656, 20.7561138712068], [121.904296853164, 20.7561138712068]]]]}, "properties": {"taskId": 1024, "taskX": 6870, "taskY": 4579, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.8382778024909], [121.904296853164, 20.8793429683834], [121.948242165656, 20.8793429683834], [121.948242165656, 20.8382778024909], [121.904296853164, 20.8382778024909]]]]}, "properties": {"taskId": 1026, "taskX": 6870, "taskY": 4581, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.8793429683834], [121.904296853164, 20.920396910391], [121.948242165656, 20.920396910391], [121.948242165656, 20.8793429683834], [121.904296853164, 20.8793429683834]]]]}, "properties": {"taskId": 1027, "taskX": 6870, "taskY": 4582, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.9614396105096], [121.904296853164, 21.0024710507632], [121.948242165656, 21.0024710507632], [121.948242165656, 20.9614396105096], [121.904296853164, 20.9614396105096]]]]}, "properties": {"taskId": 1029, "taskX": 6870, "taskY": 4584, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 21.0024710507632], [121.904296853164, 21.0434912132036], [121.948242165656, 21.0434912132036], [121.948242165656, 21.0024710507632], [121.904296853164, 21.0024710507632]]]]}, "properties": {"taskId": 1030, "taskX": 6870, "taskY": 4585, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 21.0434912132036], [121.904296853164, 21.0845000799111], [121.948242165656, 21.0845000799111], [121.948242165656, 21.0434912132036], [121.904296853164, 21.0434912132036]]]]}, "properties": {"taskId": 1031, "taskX": 6870, "taskY": 4586, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 21.0845000799111], [121.904296853164, 21.1254976329936], [121.948242165656, 21.1254976329936], [121.948242165656, 21.0845000799111], [121.904296853164, 21.0845000799111]]]]}, "properties": {"taskId": 1032, "taskX": 6870, "taskY": 4587, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 21.1254976329936], [121.904296853164, 21.1664838545876], [121.948242165656, 21.1664838545876], [121.948242165656, 21.1254976329936], [121.904296853164, 21.1254976329936]]]]}, "properties": {"taskId": 1033, "taskX": 6870, "taskY": 4588, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 17.4908008354325], [121.948242165656, 17.4876375398103], [121.948242165656, 17.518344184812], [121.992187478148, 17.518344184812], [121.992187478148, 17.4908008354325]]]]}, "properties": {"taskId": 1035, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 17.518344184812], [121.948242165656, 17.5602465002479], [121.992187478148, 17.5602465002479], [121.992187478148, 17.518344184812], [121.948242165656, 17.518344184812]]]]}, "properties": {"taskId": 1036, "taskX": 6871, "taskY": 4501, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 17.5602465002479], [121.948242165656, 17.602139120297], [121.992187478148, 17.602139120297], [121.992187478148, 17.5602465002479], [121.948242165656, 17.5602465002479]]]]}, "properties": {"taskId": 1037, "taskX": 6871, "taskY": 4502, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 17.602139120297], [121.948242165656, 17.6440220248121], [121.992187478148, 17.6440220248121], [121.992187478148, 17.602139120297], [121.948242165656, 17.602139120297]]]]}, "properties": {"taskId": 1038, "taskX": 6871, "taskY": 4503, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 17.6440220248121], [121.948242165656, 17.6858951936713], [121.992187478148, 17.6858951936713], [121.992187478148, 17.6440220248121], [121.948242165656, 17.6440220248121]]]]}, "properties": {"taskId": 1039, "taskX": 6871, "taskY": 4504, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 17.6858951936713], [121.948242165656, 17.7277586067781], [121.992187478148, 17.7277586067781], [121.992187478148, 17.6858951936713], [121.948242165656, 17.6858951936713]]]]}, "properties": {"taskId": 1040, "taskX": 6871, "taskY": 4505, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 17.7277586067781], [121.948242165656, 17.7696122440617], [121.992187478148, 17.7696122440617], [121.992187478148, 17.7277586067781], [121.948242165656, 17.7277586067781]]]]}, "properties": {"taskId": 1041, "taskX": 6871, "taskY": 4506, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 17.7696122440617], [121.948242165656, 17.8114560854767], [121.992187478148, 17.8114560854767], [121.992187478148, 17.7696122440617], [121.948242165656, 17.7696122440617]]]]}, "properties": {"taskId": 1042, "taskX": 6871, "taskY": 4507, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 17.8114560854767], [121.948242165656, 17.8532901110035], [121.992187478148, 17.8532901110035], [121.992187478148, 17.8114560854767], [121.948242165656, 17.8114560854767]]]]}, "properties": {"taskId": 1043, "taskX": 6871, "taskY": 4508, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 17.8532901110035], [121.948242165656, 17.8951143006479], [121.992187478148, 17.8951143006479], [121.992187478148, 17.8532901110035], [121.948242165656, 17.8532901110035]]]]}, "properties": {"taskId": 1044, "taskX": 6871, "taskY": 4509, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 17.9787330924414], [121.948242165656, 18.0205276547308], [121.992187478148, 18.0205276547308], [121.992187478148, 17.9787330924414], [121.948242165656, 17.9787330924414]]]]}, "properties": {"taskId": 1047, "taskX": 6871, "taskY": 4512, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.0205276547308], [121.948242165656, 18.0623123014185], [121.992187478148, 18.0623123014185], [121.992187478148, 18.0205276547308], [121.948242165656, 18.0205276547308]]]]}, "properties": {"taskId": 1048, "taskX": 6871, "taskY": 4513, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.0623123014185], [121.948242165656, 18.104087012639], [121.992187478148, 18.104087012639], [121.992187478148, 18.0623123014185], [121.948242165656, 18.0623123014185]]]]}, "properties": {"taskId": 1049, "taskX": 6871, "taskY": 4514, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.104087012639], [121.948242165656, 18.1458517685528], [121.992187478148, 18.1458517685528], [121.992187478148, 18.104087012639], [121.948242165656, 18.104087012639]]]]}, "properties": {"taskId": 1050, "taskX": 6871, "taskY": 4515, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.1458517685528], [121.948242165656, 18.1876065493462], [121.992187478148, 18.1876065493462], [121.992187478148, 18.1458517685528], [121.948242165656, 18.1458517685528]]]]}, "properties": {"taskId": 1051, "taskX": 6871, "taskY": 4516, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.1876065493462], [121.948242165656, 18.2293513352315], [121.992187478148, 18.2293513352315], [121.992187478148, 18.1876065493462], [121.948242165656, 18.1876065493462]]]]}, "properties": {"taskId": 1052, "taskX": 6871, "taskY": 4517, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.3545255259514], [121.948242165656, 18.3962301348468], [121.992187478148, 18.3962301348468], [121.992187478148, 18.3545255259514], [121.948242165656, 18.3545255259514]]]]}, "properties": {"taskId": 1056, "taskX": 6871, "taskY": 4521, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.3962301348468], [121.948242165656, 18.4379246502857], [121.992187478148, 18.4379246502857], [121.992187478148, 18.3962301348468], [121.948242165656, 18.3962301348468]]]]}, "properties": {"taskId": 1057, "taskX": 6871, "taskY": 4522, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.4379246502857], [121.948242165656, 18.4796090526366], [121.992187478148, 18.4796090526366], [121.992187478148, 18.4379246502857], [121.948242165656, 18.4379246502857]]]]}, "properties": {"taskId": 1058, "taskX": 6871, "taskY": 4523, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.4796090526366], [121.948242165656, 18.5212833222942], [121.992187478148, 18.5212833222942], [121.992187478148, 18.4796090526366], [121.948242165656, 18.4796090526366]]]]}, "properties": {"taskId": 1059, "taskX": 6871, "taskY": 4524, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.5212833222942], [121.948242165656, 18.5629474396796], [121.992187478148, 18.5629474396796], [121.992187478148, 18.5212833222942], [121.948242165656, 18.5212833222942]]]]}, "properties": {"taskId": 1060, "taskX": 6871, "taskY": 4525, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.5629474396796], [121.948242165656, 18.6046013852398], [121.992187478148, 18.6046013852398], [121.992187478148, 18.5629474396796], [121.948242165656, 18.5629474396796]]]]}, "properties": {"taskId": 1061, "taskX": 6871, "taskY": 4526, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.6046013852398], [121.948242165656, 18.6462451394485], [121.992187478148, 18.6462451394485], [121.992187478148, 18.6046013852398], [121.948242165656, 18.6046013852398]]]]}, "properties": {"taskId": 1062, "taskX": 6871, "taskY": 4527, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.6462451394485], [121.948242165656, 18.6878786828054], [121.992187478148, 18.6878786828054], [121.992187478148, 18.6462451394485], [121.948242165656, 18.6462451394485]]]]}, "properties": {"taskId": 1063, "taskX": 6871, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.6878786828054], [121.948242165656, 18.7295019958367], [121.992187478148, 18.7295019958367], [121.992187478148, 18.6878786828054], [121.948242165656, 18.6878786828054]]]]}, "properties": {"taskId": 1064, "taskX": 6871, "taskY": 4529, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.7295019958367], [121.948242165656, 18.7711150590949], [121.992187478148, 18.7711150590949], [121.992187478148, 18.7295019958367], [121.948242165656, 18.7295019958367]]]]}, "properties": {"taskId": 1065, "taskX": 6871, "taskY": 4530, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.812717853159], [121.948242165656, 18.8543103586344], [121.992187478148, 18.8543103586344], [121.992187478148, 18.812717853159], [121.948242165656, 18.812717853159]]]]}, "properties": {"taskId": 1067, "taskX": 6871, "taskY": 4532, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.8543103586344], [121.948242165656, 18.895892556153], [121.992187478148, 18.895892556153], [121.992187478148, 18.8543103586344], [121.948242165656, 18.8543103586344]]]]}, "properties": {"taskId": 1068, "taskX": 6871, "taskY": 4533, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.895892556153], [121.948242165656, 18.9374644263732], [121.992187478148, 18.9374644263732], [121.992187478148, 18.895892556153], [121.948242165656, 18.895892556153]]]]}, "properties": {"taskId": 1069, "taskX": 6871, "taskY": 4534, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.9374644263732], [121.948242165656, 18.97902594998], [121.992187478148, 18.97902594998], [121.992187478148, 18.9374644263732], [121.948242165656, 18.9374644263732]]]]}, "properties": {"taskId": 1070, "taskX": 6871, "taskY": 4535, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.97902594998], [121.948242165656, 19.0205771076849], [121.992187478148, 19.0205771076849], [121.992187478148, 18.97902594998], [121.948242165656, 18.97902594998]]]]}, "properties": {"taskId": 1071, "taskX": 6871, "taskY": 4536, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 19.0205771076849], [121.948242165656, 19.0621178802261], [121.992187478148, 19.0621178802261], [121.992187478148, 19.0205771076849], [121.948242165656, 19.0205771076849]]]]}, "properties": {"taskId": 1072, "taskX": 6871, "taskY": 4537, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 19.0621178802261], [121.948242165656, 19.1036482483685], [121.992187478148, 19.1036482483685], [121.992187478148, 19.0621178802261], [121.948242165656, 19.0621178802261]]]]}, "properties": {"taskId": 1073, "taskX": 6871, "taskY": 4538, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 19.1451681929035], [121.948242165656, 19.1866776946495], [121.992187478148, 19.1866776946495], [121.992187478148, 19.1451681929035], [121.948242165656, 19.1451681929035]]]]}, "properties": {"taskId": 1075, "taskX": 6871, "taskY": 4540, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 19.2281767344513], [121.948242165656, 19.2696652931808], [121.992187478148, 19.2696652931808], [121.992187478148, 19.2281767344513], [121.948242165656, 19.2281767344513]]]]}, "properties": {"taskId": 1077, "taskX": 6871, "taskY": 4542, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 19.2696652931808], [121.948242165656, 19.3111433517365], [121.992187478148, 19.3111433517365], [121.992187478148, 19.2696652931808], [121.948242165656, 19.2696652931808]]]]}, "properties": {"taskId": 1078, "taskX": 6871, "taskY": 4543, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 19.3111433517365], [121.948242165656, 19.3526108910439], [121.992187478148, 19.3526108910439], [121.992187478148, 19.3111433517365], [121.948242165656, 19.3111433517365]]]]}, "properties": {"taskId": 1079, "taskX": 6871, "taskY": 4544, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 19.3526108910439], [121.948242165656, 19.3940678920553], [121.992187478148, 19.3940678920553], [121.992187478148, 19.3526108910439], [121.948242165656, 19.3526108910439]]]]}, "properties": {"taskId": 1080, "taskX": 6871, "taskY": 4545, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 19.3940678920553], [121.948242165656, 19.43551433575], [121.992187478148, 19.43551433575], [121.992187478148, 19.3940678920553], [121.948242165656, 19.3940678920553]]]]}, "properties": {"taskId": 1081, "taskX": 6871, "taskY": 4546, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 19.43551433575], [121.948242165656, 19.476950203134], [121.992187478148, 19.476950203134], [121.992187478148, 19.43551433575], [121.948242165656, 19.43551433575]]]]}, "properties": {"taskId": 1082, "taskX": 6871, "taskY": 4547, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 19.476950203134], [121.948242165656, 19.5183754752406], [121.992187478148, 19.5183754752406], [121.992187478148, 19.476950203134], [121.948242165656, 19.476950203134]]]]}, "properties": {"taskId": 1083, "taskX": 6871, "taskY": 4548, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 19.5183754752406], [121.948242165656, 19.5597901331299], [121.992187478148, 19.5597901331299], [121.992187478148, 19.5183754752406], [121.948242165656, 19.5183754752406]]]]}, "properties": {"taskId": 1084, "taskX": 6871, "taskY": 4549, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 19.5597901331299], [121.948242165656, 19.6011941578891], [121.992187478148, 19.6011941578891], [121.992187478148, 19.5597901331299], [121.948242165656, 19.5597901331299]]]]}, "properties": {"taskId": 1085, "taskX": 6871, "taskY": 4550, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 19.6011941578891], [121.948242165656, 19.6425875306324], [121.992187478148, 19.6425875306324], [121.992187478148, 19.6011941578891], [121.948242165656, 19.6011941578891]]]]}, "properties": {"taskId": 1086, "taskX": 6871, "taskY": 4551, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 19.6425875306324], [121.948242165656, 19.6839702325013], [121.992187478148, 19.6839702325013], [121.992187478148, 19.6425875306324], [121.948242165656, 19.6425875306324]]]]}, "properties": {"taskId": 1087, "taskX": 6871, "taskY": 4552, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 19.6839702325013], [121.948242165656, 19.7253422446642], [121.992187478148, 19.7253422446642], [121.992187478148, 19.6839702325013], [121.948242165656, 19.6839702325013]]]]}, "properties": {"taskId": 1088, "taskX": 6871, "taskY": 4553, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 19.7253422446642], [121.948242165656, 19.7667035483167], [121.992187478148, 19.7667035483167], [121.992187478148, 19.7253422446642], [121.948242165656, 19.7253422446642]]]]}, "properties": {"taskId": 1089, "taskX": 6871, "taskY": 4554, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 19.7667035483167], [121.948242165656, 19.8080541246818], [121.992187478148, 19.8080541246818], [121.992187478148, 19.7667035483167], [121.948242165656, 19.7667035483167]]]]}, "properties": {"taskId": 1090, "taskX": 6871, "taskY": 4555, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 19.8080541246818], [121.948242165656, 19.8493939550095], [121.992187478148, 19.8493939550095], [121.992187478148, 19.8080541246818], [121.948242165656, 19.8080541246818]]]]}, "properties": {"taskId": 1091, "taskX": 6871, "taskY": 4556, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 19.8782030095537], [121.955306610521, 19.8907230205771], [121.992187478148, 19.8907230205771], [121.992187478148, 19.8493939550095], [121.948242165656, 19.8493939550095], [121.948242165656, 19.8782030095537]]]]}, "properties": {"taskId": 1092, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.955306610521, 19.8907230205771], [121.978624511327, 19.9320413026892], [121.992187478148, 19.9320413026892], [121.992187478148, 19.8907230205771], [121.955306610521, 19.8907230205771]]]]}, "properties": {"taskId": 1093, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.978624511327, 19.9320413026892], [121.992187478148, 19.9560693084158], [121.992187478148, 19.9320413026892], [121.978624511327, 19.9320413026892]]]]}, "properties": {"taskId": 1094, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 20.0014299687182], [121.97812314704, 20.014645441902], [121.992187478148, 20.014645441902], [121.992187478148, 20.0014299687182]]]]}, "properties": {"taskId": 1095, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.97812314704, 20.014645441902], [121.948242165656, 20.0427192596409], [121.948242165656, 20.0559312617487], [121.992187478148, 20.0559312617487], [121.992187478148, 20.014645441902], [121.97812314704, 20.014645441902]]]]}, "properties": {"taskId": 1096, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.0559312617487], [121.948242165656, 20.0972062236316], [121.992187478148, 20.0972062236316], [121.992187478148, 20.0559312617487], [121.948242165656, 20.0559312617487]]]]}, "properties": {"taskId": 1097, "taskX": 6871, "taskY": 4562, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.0972062236316], [121.948242165656, 20.1384703089924], [121.992187478148, 20.1384703089924], [121.992187478148, 20.0972062236316], [121.948242165656, 20.0972062236316]]]]}, "properties": {"taskId": 1098, "taskX": 6871, "taskY": 4563, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.1384703089924], [121.948242165656, 20.1797234992999], [121.992187478148, 20.1797234992999], [121.992187478148, 20.1384703089924], [121.948242165656, 20.1384703089924]]]]}, "properties": {"taskId": 1099, "taskX": 6871, "taskY": 4564, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.1797234992999], [121.948242165656, 20.2209657760506], [121.992187478148, 20.2209657760506], [121.992187478148, 20.1797234992999], [121.948242165656, 20.1797234992999]]]]}, "properties": {"taskId": 1100, "taskX": 6871, "taskY": 4565, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.2621971207684], [121.948242165656, 20.3034175150047], [121.992187478148, 20.3034175150047], [121.992187478148, 20.2621971207684], [121.948242165656, 20.2621971207684]]]]}, "properties": {"taskId": 1102, "taskX": 6871, "taskY": 4567, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.3034175150047], [121.948242165656, 20.3446269403386], [121.992187478148, 20.3446269403386], [121.992187478148, 20.3034175150047], [121.948242165656, 20.3034175150047]]]]}, "properties": {"taskId": 1103, "taskX": 6871, "taskY": 4568, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.6327842468519], [121.948242165656, 20.6739052611303], [121.992187478148, 20.6739052611303], [121.992187478148, 20.6327842468519], [121.948242165656, 20.6327842468519]]]]}, "properties": {"taskId": 1111, "taskX": 6871, "taskY": 4576, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.6739052611303], [121.948242165656, 20.7150151419632], [121.992187478148, 20.7150151419632], [121.992187478148, 20.6739052611303], [121.948242165656, 20.6739052611303]]]]}, "properties": {"taskId": 1112, "taskX": 6871, "taskY": 4577, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.7561138712068], [121.948242165656, 20.7972014307453], [121.992187478148, 20.7972014307453], [121.992187478148, 20.7561138712068], [121.948242165656, 20.7561138712068]]]]}, "properties": {"taskId": 1114, "taskX": 6871, "taskY": 4579, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.7972014307453], [121.948242165656, 20.8382778024909], [121.992187478148, 20.8382778024909], [121.992187478148, 20.7972014307453], [121.948242165656, 20.7972014307453]]]]}, "properties": {"taskId": 1115, "taskX": 6871, "taskY": 4580, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.8382778024909], [121.948242165656, 20.8793429683834], [121.992187478148, 20.8793429683834], [121.992187478148, 20.8382778024909], [121.948242165656, 20.8382778024909]]]]}, "properties": {"taskId": 1116, "taskX": 6871, "taskY": 4581, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.8793429683834], [121.948242165656, 20.920396910391], [121.992187478148, 20.920396910391], [121.992187478148, 20.8793429683834], [121.948242165656, 20.8793429683834]]]]}, "properties": {"taskId": 1117, "taskX": 6871, "taskY": 4582, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.920396910391], [121.948242165656, 20.9614396105096], [121.992187478148, 20.9614396105096], [121.992187478148, 20.920396910391], [121.948242165656, 20.920396910391]]]]}, "properties": {"taskId": 1118, "taskX": 6871, "taskY": 4583, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.9614396105096], [121.948242165656, 21.0024710507632], [121.992187478148, 21.0024710507632], [121.992187478148, 20.9614396105096], [121.948242165656, 20.9614396105096]]]]}, "properties": {"taskId": 1119, "taskX": 6871, "taskY": 4584, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 21.0024710507632], [121.948242165656, 21.0434912132036], [121.992187478148, 21.0434912132036], [121.992187478148, 21.0024710507632], [121.948242165656, 21.0024710507632]]]]}, "properties": {"taskId": 1120, "taskX": 6871, "taskY": 4585, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 21.0434912132036], [121.948242165656, 21.0845000799111], [121.992187478148, 21.0845000799111], [121.992187478148, 21.0434912132036], [121.948242165656, 21.0434912132036]]]]}, "properties": {"taskId": 1121, "taskX": 6871, "taskY": 4586, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 21.0845000799111], [121.948242165656, 21.1254976329936], [121.992187478148, 21.1254976329936], [121.992187478148, 21.0845000799111], [121.948242165656, 21.0845000799111]]]]}, "properties": {"taskId": 1122, "taskX": 6871, "taskY": 4587, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.957593175357, 21.1664838545876], [121.992187478148, 21.1471263167504], [121.992187478148, 21.1254976329936], [121.948242165656, 21.1254976329936], [121.948242165656, 21.1664838545876], [121.957593175357, 21.1664838545876]]]]}, "properties": {"taskId": 1123, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 21.1717158573759], [121.957593175357, 21.1664838545876], [121.948242165656, 21.1664838545876], [121.948242165656, 21.1717158573759]]]]}, "properties": {"taskId": 1124, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 17.493964076021], [121.992187478148, 17.4908008354325], [121.992187478148, 17.518344184812], [122.03613279064, 17.518344184812], [122.03613279064, 17.493964076021]]]]}, "properties": {"taskId": 1125, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 17.518344184812], [121.992187478148, 17.5602465002479], [122.03613279064, 17.5602465002479], [122.03613279064, 17.518344184812], [121.992187478148, 17.518344184812]]]]}, "properties": {"taskId": 1126, "taskX": 6872, "taskY": 4501, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 17.5602465002479], [121.992187478148, 17.602139120297], [122.03613279064, 17.602139120297], [122.03613279064, 17.5602465002479], [121.992187478148, 17.5602465002479]]]]}, "properties": {"taskId": 1127, "taskX": 6872, "taskY": 4502, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 17.602139120297], [121.992187478148, 17.6440220248121], [122.03613279064, 17.6440220248121], [122.03613279064, 17.602139120297], [121.992187478148, 17.602139120297]]]]}, "properties": {"taskId": 1128, "taskX": 6872, "taskY": 4503, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 17.7277586067781], [121.992187478148, 17.7696122440617], [122.03613279064, 17.7696122440617], [122.03613279064, 17.7277586067781], [121.992187478148, 17.7277586067781]]]]}, "properties": {"taskId": 1131, "taskX": 6872, "taskY": 4506, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 17.7696122440617], [121.992187478148, 17.8114560854767], [122.03613279064, 17.8114560854767], [122.03613279064, 17.7696122440617], [121.992187478148, 17.7696122440617]]]]}, "properties": {"taskId": 1132, "taskX": 6872, "taskY": 4507, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 17.8114560854767], [121.992187478148, 17.8532901110035], [122.03613279064, 17.8532901110035], [122.03613279064, 17.8114560854767], [121.992187478148, 17.8114560854767]]]]}, "properties": {"taskId": 1133, "taskX": 6872, "taskY": 4508, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 17.8951143006479], [121.992187478148, 17.9369286344415], [122.03613279064, 17.9369286344415], [122.03613279064, 17.8951143006479], [121.992187478148, 17.8951143006479]]]]}, "properties": {"taskId": 1135, "taskX": 6872, "taskY": 4510, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 17.9369286344415], [121.992187478148, 17.9787330924414], [122.03613279064, 17.9787330924414], [122.03613279064, 17.9369286344415], [121.992187478148, 17.9369286344415]]]]}, "properties": {"taskId": 1136, "taskX": 6872, "taskY": 4511, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 17.9787330924414], [121.992187478148, 18.0205276547308], [122.03613279064, 18.0205276547308], [122.03613279064, 17.9787330924414], [121.992187478148, 17.9787330924414]]]]}, "properties": {"taskId": 1137, "taskX": 6872, "taskY": 4512, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.0205276547308], [121.992187478148, 18.0623123014185], [122.03613279064, 18.0623123014185], [122.03613279064, 18.0205276547308], [121.992187478148, 18.0205276547308]]]]}, "properties": {"taskId": 1138, "taskX": 6872, "taskY": 4513, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.0623123014185], [121.992187478148, 18.104087012639], [122.03613279064, 18.104087012639], [122.03613279064, 18.0623123014185], [121.992187478148, 18.0623123014185]]]]}, "properties": {"taskId": 1139, "taskX": 6872, "taskY": 4514, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.104087012639], [121.992187478148, 18.1458517685528], [122.03613279064, 18.1458517685528], [122.03613279064, 18.104087012639], [121.992187478148, 18.104087012639]]]]}, "properties": {"taskId": 1140, "taskX": 6872, "taskY": 4515, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.1458517685528], [121.992187478148, 18.1876065493462], [122.03613279064, 18.1876065493462], [122.03613279064, 18.1458517685528], [121.992187478148, 18.1458517685528]]]]}, "properties": {"taskId": 1141, "taskX": 6872, "taskY": 4516, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.1876065493462], [121.992187478148, 18.2293513352315], [122.03613279064, 18.2293513352315], [122.03613279064, 18.1876065493462], [121.992187478148, 18.1876065493462]]]]}, "properties": {"taskId": 1142, "taskX": 6872, "taskY": 4517, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.271086106447], [121.992187478148, 18.3128108432568], [122.03613279064, 18.3128108432568], [122.03613279064, 18.271086106447], [121.992187478148, 18.271086106447]]]]}, "properties": {"taskId": 1144, "taskX": 6872, "taskY": 4519, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.3128108432568], [121.992187478148, 18.3545255259514], [122.03613279064, 18.3545255259514], [122.03613279064, 18.3128108432568], [121.992187478148, 18.3128108432568]]]]}, "properties": {"taskId": 1145, "taskX": 6872, "taskY": 4520, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.3962301348468], [121.992187478148, 18.4379246502857], [122.03613279064, 18.4379246502857], [122.03613279064, 18.3962301348468], [121.992187478148, 18.3962301348468]]]]}, "properties": {"taskId": 1147, "taskX": 6872, "taskY": 4522, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.4379246502857], [121.992187478148, 18.4796090526366], [122.03613279064, 18.4796090526366], [122.03613279064, 18.4379246502857], [121.992187478148, 18.4379246502857]]]]}, "properties": {"taskId": 1148, "taskX": 6872, "taskY": 4523, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.4796090526366], [121.992187478148, 18.5212833222942], [122.03613279064, 18.5212833222942], [122.03613279064, 18.4796090526366], [121.992187478148, 18.4796090526366]]]]}, "properties": {"taskId": 1149, "taskX": 6872, "taskY": 4524, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.5212833222942], [121.992187478148, 18.5629474396796], [122.03613279064, 18.5629474396796], [122.03613279064, 18.5212833222942], [121.992187478148, 18.5212833222942]]]]}, "properties": {"taskId": 1150, "taskX": 6872, "taskY": 4525, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.6046013852398], [121.992187478148, 18.6462451394485], [122.03613279064, 18.6462451394485], [122.03613279064, 18.6046013852398], [121.992187478148, 18.6046013852398]]]]}, "properties": {"taskId": 1152, "taskX": 6872, "taskY": 4527, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.6462451394485], [121.992187478148, 18.6878786828054], [122.03613279064, 18.6878786828054], [122.03613279064, 18.6462451394485], [121.992187478148, 18.6462451394485]]]]}, "properties": {"taskId": 1153, "taskX": 6872, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.6878786828054], [121.992187478148, 18.7295019958367], [122.03613279064, 18.7295019958367], [122.03613279064, 18.6878786828054], [121.992187478148, 18.6878786828054]]]]}, "properties": {"taskId": 1154, "taskX": 6872, "taskY": 4529, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.7295019958367], [121.992187478148, 18.7711150590949], [122.03613279064, 18.7711150590949], [122.03613279064, 18.7295019958367], [121.992187478148, 18.7295019958367]]]]}, "properties": {"taskId": 1155, "taskX": 6872, "taskY": 4530, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.812717853159], [121.992187478148, 18.8543103586344], [122.03613279064, 18.8543103586344], [122.03613279064, 18.812717853159], [121.992187478148, 18.812717853159]]]]}, "properties": {"taskId": 1157, "taskX": 6872, "taskY": 4532, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.8543103586344], [121.992187478148, 18.895892556153], [122.03613279064, 18.895892556153], [122.03613279064, 18.8543103586344], [121.992187478148, 18.8543103586344]]]]}, "properties": {"taskId": 1158, "taskX": 6872, "taskY": 4533, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.895892556153], [121.992187478148, 18.9374644263732], [122.03613279064, 18.9374644263732], [122.03613279064, 18.895892556153], [121.992187478148, 18.895892556153]]]]}, "properties": {"taskId": 1159, "taskX": 6872, "taskY": 4534, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.9374644263732], [121.992187478148, 18.97902594998], [122.03613279064, 18.97902594998], [122.03613279064, 18.9374644263732], [121.992187478148, 18.9374644263732]]]]}, "properties": {"taskId": 1160, "taskX": 6872, "taskY": 4535, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.97902594998], [121.992187478148, 19.0205771076849], [122.03613279064, 19.0205771076849], [122.03613279064, 18.97902594998], [121.992187478148, 18.97902594998]]]]}, "properties": {"taskId": 1161, "taskX": 6872, "taskY": 4536, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 19.0205771076849], [121.992187478148, 19.0621178802261], [122.03613279064, 19.0621178802261], [122.03613279064, 19.0205771076849], [121.992187478148, 19.0205771076849]]]]}, "properties": {"taskId": 1162, "taskX": 6872, "taskY": 4537, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 19.0621178802261], [121.992187478148, 19.1036482483685], [122.03613279064, 19.1036482483685], [122.03613279064, 19.0621178802261], [121.992187478148, 19.0621178802261]]]]}, "properties": {"taskId": 1163, "taskX": 6872, "taskY": 4538, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 19.1036482483685], [121.992187478148, 19.1451681929035], [122.03613279064, 19.1451681929035], [122.03613279064, 19.1036482483685], [121.992187478148, 19.1036482483685]]]]}, "properties": {"taskId": 1164, "taskX": 6872, "taskY": 4539, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 19.1451681929035], [121.992187478148, 19.1866776946495], [122.03613279064, 19.1866776946495], [122.03613279064, 19.1451681929035], [121.992187478148, 19.1451681929035]]]]}, "properties": {"taskId": 1165, "taskX": 6872, "taskY": 4540, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.035186718412, 19.2281767344513], [122.03613279064, 19.2147767609426], [122.03613279064, 19.1866776946495], [121.992187478148, 19.1866776946495], [121.992187478148, 19.2281767344513], [122.035186718412, 19.2281767344513]]]]}, "properties": {"taskId": 1166, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.032257030912, 19.2696652931808], [122.035186718412, 19.2281767344513], [121.992187478148, 19.2281767344513], [121.992187478148, 19.2696652931808], [122.032257030912, 19.2696652931808]]]]}, "properties": {"taskId": 1167, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.034626177505, 19.3111433517365], [122.030892094217, 19.2889911615471], [122.032257030912, 19.2696652931808], [121.992187478148, 19.2696652931808], [121.992187478148, 19.3111433517365], [122.034626177505, 19.3111433517365]]]]}, "properties": {"taskId": 1168, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 19.3200803802393], [122.034626177505, 19.3111433517365], [121.992187478148, 19.3111433517365], [121.992187478148, 19.3526108910439], [122.03613279064, 19.3526108910439], [122.03613279064, 19.3200803802393]]]]}, "properties": {"taskId": 1169, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 19.3526108910439], [121.992187478148, 19.3940678920553], [122.03613279064, 19.3940678920553], [122.03613279064, 19.3526108910439], [121.992187478148, 19.3526108910439]]]]}, "properties": {"taskId": 1170, "taskX": 6872, "taskY": 4545, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 19.3940678920553], [121.992187478148, 19.43551433575], [122.03613279064, 19.43551433575], [122.03613279064, 19.3940678920553], [121.992187478148, 19.3940678920553]]]]}, "properties": {"taskId": 1171, "taskX": 6872, "taskY": 4546, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 19.43551433575], [121.992187478148, 19.476950203134], [122.03613279064, 19.476950203134], [122.03613279064, 19.43551433575], [121.992187478148, 19.43551433575]]]]}, "properties": {"taskId": 1172, "taskX": 6872, "taskY": 4547, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 19.476950203134], [121.992187478148, 19.5183754752406], [122.03613279064, 19.5183754752406], [122.03613279064, 19.476950203134], [121.992187478148, 19.476950203134]]]]}, "properties": {"taskId": 1173, "taskX": 6872, "taskY": 4548, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 19.5597901331299], [121.992187478148, 19.6011941578891], [122.03613279064, 19.6011941578891], [122.03613279064, 19.5597901331299], [121.992187478148, 19.5597901331299]]]]}, "properties": {"taskId": 1175, "taskX": 6872, "taskY": 4550, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 19.6011941578891], [121.992187478148, 19.6425875306324], [122.03613279064, 19.6425875306324], [122.03613279064, 19.6011941578891], [121.992187478148, 19.6011941578891]]]]}, "properties": {"taskId": 1176, "taskX": 6872, "taskY": 4551, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 19.6425875306324], [121.992187478148, 19.6839702325013], [122.03613279064, 19.6839702325013], [122.03613279064, 19.6425875306324], [121.992187478148, 19.6425875306324]]]]}, "properties": {"taskId": 1177, "taskX": 6872, "taskY": 4552, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 19.6839702325013], [121.992187478148, 19.7253422446642], [122.03613279064, 19.7253422446642], [122.03613279064, 19.6839702325013], [121.992187478148, 19.6839702325013]]]]}, "properties": {"taskId": 1178, "taskX": 6872, "taskY": 4553, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 19.7253422446642], [121.992187478148, 19.7667035483167], [122.03613279064, 19.7667035483167], [122.03613279064, 19.7253422446642], [121.992187478148, 19.7253422446642]]]]}, "properties": {"taskId": 1179, "taskX": 6872, "taskY": 4554, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 19.7667035483167], [121.992187478148, 19.8080541246818], [122.03613279064, 19.8080541246818], [122.03613279064, 19.7667035483167], [121.992187478148, 19.7667035483167]]]]}, "properties": {"taskId": 1180, "taskX": 6872, "taskY": 4555, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 19.8080541246818], [121.992187478148, 19.8493939550095], [122.03613279064, 19.8493939550095], [122.03613279064, 19.8080541246818], [121.992187478148, 19.8080541246818]]]]}, "properties": {"taskId": 1181, "taskX": 6872, "taskY": 4556, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 19.8493939550095], [121.992187478148, 19.8907230205771], [122.03613279064, 19.8907230205771], [122.03613279064, 19.8493939550095], [121.992187478148, 19.8493939550095]]]]}, "properties": {"taskId": 1182, "taskX": 6872, "taskY": 4557, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 19.8907230205771], [121.992187478148, 19.9320413026892], [122.03613279064, 19.9320413026892], [122.03613279064, 19.8907230205771], [121.992187478148, 19.8907230205771]]]]}, "properties": {"taskId": 1183, "taskX": 6872, "taskY": 4558, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 19.9560693084158], [122.001942412133, 19.9733487826778], [122.03613279064, 19.9733487826778], [122.03613279064, 19.9320413026892], [121.992187478148, 19.9320413026892], [121.992187478148, 19.9560693084158]]]]}, "properties": {"taskId": 1184, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 20.014645441902], [121.992187478148, 20.0559312617487], [122.03613279064, 20.0559312617487], [122.03613279064, 20.014645441902], [121.992187478148, 20.014645441902]]]]}, "properties": {"taskId": 1186, "taskX": 6872, "taskY": 4561, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 20.0559312617487], [121.992187478148, 20.0972062236316], [122.03613279064, 20.0972062236316], [122.03613279064, 20.0559312617487], [121.992187478148, 20.0559312617487]]]]}, "properties": {"taskId": 1187, "taskX": 6872, "taskY": 4562, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 20.0972062236316], [121.992187478148, 20.1384703089924], [122.03613279064, 20.1384703089924], [122.03613279064, 20.0972062236316], [121.992187478148, 20.0972062236316]]]]}, "properties": {"taskId": 1188, "taskX": 6872, "taskY": 4563, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 20.1797234992999], [121.992187478148, 20.2209657760506], [122.03613279064, 20.2209657760506], [122.03613279064, 20.1797234992999], [121.992187478148, 20.1797234992999]]]]}, "properties": {"taskId": 1190, "taskX": 6872, "taskY": 4565, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 20.2621971207684], [121.992187478148, 20.3034175150047], [122.03613279064, 20.3034175150047], [122.03613279064, 20.2621971207684], [121.992187478148, 20.2621971207684]]]]}, "properties": {"taskId": 1192, "taskX": 6872, "taskY": 4567, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 20.3034175150047], [121.992187478148, 20.3446269403386], [122.03613279064, 20.3446269403386], [122.03613279064, 20.3034175150047], [121.992187478148, 20.3034175150047]]]]}, "properties": {"taskId": 1193, "taskX": 6872, "taskY": 4568, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 20.3446269403386], [121.992187478148, 20.3858253783768], [122.03613279064, 20.3858253783768], [122.03613279064, 20.3446269403386], [121.992187478148, 20.3446269403386]]]]}, "properties": {"taskId": 1194, "taskX": 6872, "taskY": 4569, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 20.3858253783768], [121.992187478148, 20.4270128107534], [122.03613279064, 20.4270128107534], [122.03613279064, 20.3858253783768], [121.992187478148, 20.3858253783768]]]]}, "properties": {"taskId": 1195, "taskX": 6872, "taskY": 4570, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 20.4270128107534], [121.992187478148, 20.4681892191306], [122.03613279064, 20.4681892191306], [122.03613279064, 20.4270128107534], [121.992187478148, 20.4270128107534]]]]}, "properties": {"taskId": 1196, "taskX": 6872, "taskY": 4571, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 20.4681892191306], [121.992187478148, 20.5093545851978], [122.03613279064, 20.5093545851978], [122.03613279064, 20.4681892191306], [121.992187478148, 20.4681892191306]]]]}, "properties": {"taskId": 1197, "taskX": 6872, "taskY": 4572, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 20.5093545851978], [121.992187478148, 20.5505088906724], [122.03613279064, 20.5505088906724], [122.03613279064, 20.5093545851978], [121.992187478148, 20.5093545851978]]]]}, "properties": {"taskId": 1198, "taskX": 6872, "taskY": 4573, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 20.5505088906724], [121.992187478148, 20.5916521172995], [122.03613279064, 20.5916521172995], [122.03613279064, 20.5505088906724], [121.992187478148, 20.5505088906724]]]]}, "properties": {"taskId": 1199, "taskX": 6872, "taskY": 4574, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.994449023183, 20.7150151419632], [121.994271223984, 20.7136134127379], [122.011026496315, 20.6739052611303], [121.992187478148, 20.6739052611303], [121.992187478148, 20.7150151419632], [121.994449023183, 20.7150151419632]]]]}, "properties": {"taskId": 1202, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.999662831054, 20.7561138712068], [121.994449023183, 20.7150151419632], [121.992187478148, 20.7150151419632], [121.992187478148, 20.7561138712068], [121.999662831054, 20.7561138712068]]]]}, "properties": {"taskId": 1203, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.004876638924, 20.7972014307453], [121.999662831054, 20.7561138712068], [121.992187478148, 20.7561138712068], [121.992187478148, 20.7972014307453], [122.004876638924, 20.7972014307453]]]]}, "properties": {"taskId": 1204, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.010090446794, 20.8382778024909], [122.004876638924, 20.7972014307453], [121.992187478148, 20.7972014307453], [121.992187478148, 20.8382778024909], [122.010090446794, 20.8382778024909]]]]}, "properties": {"taskId": 1205, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.015304254665, 20.8793429683834], [122.010090446794, 20.8382778024909], [121.992187478148, 20.8382778024909], [121.992187478148, 20.8793429683834], [122.015304254665, 20.8793429683834]]]]}, "properties": {"taskId": 1206, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.020518062535, 20.920396910391], [122.015304254665, 20.8793429683834], [121.992187478148, 20.8793429683834], [121.992187478148, 20.920396910391], [122.020518062535, 20.920396910391]]]]}, "properties": {"taskId": 1207, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.025731870405, 20.9614396105096], [122.020518062535, 20.920396910391], [121.992187478148, 20.920396910391], [121.992187478148, 20.9614396105096], [122.025731870405, 20.9614396105096]]]]}, "properties": {"taskId": 1208, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.030945678276, 21.0024710507632], [122.025731870405, 20.9614396105096], [121.992187478148, 20.9614396105096], [121.992187478148, 21.0024710507632], [122.030945678276, 21.0024710507632]]]]}, "properties": {"taskId": 1209, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 21.0432812123574], [122.030945678276, 21.0024710507632], [121.992187478148, 21.0024710507632], [121.992187478148, 21.0434912132036], [122.03613279064, 21.0434912132036], [122.03613279064, 21.0432812123574]]]]}, "properties": {"taskId": 1210, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.030835251085, 21.1254976329936], [122.03613279064, 21.1225326933868], [122.03613279064, 21.0845000799111], [121.992187478148, 21.0845000799111], [121.992187478148, 21.1254976329936], [122.030835251085, 21.1254976329936]]]]}, "properties": {"taskId": 1212, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 17.4971272615672], [122.03613279064, 17.493964076021], [122.03613279064, 17.518344184812], [122.080078103132, 17.518344184812], [122.080078103132, 17.4971272615672]]]]}, "properties": {"taskId": 1214, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 17.518344184812], [122.03613279064, 17.5602465002479], [122.080078103132, 17.5602465002479], [122.080078103132, 17.518344184812], [122.03613279064, 17.518344184812]]]]}, "properties": {"taskId": 1215, "taskX": 6873, "taskY": 4501, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 17.5602465002479], [122.03613279064, 17.602139120297], [122.080078103132, 17.602139120297], [122.080078103132, 17.5602465002479], [122.03613279064, 17.5602465002479]]]]}, "properties": {"taskId": 1216, "taskX": 6873, "taskY": 4502, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 17.602139120297], [122.03613279064, 17.6440220248121], [122.080078103132, 17.6440220248121], [122.080078103132, 17.602139120297], [122.03613279064, 17.602139120297]]]]}, "properties": {"taskId": 1217, "taskX": 6873, "taskY": 4503, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 17.6440220248121], [122.03613279064, 17.6858951936713], [122.080078103132, 17.6858951936713], [122.080078103132, 17.6440220248121], [122.03613279064, 17.6440220248121]]]]}, "properties": {"taskId": 1218, "taskX": 6873, "taskY": 4504, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 17.6858951936713], [122.03613279064, 17.7277586067781], [122.080078103132, 17.7277586067781], [122.080078103132, 17.6858951936713], [122.03613279064, 17.6858951936713]]]]}, "properties": {"taskId": 1219, "taskX": 6873, "taskY": 4505, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 17.7277586067781], [122.03613279064, 17.7696122440617], [122.080078103132, 17.7696122440617], [122.080078103132, 17.7277586067781], [122.03613279064, 17.7277586067781]]]]}, "properties": {"taskId": 1220, "taskX": 6873, "taskY": 4506, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 17.8114560854767], [122.03613279064, 17.8532901110035], [122.080078103132, 17.8532901110035], [122.080078103132, 17.8114560854767], [122.03613279064, 17.8114560854767]]]]}, "properties": {"taskId": 1222, "taskX": 6873, "taskY": 4508, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 17.8532901110035], [122.03613279064, 17.8951143006479], [122.080078103132, 17.8951143006479], [122.080078103132, 17.8532901110035], [122.03613279064, 17.8532901110035]]]]}, "properties": {"taskId": 1223, "taskX": 6873, "taskY": 4509, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 17.8951143006479], [122.03613279064, 17.9369286344415], [122.080078103132, 17.9369286344415], [122.080078103132, 17.8951143006479], [122.03613279064, 17.8951143006479]]]]}, "properties": {"taskId": 1224, "taskX": 6873, "taskY": 4510, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 17.9369286344415], [122.03613279064, 17.9787330924414], [122.080078103132, 17.9787330924414], [122.080078103132, 17.9369286344415], [122.03613279064, 17.9369286344415]]]]}, "properties": {"taskId": 1225, "taskX": 6873, "taskY": 4511, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 17.9787330924414], [122.03613279064, 18.0205276547308], [122.080078103132, 18.0205276547308], [122.080078103132, 17.9787330924414], [122.03613279064, 17.9787330924414]]]]}, "properties": {"taskId": 1226, "taskX": 6873, "taskY": 4512, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.0205276547308], [122.03613279064, 18.0623123014185], [122.080078103132, 18.0623123014185], [122.080078103132, 18.0205276547308], [122.03613279064, 18.0205276547308]]]]}, "properties": {"taskId": 1227, "taskX": 6873, "taskY": 4513, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.0623123014185], [122.03613279064, 18.104087012639], [122.080078103132, 18.104087012639], [122.080078103132, 18.0623123014185], [122.03613279064, 18.0623123014185]]]]}, "properties": {"taskId": 1228, "taskX": 6873, "taskY": 4514, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.104087012639], [122.03613279064, 18.1458517685528], [122.080078103132, 18.1458517685528], [122.080078103132, 18.104087012639], [122.03613279064, 18.104087012639]]]]}, "properties": {"taskId": 1229, "taskX": 6873, "taskY": 4515, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.1458517685528], [122.03613279064, 18.1876065493462], [122.080078103132, 18.1876065493462], [122.080078103132, 18.1458517685528], [122.03613279064, 18.1458517685528]]]]}, "properties": {"taskId": 1230, "taskX": 6873, "taskY": 4516, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.1876065493462], [122.03613279064, 18.2293513352315], [122.080078103132, 18.2293513352315], [122.080078103132, 18.1876065493462], [122.03613279064, 18.1876065493462]]]]}, "properties": {"taskId": 1231, "taskX": 6873, "taskY": 4517, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.3545255259514], [122.03613279064, 18.3962301348468], [122.080078103132, 18.3962301348468], [122.080078103132, 18.3545255259514], [122.03613279064, 18.3545255259514]]]]}, "properties": {"taskId": 1235, "taskX": 6873, "taskY": 4521, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.4379246502857], [122.03613279064, 18.4796090526366], [122.080078103132, 18.4796090526366], [122.080078103132, 18.4379246502857], [122.03613279064, 18.4379246502857]]]]}, "properties": {"taskId": 1237, "taskX": 6873, "taskY": 4523, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.4796090526366], [122.03613279064, 18.5212833222942], [122.080078103132, 18.5212833222942], [122.080078103132, 18.4796090526366], [122.03613279064, 18.4796090526366]]]]}, "properties": {"taskId": 1238, "taskX": 6873, "taskY": 4524, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.5212833222942], [122.03613279064, 18.5629474396796], [122.080078103132, 18.5629474396796], [122.080078103132, 18.5212833222942], [122.03613279064, 18.5212833222942]]]]}, "properties": {"taskId": 1239, "taskX": 6873, "taskY": 4525, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.5629474396796], [122.03613279064, 18.6046013852398], [122.080078103132, 18.6046013852398], [122.080078103132, 18.5629474396796], [122.03613279064, 18.5629474396796]]]]}, "properties": {"taskId": 1240, "taskX": 6873, "taskY": 4526, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.6046013852398], [122.03613279064, 18.6462451394485], [122.080078103132, 18.6462451394485], [122.080078103132, 18.6046013852398], [122.03613279064, 18.6046013852398]]]]}, "properties": {"taskId": 1241, "taskX": 6873, "taskY": 4527, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.6878786828054], [122.03613279064, 18.7295019958367], [122.080078103132, 18.7295019958367], [122.080078103132, 18.6878786828054], [122.03613279064, 18.6878786828054]]]]}, "properties": {"taskId": 1243, "taskX": 6873, "taskY": 4529, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.7295019958367], [122.03613279064, 18.7711150590949], [122.080078103132, 18.7711150590949], [122.080078103132, 18.7295019958367], [122.03613279064, 18.7295019958367]]]]}, "properties": {"taskId": 1244, "taskX": 6873, "taskY": 4530, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.7711150590949], [122.03613279064, 18.812717853159], [122.080078103132, 18.812717853159], [122.080078103132, 18.7711150590949], [122.03613279064, 18.7711150590949]]]]}, "properties": {"taskId": 1245, "taskX": 6873, "taskY": 4531, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.8543103586344], [122.03613279064, 18.895892556153], [122.080078103132, 18.895892556153], [122.080078103132, 18.8543103586344], [122.03613279064, 18.8543103586344]]]]}, "properties": {"taskId": 1247, "taskX": 6873, "taskY": 4533, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.052764843408, 18.97902594998], [122.052864750467, 18.9776088057538], [122.073239121456, 18.9374644263732], [122.03613279064, 18.9374644263732], [122.03613279064, 18.97902594998], [122.052764843408, 18.97902594998]]]]}, "properties": {"taskId": 1249, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.049835155909, 19.0205771076849], [122.052764843408, 18.97902594998], [122.03613279064, 18.97902594998], [122.03613279064, 19.0205771076849], [122.049835155909, 19.0205771076849]]]]}, "properties": {"taskId": 1250, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.04690546841, 19.0621178802261], [122.049835155909, 19.0205771076849], [122.03613279064, 19.0205771076849], [122.03613279064, 19.0621178802261], [122.04690546841, 19.0621178802261]]]]}, "properties": {"taskId": 1251, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.04397578091, 19.1036482483685], [122.04690546841, 19.0621178802261], [122.03613279064, 19.0621178802261], [122.03613279064, 19.1036482483685], [122.04397578091, 19.1036482483685]]]]}, "properties": {"taskId": 1252, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.041046093411, 19.1451681929035], [122.04397578091, 19.1036482483685], [122.03613279064, 19.1036482483685], [122.03613279064, 19.1451681929035], [122.041046093411, 19.1451681929035]]]]}, "properties": {"taskId": 1253, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.038116405911, 19.1866776946495], [122.041046093411, 19.1451681929035], [122.03613279064, 19.1451681929035], [122.03613279064, 19.1866776946495], [122.038116405911, 19.1866776946495]]]]}, "properties": {"taskId": 1254, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 19.2147767609426], [122.038116405911, 19.1866776946495], [122.03613279064, 19.1866776946495], [122.03613279064, 19.2147767609426]]]]}, "properties": {"taskId": 1255, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.041617512548, 19.3526108910439], [122.03613279064, 19.3200803802393], [122.03613279064, 19.3526108910439], [122.041617512548, 19.3526108910439]]]]}, "properties": {"taskId": 1256, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.055600182635, 19.43551433575], [122.048608847591, 19.3940678920553], [122.03613279064, 19.3940678920553], [122.03613279064, 19.43551433575], [122.055600182635, 19.43551433575]]]]}, "properties": {"taskId": 1258, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.062591517678, 19.476950203134], [122.055600182635, 19.43551433575], [122.03613279064, 19.43551433575], [122.03613279064, 19.476950203134], [122.062591517678, 19.476950203134]]]]}, "properties": {"taskId": 1259, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.069582852721, 19.5183754752406], [122.062591517678, 19.476950203134], [122.03613279064, 19.476950203134], [122.03613279064, 19.5183754752406], [122.069582852721, 19.5183754752406]]]]}, "properties": {"taskId": 1260, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.076574187765, 19.5597901331299], [122.069582852721, 19.5183754752406], [122.03613279064, 19.5183754752406], [122.03613279064, 19.5597901331299], [122.076574187765, 19.5597901331299]]]]}, "properties": {"taskId": 1261, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 19.5805423211476], [122.076574187765, 19.5597901331299], [122.03613279064, 19.5597901331299], [122.03613279064, 19.6011941578891], [122.080078103132, 19.6011941578891], [122.080078103132, 19.5805423211476]]]]}, "properties": {"taskId": 1262, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 19.6011941578891], [122.03613279064, 19.6425875306324], [122.080078103132, 19.6425875306324], [122.080078103132, 19.6011941578891], [122.03613279064, 19.6011941578891]]]]}, "properties": {"taskId": 1263, "taskX": 6873, "taskY": 4551, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 19.6425875306324], [122.03613279064, 19.6839702325013], [122.080078103132, 19.6839702325013], [122.080078103132, 19.6425875306324], [122.03613279064, 19.6425875306324]]]]}, "properties": {"taskId": 1264, "taskX": 6873, "taskY": 4552, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 19.6839702325013], [122.03613279064, 19.7253422446642], [122.080078103132, 19.7253422446642], [122.080078103132, 19.6839702325013], [122.03613279064, 19.6839702325013]]]]}, "properties": {"taskId": 1265, "taskX": 6873, "taskY": 4553, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 19.7253422446642], [122.03613279064, 19.7667035483167], [122.080078103132, 19.7667035483167], [122.080078103132, 19.7253422446642], [122.03613279064, 19.7253422446642]]]]}, "properties": {"taskId": 1266, "taskX": 6873, "taskY": 4554, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 19.7667035483167], [122.03613279064, 19.8080541246818], [122.080078103132, 19.8080541246818], [122.080078103132, 19.7667035483167], [122.03613279064, 19.7667035483167]]]]}, "properties": {"taskId": 1267, "taskX": 6873, "taskY": 4555, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 19.8080541246818], [122.03613279064, 19.8493939550095], [122.080078103132, 19.8493939550095], [122.080078103132, 19.8080541246818], [122.03613279064, 19.8080541246818]]]]}, "properties": {"taskId": 1268, "taskX": 6873, "taskY": 4556, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 19.8493939550095], [122.03613279064, 19.8907230205771], [122.080078103132, 19.8907230205771], [122.080078103132, 19.8493939550095], [122.03613279064, 19.8493939550095]]]]}, "properties": {"taskId": 1269, "taskX": 6873, "taskY": 4557, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 19.9320413026892], [122.03613279064, 19.9733487826778], [122.080078103132, 19.9733487826778], [122.080078103132, 19.9320413026892], [122.03613279064, 19.9320413026892]]]]}, "properties": {"taskId": 1271, "taskX": 6873, "taskY": 4559, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 19.9733487826778], [122.03613279064, 20.014645441902], [122.080078103132, 20.014645441902], [122.080078103132, 19.9733487826778], [122.03613279064, 19.9733487826778]]]]}, "properties": {"taskId": 1272, "taskX": 6873, "taskY": 4560, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 20.014645441902], [122.03613279064, 20.0559312617487], [122.080078103132, 20.0559312617487], [122.080078103132, 20.014645441902], [122.03613279064, 20.014645441902]]]]}, "properties": {"taskId": 1273, "taskX": 6873, "taskY": 4561, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 20.0559312617487], [122.03613279064, 20.0972062236316], [122.080078103132, 20.0972062236316], [122.080078103132, 20.0559312617487], [122.03613279064, 20.0559312617487]]]]}, "properties": {"taskId": 1274, "taskX": 6873, "taskY": 4562, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 20.0972062236316], [122.03613279064, 20.1384703089924], [122.080078103132, 20.1384703089924], [122.080078103132, 20.0972062236316], [122.03613279064, 20.0972062236316]]]]}, "properties": {"taskId": 1275, "taskX": 6873, "taskY": 4563, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 20.1384703089924], [122.03613279064, 20.1797234992999], [122.080078103132, 20.1797234992999], [122.080078103132, 20.1384703089924], [122.03613279064, 20.1384703089924]]]]}, "properties": {"taskId": 1276, "taskX": 6873, "taskY": 4564, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 20.1797234992999], [122.03613279064, 20.2209657760506], [122.080078103132, 20.2209657760506], [122.080078103132, 20.1797234992999], [122.03613279064, 20.1797234992999]]]]}, "properties": {"taskId": 1277, "taskX": 6873, "taskY": 4565, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 20.2209657760506], [122.03613279064, 20.2621971207684], [122.080078103132, 20.2621971207684], [122.080078103132, 20.2209657760506], [122.03613279064, 20.2209657760506]]]]}, "properties": {"taskId": 1278, "taskX": 6873, "taskY": 4566, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 20.2621971207684], [122.03613279064, 20.3034175150047], [122.080078103132, 20.3034175150047], [122.080078103132, 20.2621971207684], [122.03613279064, 20.2621971207684]]]]}, "properties": {"taskId": 1279, "taskX": 6873, "taskY": 4567, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 20.3034175150047], [122.03613279064, 20.3446269403386], [122.080078103132, 20.3446269403386], [122.080078103132, 20.3034175150047], [122.03613279064, 20.3034175150047]]]]}, "properties": {"taskId": 1280, "taskX": 6873, "taskY": 4568, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 20.3858253783768], [122.03613279064, 20.4270128107534], [122.080078103132, 20.4270128107534], [122.080078103132, 20.3858253783768], [122.03613279064, 20.3858253783768]]]]}, "properties": {"taskId": 1282, "taskX": 6873, "taskY": 4570, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 20.4270128107534], [122.03613279064, 20.4681892191306], [122.080078103132, 20.4681892191306], [122.080078103132, 20.4270128107534], [122.03613279064, 20.4270128107534]]]]}, "properties": {"taskId": 1283, "taskX": 6873, "taskY": 4571, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 20.4681892191306], [122.03613279064, 20.5093545851978], [122.080078103132, 20.5093545851978], [122.080078103132, 20.4681892191306], [122.03613279064, 20.4681892191306]]]]}, "properties": {"taskId": 1284, "taskX": 6873, "taskY": 4572, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.045720150141, 20.5916521172995], [122.063066977054, 20.5505088906724], [122.03613279064, 20.5505088906724], [122.03613279064, 20.5916521172995], [122.045720150141, 20.5916521172995]]]]}, "properties": {"taskId": 1286, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 20.6143866687216], [122.045720150141, 20.5916521172995], [122.03613279064, 20.5916521172995], [122.03613279064, 20.6143866687216]]]]}, "properties": {"taskId": 1287, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.036159486146, 21.0434912132036], [122.03613279064, 21.0432812123574], [122.03613279064, 21.0434912132036], [122.036159486146, 21.0434912132036]]]]}, "properties": {"taskId": 1288, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.041373294016, 21.0845000799111], [122.036159486146, 21.0434912132036], [122.03613279064, 21.0434912132036], [122.03613279064, 21.0845000799111], [122.041373294016, 21.0845000799111]]]]}, "properties": {"taskId": 1289, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 17.5002903920624], [122.080078103132, 17.4971272615672], [122.080078103132, 17.518344184812], [122.124023415624, 17.518344184812], [122.124023415624, 17.5002903920624]]]]}, "properties": {"taskId": 1291, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 17.518344184812], [122.080078103132, 17.5602465002479], [122.124023415624, 17.5602465002479], [122.124023415624, 17.518344184812], [122.080078103132, 17.518344184812]]]]}, "properties": {"taskId": 1292, "taskX": 6874, "taskY": 4501, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 17.5602465002479], [122.080078103132, 17.602139120297], [122.124023415624, 17.602139120297], [122.124023415624, 17.5602465002479], [122.080078103132, 17.5602465002479]]]]}, "properties": {"taskId": 1293, "taskX": 6874, "taskY": 4502, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 17.602139120297], [122.080078103132, 17.6440220248121], [122.124023415624, 17.6440220248121], [122.124023415624, 17.602139120297], [122.080078103132, 17.602139120297]]]]}, "properties": {"taskId": 1294, "taskX": 6874, "taskY": 4503, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 17.6858951936713], [122.080078103132, 17.7277586067781], [122.124023415624, 17.7277586067781], [122.124023415624, 17.6858951936713], [122.080078103132, 17.6858951936713]]]]}, "properties": {"taskId": 1296, "taskX": 6874, "taskY": 4505, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 17.7277586067781], [122.080078103132, 17.7696122440617], [122.124023415624, 17.7696122440617], [122.124023415624, 17.7277586067781], [122.080078103132, 17.7277586067781]]]]}, "properties": {"taskId": 1297, "taskX": 6874, "taskY": 4506, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 17.7696122440617], [122.080078103132, 17.8114560854767], [122.124023415624, 17.8114560854767], [122.124023415624, 17.7696122440617], [122.080078103132, 17.7696122440617]]]]}, "properties": {"taskId": 1298, "taskX": 6874, "taskY": 4507, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 17.8114560854767], [122.080078103132, 17.8532901110035], [122.124023415624, 17.8532901110035], [122.124023415624, 17.8114560854767], [122.080078103132, 17.8114560854767]]]]}, "properties": {"taskId": 1299, "taskX": 6874, "taskY": 4508, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 17.8532901110035], [122.080078103132, 17.8951143006479], [122.124023415624, 17.8951143006479], [122.124023415624, 17.8532901110035], [122.080078103132, 17.8532901110035]]]]}, "properties": {"taskId": 1300, "taskX": 6874, "taskY": 4509, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 17.8951143006479], [122.080078103132, 17.9369286344415], [122.124023415624, 17.9369286344415], [122.124023415624, 17.8951143006479], [122.080078103132, 17.8951143006479]]]]}, "properties": {"taskId": 1301, "taskX": 6874, "taskY": 4510, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 17.9369286344415], [122.080078103132, 17.9787330924414], [122.124023415624, 17.9787330924414], [122.124023415624, 17.9369286344415], [122.080078103132, 17.9369286344415]]]]}, "properties": {"taskId": 1302, "taskX": 6874, "taskY": 4511, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 17.9787330924414], [122.080078103132, 18.0205276547308], [122.124023415624, 18.0205276547308], [122.124023415624, 17.9787330924414], [122.080078103132, 17.9787330924414]]]]}, "properties": {"taskId": 1303, "taskX": 6874, "taskY": 4512, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 18.0205276547308], [122.080078103132, 18.0623123014185], [122.124023415624, 18.0623123014185], [122.124023415624, 18.0205276547308], [122.080078103132, 18.0205276547308]]]]}, "properties": {"taskId": 1304, "taskX": 6874, "taskY": 4513, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 18.0623123014185], [122.080078103132, 18.104087012639], [122.124023415624, 18.104087012639], [122.124023415624, 18.0623123014185], [122.080078103132, 18.0623123014185]]]]}, "properties": {"taskId": 1305, "taskX": 6874, "taskY": 4514, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 18.104087012639], [122.080078103132, 18.1458517685528], [122.124023415624, 18.1458517685528], [122.124023415624, 18.104087012639], [122.080078103132, 18.104087012639]]]]}, "properties": {"taskId": 1306, "taskX": 6874, "taskY": 4515, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 18.1458517685528], [122.080078103132, 18.1876065493462], [122.124023415624, 18.1876065493462], [122.124023415624, 18.1458517685528], [122.080078103132, 18.1458517685528]]]]}, "properties": {"taskId": 1307, "taskX": 6874, "taskY": 4516, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 18.1876065493462], [122.080078103132, 18.2293513352315], [122.124023415624, 18.2293513352315], [122.124023415624, 18.1876065493462], [122.080078103132, 18.1876065493462]]]]}, "properties": {"taskId": 1308, "taskX": 6874, "taskY": 4517, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 18.2293513352315], [122.080078103132, 18.271086106447], [122.124023415624, 18.271086106447], [122.124023415624, 18.2293513352315], [122.080078103132, 18.2293513352315]]]]}, "properties": {"taskId": 1309, "taskX": 6874, "taskY": 4518, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 18.3962301348468], [122.080078103132, 18.4379246502857], [122.124023415624, 18.4379246502857], [122.124023415624, 18.3962301348468], [122.080078103132, 18.3962301348468]]]]}, "properties": {"taskId": 1313, "taskX": 6874, "taskY": 4522, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 18.4796090526366], [122.080078103132, 18.5212833222942], [122.124023415624, 18.5212833222942], [122.124023415624, 18.4796090526366], [122.080078103132, 18.4796090526366]]]]}, "properties": {"taskId": 1315, "taskX": 6874, "taskY": 4524, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 18.5212833222942], [122.080078103132, 18.5629474396796], [122.124023415624, 18.5629474396796], [122.124023415624, 18.5212833222942], [122.080078103132, 18.5212833222942]]]]}, "properties": {"taskId": 1316, "taskX": 6874, "taskY": 4525, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 18.5629474396796], [122.080078103132, 18.6046013852398], [122.124023415624, 18.6046013852398], [122.124023415624, 18.5629474396796], [122.080078103132, 18.5629474396796]]]]}, "properties": {"taskId": 1317, "taskX": 6874, "taskY": 4526, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 18.6046013852398], [122.080078103132, 18.6462451394485], [122.124023415624, 18.6462451394485], [122.124023415624, 18.6046013852398], [122.080078103132, 18.6046013852398]]]]}, "properties": {"taskId": 1318, "taskX": 6874, "taskY": 4527, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 18.6462451394485], [122.080078103132, 18.6878786828054], [122.124023415624, 18.6878786828054], [122.124023415624, 18.6462451394485], [122.080078103132, 18.6462451394485]]]]}, "properties": {"taskId": 1319, "taskX": 6874, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 18.6878786828054], [122.080078103132, 18.7295019958367], [122.124023415624, 18.7295019958367], [122.124023415624, 18.6878786828054], [122.080078103132, 18.6878786828054]]]]}, "properties": {"taskId": 1320, "taskX": 6874, "taskY": 4529, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 18.7295019958367], [122.080078103132, 18.7711150590949], [122.124023415624, 18.7711150590949], [122.124023415624, 18.7295019958367], [122.080078103132, 18.7295019958367]]]]}, "properties": {"taskId": 1321, "taskX": 6874, "taskY": 4530, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 18.7711150590949], [122.080078103132, 18.812717853159], [122.124023415624, 18.812717853159], [122.124023415624, 18.7711150590949], [122.080078103132, 18.7711150590949]]]]}, "properties": {"taskId": 1322, "taskX": 6874, "taskY": 4531, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.11542652167, 18.8543103586344], [122.124023415624, 18.8373602678447], [122.124023415624, 18.812717853159], [122.080078103132, 18.812717853159], [122.080078103132, 18.8543103586344], [122.11542652167, 18.8543103586344]]]]}, "properties": {"taskId": 1323, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.094332821563, 18.895892556153], [122.11542652167, 18.8543103586344], [122.080078103132, 18.8543103586344], [122.080078103132, 18.895892556153], [122.094332821563, 18.895892556153]]]]}, "properties": {"taskId": 1324, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 18.9239871621806], [122.094332821563, 18.895892556153], [122.080078103132, 18.895892556153], [122.080078103132, 18.9239871621806]]]]}, "properties": {"taskId": 1325, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.099413002675, 19.6425875306324], [122.085046300121, 19.6011941578891], [122.080078103132, 19.6011941578891], [122.080078103132, 19.6425875306324], [122.099413002675, 19.6425875306324]]]]}, "properties": {"taskId": 1327, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.113779705229, 19.6839702325013], [122.099413002675, 19.6425875306324], [122.080078103132, 19.6425875306324], [122.080078103132, 19.6839702325013], [122.113779705229, 19.6839702325013]]]]}, "properties": {"taskId": 1328, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 19.7253422446642], [122.080078103132, 19.7667035483167], [122.124023415624, 19.7667035483167], [122.124023415624, 19.7253422446642], [122.080078103132, 19.7253422446642]]]]}, "properties": {"taskId": 1330, "taskX": 6874, "taskY": 4554, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 19.7667035483167], [122.080078103132, 19.8080541246818], [122.124023415624, 19.8080541246818], [122.124023415624, 19.7667035483167], [122.080078103132, 19.7667035483167]]]]}, "properties": {"taskId": 1331, "taskX": 6874, "taskY": 4555, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 19.8080541246818], [122.080078103132, 19.8493939550095], [122.124023415624, 19.8493939550095], [122.124023415624, 19.8080541246818], [122.080078103132, 19.8080541246818]]]]}, "properties": {"taskId": 1332, "taskX": 6874, "taskY": 4556, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 19.8493939550095], [122.080078103132, 19.8907230205771], [122.124023415624, 19.8907230205771], [122.124023415624, 19.8493939550095], [122.080078103132, 19.8493939550095]]]]}, "properties": {"taskId": 1333, "taskX": 6874, "taskY": 4557, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 19.8907230205771], [122.080078103132, 19.9320413026892], [122.124023415624, 19.9320413026892], [122.124023415624, 19.8907230205771], [122.080078103132, 19.8907230205771]]]]}, "properties": {"taskId": 1334, "taskX": 6874, "taskY": 4558, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 19.9733487826778], [122.080078103132, 20.014645441902], [122.124023415624, 20.014645441902], [122.124023415624, 19.9733487826778], [122.080078103132, 19.9733487826778]]]]}, "properties": {"taskId": 1336, "taskX": 6874, "taskY": 4560, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 20.014645441902], [122.080078103132, 20.0559312617487], [122.124023415624, 20.0559312617487], [122.124023415624, 20.014645441902], [122.080078103132, 20.014645441902]]]]}, "properties": {"taskId": 1337, "taskX": 6874, "taskY": 4561, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 20.0559312617487], [122.080078103132, 20.0972062236316], [122.124023415624, 20.0972062236316], [122.124023415624, 20.0559312617487], [122.080078103132, 20.0559312617487]]]]}, "properties": {"taskId": 1338, "taskX": 6874, "taskY": 4562, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 20.0972062236316], [122.080078103132, 20.1384703089924], [122.124023415624, 20.1384703089924], [122.124023415624, 20.0972062236316], [122.080078103132, 20.0972062236316]]]]}, "properties": {"taskId": 1339, "taskX": 6874, "taskY": 4563, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.120277427117, 20.2209657760506], [122.123143426709, 20.1797234992999], [122.080078103132, 20.1797234992999], [122.080078103132, 20.2209657760506], [122.120277427117, 20.2209657760506]]]]}, "properties": {"taskId": 1341, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.117411427526, 20.2621971207684], [122.120277427117, 20.2209657760506], [122.080078103132, 20.2209657760506], [122.080078103132, 20.2621971207684], [122.117411427526, 20.2621971207684]]]]}, "properties": {"taskId": 1342, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.114545427935, 20.3034175150047], [122.117411427526, 20.2621971207684], [122.080078103132, 20.2621971207684], [122.080078103132, 20.3034175150047], [122.114545427935, 20.3034175150047]]]]}, "properties": {"taskId": 1343, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.111679428343, 20.3446269403386], [122.114545427935, 20.3034175150047], [122.080078103132, 20.3034175150047], [122.080078103132, 20.3446269403386], [122.111679428343, 20.3446269403386]]]]}, "properties": {"taskId": 1344, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.108813428752, 20.3858253783768], [122.111679428343, 20.3446269403386], [122.080078103132, 20.3446269403386], [122.080078103132, 20.3858253783768], [122.108813428752, 20.3858253783768]]]]}, "properties": {"taskId": 1345, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.09776063088, 20.4681892191306], [122.104134505234, 20.4530607457274], [122.10594742916, 20.4270128107534], [122.080078103132, 20.4270128107534], [122.080078103132, 20.4681892191306], [122.09776063088, 20.4681892191306]]]]}, "properties": {"taskId": 1347, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080413803967, 20.5093545851978], [122.09776063088, 20.4681892191306], [122.080078103132, 20.4681892191306], [122.080078103132, 20.5093545851978], [122.080413803967, 20.5093545851978]]]]}, "properties": {"taskId": 1348, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 20.5101511202861], [122.080413803967, 20.5093545851978], [122.080078103132, 20.5093545851978], [122.080078103132, 20.5101511202861]]]]}, "properties": {"taskId": 1349, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 17.5034534674978], [122.124023415624, 17.5002903920624], [122.124023415624, 17.518344184812], [122.167968728117, 17.518344184812], [122.167968728117, 17.5034534674978]]]]}, "properties": {"taskId": 1350, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 17.518344184812], [122.124023415624, 17.5602465002479], [122.167968728117, 17.5602465002479], [122.167968728117, 17.518344184812], [122.124023415624, 17.518344184812]]]]}, "properties": {"taskId": 1351, "taskX": 6875, "taskY": 4501, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 17.5602465002479], [122.124023415624, 17.602139120297], [122.167968728117, 17.602139120297], [122.167968728117, 17.5602465002479], [122.124023415624, 17.5602465002479]]]]}, "properties": {"taskId": 1352, "taskX": 6875, "taskY": 4502, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 17.602139120297], [122.124023415624, 17.6440220248121], [122.167968728117, 17.6440220248121], [122.167968728117, 17.602139120297], [122.124023415624, 17.602139120297]]]]}, "properties": {"taskId": 1353, "taskX": 6875, "taskY": 4503, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 17.6440220248121], [122.124023415624, 17.6858951936713], [122.167968728117, 17.6858951936713], [122.167968728117, 17.6440220248121], [122.124023415624, 17.6440220248121]]]]}, "properties": {"taskId": 1354, "taskX": 6875, "taskY": 4504, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 17.6858951936713], [122.124023415624, 17.7277586067781], [122.167968728117, 17.7277586067781], [122.167968728117, 17.6858951936713], [122.124023415624, 17.6858951936713]]]]}, "properties": {"taskId": 1355, "taskX": 6875, "taskY": 4505, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 17.7277586067781], [122.124023415624, 17.7696122440617], [122.167968728117, 17.7696122440617], [122.167968728117, 17.7277586067781], [122.124023415624, 17.7277586067781]]]]}, "properties": {"taskId": 1356, "taskX": 6875, "taskY": 4506, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 17.7696122440617], [122.124023415624, 17.8114560854767], [122.167968728117, 17.8114560854767], [122.167968728117, 17.7696122440617], [122.124023415624, 17.7696122440617]]]]}, "properties": {"taskId": 1357, "taskX": 6875, "taskY": 4507, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 17.8951143006479], [122.124023415624, 17.9369286344415], [122.167968728117, 17.9369286344415], [122.167968728117, 17.8951143006479], [122.124023415624, 17.8951143006479]]]]}, "properties": {"taskId": 1360, "taskX": 6875, "taskY": 4510, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 17.9369286344415], [122.124023415624, 17.9787330924414], [122.167968728117, 17.9787330924414], [122.167968728117, 17.9369286344415], [122.124023415624, 17.9369286344415]]]]}, "properties": {"taskId": 1361, "taskX": 6875, "taskY": 4511, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 17.9787330924414], [122.124023415624, 18.0205276547308], [122.167968728117, 18.0205276547308], [122.167968728117, 17.9787330924414], [122.124023415624, 17.9787330924414]]]]}, "properties": {"taskId": 1362, "taskX": 6875, "taskY": 4512, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 18.0205276547308], [122.124023415624, 18.0623123014185], [122.167968728117, 18.0623123014185], [122.167968728117, 18.0205276547308], [122.124023415624, 18.0205276547308]]]]}, "properties": {"taskId": 1363, "taskX": 6875, "taskY": 4513, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 18.0623123014185], [122.124023415624, 18.104087012639], [122.167968728117, 18.104087012639], [122.167968728117, 18.0623123014185], [122.124023415624, 18.0623123014185]]]]}, "properties": {"taskId": 1364, "taskX": 6875, "taskY": 4514, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 18.104087012639], [122.124023415624, 18.1458517685528], [122.167968728117, 18.1458517685528], [122.167968728117, 18.104087012639], [122.124023415624, 18.104087012639]]]]}, "properties": {"taskId": 1365, "taskX": 6875, "taskY": 4515, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 18.1458517685528], [122.124023415624, 18.1876065493462], [122.167968728117, 18.1876065493462], [122.167968728117, 18.1458517685528], [122.124023415624, 18.1458517685528]]]]}, "properties": {"taskId": 1366, "taskX": 6875, "taskY": 4516, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 18.1876065493462], [122.124023415624, 18.2293513352315], [122.167968728117, 18.2293513352315], [122.167968728117, 18.1876065493462], [122.124023415624, 18.1876065493462]]]]}, "properties": {"taskId": 1367, "taskX": 6875, "taskY": 4517, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 18.2293513352315], [122.124023415624, 18.271086106447], [122.167968728117, 18.271086106447], [122.167968728117, 18.2293513352315], [122.124023415624, 18.2293513352315]]]]}, "properties": {"taskId": 1368, "taskX": 6875, "taskY": 4518, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 18.271086106447], [122.124023415624, 18.3128108432568], [122.167968728117, 18.3128108432568], [122.167968728117, 18.271086106447], [122.124023415624, 18.271086106447]]]]}, "properties": {"taskId": 1369, "taskX": 6875, "taskY": 4519, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 18.3128108432568], [122.124023415624, 18.3545255259514], [122.167968728117, 18.3545255259514], [122.167968728117, 18.3128108432568], [122.124023415624, 18.3128108432568]]]]}, "properties": {"taskId": 1370, "taskX": 6875, "taskY": 4520, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 18.5212833222942], [122.124023415624, 18.5629474396796], [122.167968728117, 18.5629474396796], [122.167968728117, 18.5212833222942], [122.124023415624, 18.5212833222942]]]]}, "properties": {"taskId": 1375, "taskX": 6875, "taskY": 4525, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 18.5629474396796], [122.124023415624, 18.6046013852398], [122.167968728117, 18.6046013852398], [122.167968728117, 18.5629474396796], [122.124023415624, 18.5629474396796]]]]}, "properties": {"taskId": 1376, "taskX": 6875, "taskY": 4526, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 18.6046013852398], [122.124023415624, 18.6462451394485], [122.167968728117, 18.6462451394485], [122.167968728117, 18.6046013852398], [122.124023415624, 18.6046013852398]]]]}, "properties": {"taskId": 1377, "taskX": 6875, "taskY": 4527, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 18.6462451394485], [122.124023415624, 18.6878786828054], [122.167968728117, 18.6878786828054], [122.167968728117, 18.6462451394485], [122.124023415624, 18.6462451394485]]]]}, "properties": {"taskId": 1378, "taskX": 6875, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.157613921885, 18.7711150590949], [122.167968728117, 18.7506886681802], [122.167968728117, 18.7295019958367], [122.124023415624, 18.7295019958367], [122.124023415624, 18.7711150590949], [122.157613921885, 18.7711150590949]]]]}, "properties": {"taskId": 1380, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 18.8373602678447], [122.136520221778, 18.812717853159], [122.124023415624, 18.812717853159], [122.124023415624, 18.8373602678447]]]]}, "properties": {"taskId": 1382, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.128146407784, 19.7253422446642], [122.124023415624, 19.7134702961282], [122.124023415624, 19.7253422446642], [122.128146407784, 19.7253422446642]]]]}, "properties": {"taskId": 1383, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.142513110338, 19.7667035483167], [122.128146407784, 19.7253422446642], [122.124023415624, 19.7253422446642], [122.124023415624, 19.7667035483167], [122.142513110338, 19.7667035483167]]]]}, "properties": {"taskId": 1384, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.156879812892, 19.8080541246818], [122.142513110338, 19.7667035483167], [122.124023415624, 19.7667035483167], [122.124023415624, 19.8080541246818], [122.156879812892, 19.8080541246818]]]]}, "properties": {"taskId": 1385, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 19.8399631504058], [122.156879812892, 19.8080541246818], [122.124023415624, 19.8080541246818], [122.124023415624, 19.8493939550095], [122.167968728117, 19.8493939550095], [122.167968728117, 19.8399631504058]]]]}, "properties": {"taskId": 1386, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 19.8907230205771], [122.124023415624, 19.9320413026892], [122.167968728117, 19.9320413026892], [122.167968728117, 19.8907230205771], [122.124023415624, 19.8907230205771]]]]}, "properties": {"taskId": 1388, "taskX": 6875, "taskY": 4558, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 19.9320413026892], [122.124023415624, 19.9733487826778], [122.167968728117, 19.9733487826778], [122.167968728117, 19.9320413026892], [122.124023415624, 19.9320413026892]]]]}, "properties": {"taskId": 1389, "taskX": 6875, "taskY": 4559, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 19.9733487826778], [122.124023415624, 20.014645441902], [122.167968728117, 20.014645441902], [122.167968728117, 19.9733487826778], [122.124023415624, 19.9733487826778]]]]}, "properties": {"taskId": 1390, "taskX": 6875, "taskY": 4560, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.161303812453, 20.0559312617487], [122.167968728117, 20.0405631865881], [122.167968728117, 20.014645441902], [122.124023415624, 20.014645441902], [122.124023415624, 20.0559312617487], [122.161303812453, 20.0559312617487]]]]}, "properties": {"taskId": 1391, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.1260094263, 20.1384703089924], [122.126107161484, 20.137063316815], [122.143400216294, 20.0972062236316], [122.124023415624, 20.0972062236316], [122.124023415624, 20.1384703089924], [122.1260094263, 20.1384703089924]]]]}, "properties": {"taskId": 1393, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 20.1670581014219], [122.1260094263, 20.1384703089924], [122.124023415624, 20.1384703089924], [122.124023415624, 20.1670581014219]]]]}, "properties": {"taskId": 1394, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.211914040609, 17.5066164878649], [122.167968728117, 17.5034534674978], [122.167968728117, 17.518344184812], [122.211914040609, 17.518344184812], [122.211914040609, 17.5066164878649]]]]}, "properties": {"taskId": 1395, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 17.518344184812], [122.167968728117, 17.5602465002479], [122.211914040609, 17.5602465002479], [122.211914040609, 17.518344184812], [122.167968728117, 17.518344184812]]]]}, "properties": {"taskId": 1396, "taskX": 6876, "taskY": 4501, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 17.5602465002479], [122.167968728117, 17.602139120297], [122.211914040609, 17.602139120297], [122.211914040609, 17.5602465002479], [122.167968728117, 17.5602465002479]]]]}, "properties": {"taskId": 1397, "taskX": 6876, "taskY": 4502, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 17.602139120297], [122.167968728117, 17.6440220248121], [122.211914040609, 17.6440220248121], [122.211914040609, 17.602139120297], [122.167968728117, 17.602139120297]]]]}, "properties": {"taskId": 1398, "taskX": 6876, "taskY": 4503, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 17.6440220248121], [122.167968728117, 17.6858951936713], [122.211914040609, 17.6858951936713], [122.211914040609, 17.6440220248121], [122.167968728117, 17.6440220248121]]]]}, "properties": {"taskId": 1399, "taskX": 6876, "taskY": 4504, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 17.6858951936713], [122.167968728117, 17.7277586067781], [122.211914040609, 17.7277586067781], [122.211914040609, 17.6858951936713], [122.167968728117, 17.6858951936713]]]]}, "properties": {"taskId": 1400, "taskX": 6876, "taskY": 4505, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 17.7277586067781], [122.167968728117, 17.7696122440617], [122.211914040609, 17.7696122440617], [122.211914040609, 17.7277586067781], [122.167968728117, 17.7277586067781]]]]}, "properties": {"taskId": 1401, "taskX": 6876, "taskY": 4506, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 17.7696122440617], [122.167968728117, 17.8114560854767], [122.211914040609, 17.8114560854767], [122.211914040609, 17.7696122440617], [122.167968728117, 17.7696122440617]]]]}, "properties": {"taskId": 1402, "taskX": 6876, "taskY": 4507, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 17.8114560854767], [122.167968728117, 17.8532901110035], [122.211914040609, 17.8532901110035], [122.211914040609, 17.8114560854767], [122.167968728117, 17.8114560854767]]]]}, "properties": {"taskId": 1403, "taskX": 6876, "taskY": 4508, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 17.8532901110035], [122.167968728117, 17.8951143006479], [122.211914040609, 17.8951143006479], [122.211914040609, 17.8532901110035], [122.167968728117, 17.8532901110035]]]]}, "properties": {"taskId": 1404, "taskX": 6876, "taskY": 4509, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 17.8951143006479], [122.167968728117, 17.9369286344415], [122.211914040609, 17.9369286344415], [122.211914040609, 17.8951143006479], [122.167968728117, 17.8951143006479]]]]}, "properties": {"taskId": 1405, "taskX": 6876, "taskY": 4510, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 17.9369286344415], [122.167968728117, 17.9787330924414], [122.211914040609, 17.9787330924414], [122.211914040609, 17.9369286344415], [122.167968728117, 17.9369286344415]]]]}, "properties": {"taskId": 1406, "taskX": 6876, "taskY": 4511, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 17.9787330924414], [122.167968728117, 18.0205276547308], [122.211914040609, 18.0205276547308], [122.211914040609, 17.9787330924414], [122.167968728117, 17.9787330924414]]]]}, "properties": {"taskId": 1407, "taskX": 6876, "taskY": 4512, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 18.0205276547308], [122.167968728117, 18.0623123014185], [122.211914040609, 18.0623123014185], [122.211914040609, 18.0205276547308], [122.167968728117, 18.0205276547308]]]]}, "properties": {"taskId": 1408, "taskX": 6876, "taskY": 4513, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 18.0623123014185], [122.167968728117, 18.104087012639], [122.211914040609, 18.104087012639], [122.211914040609, 18.0623123014185], [122.167968728117, 18.0623123014185]]]]}, "properties": {"taskId": 1409, "taskX": 6876, "taskY": 4514, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 18.104087012639], [122.167968728117, 18.1458517685528], [122.211914040609, 18.1458517685528], [122.211914040609, 18.104087012639], [122.167968728117, 18.104087012639]]]]}, "properties": {"taskId": 1410, "taskX": 6876, "taskY": 4515, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 18.1458517685528], [122.167968728117, 18.1876065493462], [122.211914040609, 18.1876065493462], [122.211914040609, 18.1458517685528], [122.167968728117, 18.1458517685528]]]]}, "properties": {"taskId": 1411, "taskX": 6876, "taskY": 4516, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 18.1876065493462], [122.167968728117, 18.2293513352315], [122.211914040609, 18.2293513352315], [122.211914040609, 18.1876065493462], [122.167968728117, 18.1876065493462]]]]}, "properties": {"taskId": 1412, "taskX": 6876, "taskY": 4517, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 18.2293513352315], [122.167968728117, 18.271086106447], [122.211914040609, 18.271086106447], [122.211914040609, 18.2293513352315], [122.167968728117, 18.2293513352315]]]]}, "properties": {"taskId": 1413, "taskX": 6876, "taskY": 4518, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 18.271086106447], [122.167968728117, 18.3128108432568], [122.211914040609, 18.3128108432568], [122.211914040609, 18.271086106447], [122.167968728117, 18.271086106447]]]]}, "properties": {"taskId": 1414, "taskX": 6876, "taskY": 4519, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 18.3128108432568], [122.167968728117, 18.3545255259514], [122.211914040609, 18.3545255259514], [122.211914040609, 18.3128108432568], [122.167968728117, 18.3128108432568]]]]}, "properties": {"taskId": 1415, "taskX": 6876, "taskY": 4520, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 18.3545255259514], [122.167968728117, 18.3962301348468], [122.211914040609, 18.3962301348468], [122.211914040609, 18.3545255259514], [122.167968728117, 18.3545255259514]]]]}, "properties": {"taskId": 1416, "taskX": 6876, "taskY": 4521, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 18.3962301348468], [122.167968728117, 18.4379246502857], [122.211914040609, 18.4379246502857], [122.211914040609, 18.3962301348468], [122.167968728117, 18.3962301348468]]]]}, "properties": {"taskId": 1417, "taskX": 6876, "taskY": 4522, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 18.4796090526366], [122.167968728117, 18.5212833222942], [122.211914040609, 18.5212833222942], [122.211914040609, 18.4796090526366], [122.167968728117, 18.4796090526366]]]]}, "properties": {"taskId": 1419, "taskX": 6876, "taskY": 4524, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 18.6046013852398], [122.167968728117, 18.6462451394485], [122.211914040609, 18.6462451394485], [122.211914040609, 18.6046013852398], [122.167968728117, 18.6046013852398]]]]}, "properties": {"taskId": 1422, "taskX": 6876, "taskY": 4527, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.1998013221, 18.6878786828054], [122.211914040609, 18.6639725385465], [122.211914040609, 18.6462451394485], [122.167968728117, 18.6462451394485], [122.167968728117, 18.6878786828054], [122.1998013221, 18.6878786828054]]]]}, "properties": {"taskId": 1423, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 18.7506886681802], [122.178707621992, 18.7295019958367], [122.167968728117, 18.7295019958367], [122.167968728117, 18.7506886681802]]]]}, "properties": {"taskId": 1425, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.185613218001, 19.8907230205771], [122.171246515447, 19.8493939550095], [122.167968728117, 19.8493939550095], [122.167968728117, 19.8907230205771], [122.185613218001, 19.8907230205771]]]]}, "properties": {"taskId": 1427, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.199979920555, 19.9320413026892], [122.185613218001, 19.8907230205771], [122.167968728117, 19.8907230205771], [122.167968728117, 19.9320413026892], [122.199979920555, 19.9320413026892]]]]}, "properties": {"taskId": 1428, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.197111004772, 19.9733487826778], [122.206673344217, 19.9512877364355], [122.199979920555, 19.9320413026892], [122.167968728117, 19.9320413026892], [122.167968728117, 19.9733487826778], [122.197111004772, 19.9733487826778]]]]}, "properties": {"taskId": 1429, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.179207408613, 20.014645441902], [122.197111004772, 19.9733487826778], [122.167968728117, 19.9733487826778], [122.167968728117, 20.014645441902], [122.179207408613, 20.014645441902]]]]}, "properties": {"taskId": 1430, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 20.0405631865881], [122.179207408613, 20.014645441902], [122.167968728117, 20.014645441902], [122.167968728117, 20.0405631865881]]]]}, "properties": {"taskId": 1431, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.255859353101, 17.5097794531548], [122.211914040609, 17.5066164878649], [122.211914040609, 17.518344184812], [122.255859353101, 17.518344184812], [122.255859353101, 17.5097794531548]]]]}, "properties": {"taskId": 1432, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.249148246438, 17.5602465002479], [122.255859353101, 17.5218522088952], [122.255859353101, 17.518344184812], [122.211914040609, 17.518344184812], [122.211914040609, 17.5602465002479], [122.249148246438, 17.5602465002479]]]]}, "properties": {"taskId": 1433, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.241824027689, 17.602139120297], [122.249148246438, 17.5602465002479], [122.211914040609, 17.5602465002479], [122.211914040609, 17.602139120297], [122.241824027689, 17.602139120297]]]]}, "properties": {"taskId": 1434, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.23449980894, 17.6440220248121], [122.241824027689, 17.602139120297], [122.211914040609, 17.602139120297], [122.211914040609, 17.6440220248121], [122.23449980894, 17.6440220248121]]]]}, "properties": {"taskId": 1435, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.227175590191, 17.6858951936713], [122.23449980894, 17.6440220248121], [122.211914040609, 17.6440220248121], [122.211914040609, 17.6858951936713], [122.227175590191, 17.6858951936713]]]]}, "properties": {"taskId": 1436, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.219851371443, 17.7277586067781], [122.227175590191, 17.6858951936713], [122.211914040609, 17.6858951936713], [122.211914040609, 17.7277586067781], [122.219851371443, 17.7277586067781]]]]}, "properties": {"taskId": 1437, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.214936482869, 17.7696122440617], [122.213997786484, 17.7612092152486], [122.219851371443, 17.7277586067781], [122.211914040609, 17.7277586067781], [122.211914040609, 17.7696122440617], [122.214936482869, 17.7696122440617]]]]}, "properties": {"taskId": 1438, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.219611486061, 17.8114560854767], [122.214936482869, 17.7696122440617], [122.211914040609, 17.7696122440617], [122.211914040609, 17.8114560854767], [122.219611486061, 17.8114560854767]]]]}, "properties": {"taskId": 1439, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.224286489253, 17.8532901110035], [122.219611486061, 17.8114560854767], [122.211914040609, 17.8114560854767], [122.211914040609, 17.8532901110035], [122.224286489253, 17.8532901110035]]]]}, "properties": {"taskId": 1440, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.242986502021, 18.0205276547308], [122.238311498829, 17.9787330924414], [122.211914040609, 17.9787330924414], [122.211914040609, 18.0205276547308], [122.242986502021, 18.0205276547308]]]]}, "properties": {"taskId": 1444, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.247661505213, 18.0623123014185], [122.242986502021, 18.0205276547308], [122.211914040609, 18.0205276547308], [122.211914040609, 18.0623123014185], [122.247661505213, 18.0623123014185]]]]}, "properties": {"taskId": 1445, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.211914040609, 18.1458517685528], [122.211914040609, 18.1876065493462], [122.255859353101, 18.1876065493462], [122.255859353101, 18.1458517685528], [122.211914040609, 18.1458517685528]]]]}, "properties": {"taskId": 1448, "taskX": 6877, "taskY": 4516, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.211914040609, 18.1876065493462], [122.211914040609, 18.2293513352315], [122.255859353101, 18.2293513352315], [122.255859353101, 18.1876065493462], [122.211914040609, 18.1876065493462]]]]}, "properties": {"taskId": 1449, "taskX": 6877, "taskY": 4517, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.211914040609, 18.2293513352315], [122.211914040609, 18.271086106447], [122.255859353101, 18.271086106447], [122.255859353101, 18.2293513352315], [122.211914040609, 18.2293513352315]]]]}, "properties": {"taskId": 1450, "taskX": 6877, "taskY": 4518, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.211914040609, 18.271086106447], [122.211914040609, 18.3128108432568], [122.255859353101, 18.3128108432568], [122.255859353101, 18.271086106447], [122.211914040609, 18.271086106447]]]]}, "properties": {"taskId": 1451, "taskX": 6877, "taskY": 4519, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.211914040609, 18.3128108432568], [122.211914040609, 18.3545255259514], [122.255859353101, 18.3545255259514], [122.255859353101, 18.3128108432568], [122.211914040609, 18.3128108432568]]]]}, "properties": {"taskId": 1452, "taskX": 6877, "taskY": 4520, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.211914040609, 18.3545255259514], [122.211914040609, 18.3962301348468], [122.255859353101, 18.3962301348468], [122.255859353101, 18.3545255259514], [122.211914040609, 18.3545255259514]]]]}, "properties": {"taskId": 1453, "taskX": 6877, "taskY": 4521, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.211914040609, 18.3962301348468], [122.211914040609, 18.4379246502857], [122.255859353101, 18.4379246502857], [122.255859353101, 18.3962301348468], [122.211914040609, 18.3962301348468]]]]}, "properties": {"taskId": 1454, "taskX": 6877, "taskY": 4522, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.211914040609, 18.4379246502857], [122.211914040609, 18.4796090526366], [122.255859353101, 18.4796090526366], [122.255859353101, 18.4379246502857], [122.211914040609, 18.4379246502857]]]]}, "properties": {"taskId": 1455, "taskX": 6877, "taskY": 4523, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.211914040609, 18.4796090526366], [122.211914040609, 18.5212833222942], [122.255859353101, 18.5212833222942], [122.255859353101, 18.4796090526366], [122.211914040609, 18.4796090526366]]]]}, "properties": {"taskId": 1456, "taskX": 6877, "taskY": 4524, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.211914040609, 18.5212833222942], [122.211914040609, 18.5629474396796], [122.255859353101, 18.5629474396796], [122.255859353101, 18.5212833222942], [122.211914040609, 18.5212833222942]]]]}, "properties": {"taskId": 1457, "taskX": 6877, "taskY": 4525, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.220895022207, 18.6462451394485], [122.228646000467, 18.6309441338138], [122.244629492038, 18.6046013852398], [122.211914040609, 18.6046013852398], [122.211914040609, 18.6462451394485], [122.220895022207, 18.6462451394485]]]]}, "properties": {"taskId": 1459, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.211914040609, 18.6639725385465], [122.220895022207, 18.6462451394485], [122.211914040609, 18.6462451394485], [122.211914040609, 18.6639725385465]]]]}, "properties": {"taskId": 1460, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.255859353101, 17.5218522088952], [122.256472465186, 17.518344184812], [122.255859353101, 17.518344184812], [122.255859353101, 17.5218522088952]]]]}, "properties": {"taskId": 1462, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.299804665593, 18.1327371492422], [122.267775796302, 18.104087012639], [122.255859353101, 18.104087012639], [122.255859353101, 18.1458517685528], [122.299804665593, 18.1458517685528], [122.299804665593, 18.1327371492422]]]]}, "properties": {"taskId": 1464, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.255859353101, 18.1458517685528], [122.255859353101, 18.1876065493462], [122.299804665593, 18.1876065493462], [122.299804665593, 18.1458517685528], [122.255859353101, 18.1458517685528]]]]}, "properties": {"taskId": 1465, "taskX": 6878, "taskY": 4516, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.255859353101, 18.1876065493462], [122.255859353101, 18.2293513352315], [122.299804665593, 18.2293513352315], [122.299804665593, 18.1876065493462], [122.255859353101, 18.1876065493462]]]]}, "properties": {"taskId": 1466, "taskX": 6878, "taskY": 4517, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.255859353101, 18.2293513352315], [122.255859353101, 18.271086106447], [122.299804665593, 18.271086106447], [122.299804665593, 18.2293513352315], [122.255859353101, 18.2293513352315]]]]}, "properties": {"taskId": 1467, "taskX": 6878, "taskY": 4518, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.255859353101, 18.3545255259514], [122.255859353101, 18.3962301348468], [122.299804665593, 18.3962301348468], [122.299804665593, 18.3545255259514], [122.255859353101, 18.3545255259514]]]]}, "properties": {"taskId": 1470, "taskX": 6878, "taskY": 4521, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.255859353101, 18.3962301348468], [122.255859353101, 18.4379246502857], [122.299804665593, 18.4379246502857], [122.299804665593, 18.3962301348468], [122.255859353101, 18.3962301348468]]]]}, "properties": {"taskId": 1471, "taskX": 6878, "taskY": 4522, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.255859353101, 18.4379246502857], [122.255859353101, 18.4796090526366], [122.299804665593, 18.4796090526366], [122.299804665593, 18.4379246502857], [122.255859353101, 18.4379246502857]]]]}, "properties": {"taskId": 1472, "taskX": 6878, "taskY": 4523, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.295166553628, 18.5212833222942], [122.299804665593, 18.5136346496129], [122.299804665593, 18.4796090526366], [122.255859353101, 18.4796090526366], [122.255859353101, 18.5212833222942], [122.295166553628, 18.5212833222942]]]]}, "properties": {"taskId": 1473, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.269898022833, 18.5629474396796], [122.295166553628, 18.5212833222942], [122.255859353101, 18.5212833222942], [122.255859353101, 18.5629474396796], [122.269898022833, 18.5629474396796]]]]}, "properties": {"taskId": 1474, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.255859353101, 18.5860907618031], [122.269898022833, 18.5629474396796], [122.255859353101, 18.5629474396796], [122.255859353101, 18.5860907618031]]]]}, "properties": {"taskId": 1475, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.314467651535, 18.1458517685528], [122.299804665593, 18.1327371492422], [122.299804665593, 18.1458517685528], [122.314467651535, 18.1458517685528]]]]}, "properties": {"taskId": 1476, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.343749978085, 18.1720390261371], [122.314467651535, 18.1458517685528], [122.299804665593, 18.1458517685528], [122.299804665593, 18.1876065493462], [122.343749978085, 18.1876065493462], [122.343749978085, 18.1720390261371]]]]}, "properties": {"taskId": 1477, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.299804665593, 18.2293513352315], [122.299804665593, 18.271086106447], [122.343749978085, 18.271086106447], [122.343749978085, 18.2293513352315], [122.299804665593, 18.2293513352315]]]]}, "properties": {"taskId": 1479, "taskX": 6879, "taskY": 4518, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.299804665593, 18.271086106447], [122.299804665593, 18.3128108432568], [122.343749978085, 18.3128108432568], [122.343749978085, 18.271086106447], [122.299804665593, 18.271086106447]]]]}, "properties": {"taskId": 1480, "taskX": 6879, "taskY": 4519, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.299804665593, 18.3128108432568], [122.299804665593, 18.3545255259514], [122.343749978085, 18.3545255259514], [122.343749978085, 18.3128108432568], [122.299804665593, 18.3128108432568]]]]}, "properties": {"taskId": 1481, "taskX": 6879, "taskY": 4520, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.299804665593, 18.3545255259514], [122.299804665593, 18.3962301348468], [122.343749978085, 18.3962301348468], [122.343749978085, 18.3545255259514], [122.299804665593, 18.3545255259514]]]]}, "properties": {"taskId": 1482, "taskX": 6879, "taskY": 4521, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.299804665593, 18.3962301348468], [122.299804665593, 18.4379246502857], [122.343749978085, 18.4379246502857], [122.343749978085, 18.3962301348468], [122.299804665593, 18.3962301348468]]]]}, "properties": {"taskId": 1483, "taskX": 6879, "taskY": 4522, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.320435084422, 18.4796090526366], [122.343749978085, 18.4411478419361], [122.343749978085, 18.4379246502857], [122.299804665593, 18.4379246502857], [122.299804665593, 18.4796090526366], [122.320435084422, 18.4796090526366]]]]}, "properties": {"taskId": 1484, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.299804665593, 18.5136346496129], [122.320435084422, 18.4796090526366], [122.299804665593, 18.4796090526366], [122.299804665593, 18.5136346496129]]]]}, "properties": {"taskId": 1485, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.361159506768, 18.1876065493462], [122.343749978085, 18.1720390261371], [122.343749978085, 18.1876065493462], [122.361159506768, 18.1876065493462]]]]}, "properties": {"taskId": 1486, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.379329663247, 18.2293513352315], [122.375130151949, 18.2000980333181], [122.361159506768, 18.1876065493462], [122.343749978085, 18.1876065493462], [122.343749978085, 18.2293513352315], [122.379329663247, 18.2293513352315]]]]}, "properties": {"taskId": 1487, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.385322197547, 18.271086106447], [122.379329663247, 18.2293513352315], [122.343749978085, 18.2293513352315], [122.343749978085, 18.271086106447], [122.385322197547, 18.271086106447]]]]}, "properties": {"taskId": 1488, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.387695290577, 18.2876106476557], [122.385322197547, 18.271086106447], [122.343749978085, 18.271086106447], [122.343749978085, 18.3128108432568], [122.387695290577, 18.3128108432568], [122.387695290577, 18.2876106476557]]]]}, "properties": {"taskId": 1489, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.343749978085, 18.3128108432568], [122.343749978085, 18.3545255259514], [122.387695290577, 18.3545255259514], [122.387695290577, 18.3128108432568], [122.343749978085, 18.3128108432568]]]]}, "properties": {"taskId": 1490, "taskX": 6880, "taskY": 4520, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.370972146011, 18.3962301348468], [122.387695290577, 18.3686304418377], [122.387695290577, 18.3545255259514], [122.343749978085, 18.3545255259514], [122.343749978085, 18.3962301348468], [122.370972146011, 18.3962301348468]]]]}, "properties": {"taskId": 1491, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.345703615217, 18.4379246502857], [122.370972146011, 18.3962301348468], [122.343749978085, 18.3962301348468], [122.343749978085, 18.4379246502857], [122.345703615217, 18.4379246502857]]]]}, "properties": {"taskId": 1492, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.343749978085, 18.4411478419361], [122.345703615217, 18.4379246502857], [122.343749978085, 18.4379246502857], [122.343749978085, 18.4411478419361]]]]}, "properties": {"taskId": 1493, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.391314731847, 18.3128108432568], [122.387695290577, 18.2876106476557], [122.387695290577, 18.3128108432568], [122.391314731847, 18.3128108432568]]]]}, "properties": {"taskId": 1494, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.396240676806, 18.3545255259514], [122.397102808199, 18.3531024378292], [122.391314731847, 18.3128108432568], [122.387695290577, 18.3128108432568], [122.387695290577, 18.3545255259514], [122.396240676806, 18.3545255259514]]]]}, "properties": {"taskId": 1495, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.387695290577, 18.3686304418377], [122.396240676806, 18.3545255259514], [122.387695290577, 18.3545255259514], [122.387695290577, 18.3686304418377]]]]}, "properties": {"taskId": 1496, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.7295019958367], [121.684570290703, 18.7711150590949], [121.728515603195, 18.7711150590949], [121.728515603195, 18.7295019958367], [121.684570290703, 18.7295019958367]]]]}, "properties": {"taskId": 603, "taskX": 6865, "taskY": 4530, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 19.8493939550095], [122.124023415624, 19.8907230205771], [122.167968728117, 19.8907230205771], [122.167968728117, 19.8493939550095], [122.124023415624, 19.8493939550095]]]]}, "properties": {"taskId": 1387, "taskX": 6875, "taskY": 4557, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 18.3128108432568], [121.816406228179, 18.3545255259514], [121.860351540672, 18.3545255259514], [121.860351540672, 18.3128108432568], [121.816406228179, 18.3128108432568]]]]}, "properties": {"taskId": 805, "taskX": 6868, "taskY": 4520, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 21.0434912132036], [121.992187478148, 21.0845000799111], [122.03613279064, 21.0845000799111], [122.03613279064, 21.0434912132036], [121.992187478148, 21.0434912132036]]]]}, "properties": {"taskId": 1211, "taskX": 6872, "taskY": 4586, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 20.7693126059434], [121.739563693267, 20.7972014307453], [121.772460915687, 20.7972014307453], [121.772460915687, 20.7561138712068], [121.728515603195, 20.7561138712068], [121.728515603195, 20.7693126059434]]]]}, "properties": {"taskId": 705, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.6046013852398], [121.904296853164, 18.6462451394485], [121.948242165656, 18.6462451394485], [121.948242165656, 18.6046013852398], [121.904296853164, 18.6046013852398]]]]}, "properties": {"taskId": 975, "taskX": 6870, "taskY": 4527, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.4379246502857], [121.552734353227, 18.4796090526366], [121.596679665719, 18.4796090526366], [121.596679665719, 18.4379246502857], [121.552734353227, 18.4379246502857]]]]}, "properties": {"taskId": 435, "taskX": 6862, "taskY": 4523, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 18.3545255259514], [121.816406228179, 18.3962301348468], [121.860351540672, 18.3962301348468], [121.860351540672, 18.3545255259514], [121.816406228179, 18.3545255259514]]]]}, "properties": {"taskId": 806, "taskX": 6868, "taskY": 4521, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.6046013852398], [121.860351540672, 18.6462451394485], [121.904296853164, 18.6462451394485], [121.904296853164, 18.6046013852398], [121.860351540672, 18.6046013852398]]]]}, "properties": {"taskId": 891, "taskX": 6869, "taskY": 4527, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 19.6011941578891], [121.904296853164, 19.6425875306324], [121.948242165656, 19.6425875306324], [121.948242165656, 19.6011941578891], [121.904296853164, 19.6011941578891]]]]}, "properties": {"taskId": 999, "taskX": 6870, "taskY": 4551, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 19.6425875306324], [121.860351540672, 19.6839702325013], [121.904296853164, 19.6839702325013], [121.904296853164, 19.6425875306324], [121.860351540672, 19.6425875306324]]]]}, "properties": {"taskId": 916, "taskX": 6869, "taskY": 4552, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 19.5183754752406], [121.552734353227, 19.5597901331299], [121.596679665719, 19.5597901331299], [121.596679665719, 19.5183754752406], [121.552734353227, 19.5183754752406]]]]}, "properties": {"taskId": 461, "taskX": 6862, "taskY": 4549, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 19.476950203134], [121.508789040735, 19.5183754752406], [121.552734353227, 19.5183754752406], [121.552734353227, 19.476950203134], [121.508789040735, 19.476950203134]]]]}, "properties": {"taskId": 408, "taskX": 6861, "taskY": 4548, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.069335915813, 18.6462451394485], [121.069335915813, 18.6878786828054], [121.113281228305, 18.6878786828054], [121.113281228305, 18.6462451394485], [121.069335915813, 18.6462451394485]]]]}, "properties": {"taskId": 35, "taskX": 6851, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.816406228179, 20.8793429683834], [121.816406228179, 20.920396910391], [121.860351540672, 20.920396910391], [121.860351540672, 20.8793429683834], [121.816406228179, 20.8793429683834]]]]}, "properties": {"taskId": 858, "taskX": 6868, "taskY": 4582, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.114721219421, 19.0205771076849], [121.113281228305, 19.0251562115188], [121.113281228305, 19.0621178802261], [121.157226540798, 19.0621178802261], [121.157226540798, 19.0205771076849], [121.114721219421, 19.0205771076849]]]]}, "properties": {"taskId": 57, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.3545255259514], [121.992187478148, 18.3962301348468], [122.03613279064, 18.3962301348468], [122.03613279064, 18.3545255259514], [121.992187478148, 18.3545255259514]]]]}, "properties": {"taskId": 1146, "taskX": 6872, "taskY": 4521, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.136520221778, 18.812717853159], [122.157613921885, 18.7711150590949], [122.124023415624, 18.7711150590949], [122.124023415624, 18.812717853159], [122.136520221778, 18.812717853159]]]]}, "properties": {"taskId": 1381, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.7711150590949], [121.992187478148, 18.812717853159], [122.03613279064, 18.812717853159], [122.03613279064, 18.7711150590949], [121.992187478148, 18.7711150590949]]]]}, "properties": {"taskId": 1156, "taskX": 6872, "taskY": 4531, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.812717853159], [122.03613279064, 18.8543103586344], [122.080078103132, 18.8543103586344], [122.080078103132, 18.812717853159], [122.03613279064, 18.812717853159]]]]}, "properties": {"taskId": 1246, "taskX": 6873, "taskY": 4532, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 19.3940678920553], [121.42089841575, 19.43551433575], [121.464843728242, 19.43551433575], [121.464843728242, 19.3940678920553], [121.42089841575, 19.3940678920553]]]]}, "properties": {"taskId": 306, "taskX": 6859, "taskY": 4546, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.707011642133, 20.7150151419632], [121.7232876677, 20.7561138712068], [121.728515603195, 20.7561138712068], [121.728515603195, 20.7150151419632], [121.707011642133, 20.7150151419632]]]]}, "properties": {"taskId": 635, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 19.6308919340949], [121.684570290703, 19.6351371467923], [121.684570290703, 19.6011941578891], [121.640624978211, 19.6011941578891], [121.640624978211, 19.6308919340949]]]]}, "properties": {"taskId": 569, "taskX": null, "taskY": null, "taskZoom": null, "taskSplittable": false, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 19.5183754752406], [121.508789040735, 19.5597901331299], [121.552734353227, 19.5597901331299], [121.552734353227, 19.5183754752406], [121.508789040735, 19.5183754752406]]]]}, "properties": {"taskId": 409, "taskX": 6861, "taskY": 4549, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.6462451394485], [122.03613279064, 18.6878786828054], [122.080078103132, 18.6878786828054], [122.080078103132, 18.6462451394485], [122.03613279064, 18.6462451394485]]]]}, "properties": {"taskId": 1242, "taskX": 6873, "taskY": 4528, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 20.7843627693537], [121.841125466456, 20.7843627693537], [121.841125466456, 20.7869305890102], [121.838378884426, 20.7869305890102], [121.838378884426, 20.7843627693537]]]]}, "properties": {"taskId": 1526, "taskX": 109896, "taskY": 73275, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.223144509536, 18.5837756851588], [121.245117165782, 18.5837756851588], [121.245117165782, 18.6046013852398], [121.223144509536, 18.6046013852398], [121.223144509536, 18.5837756851588]]]]}, "properties": {"taskId": 1660, "taskX": 13709, "taskY": 9053, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.9160227007731], [121.662597634457, 17.9160227007731], [121.662597634457, 17.9369286344414], [121.640624978211, 17.9369286344414], [121.640624978211, 17.9160227007731]]]]}, "properties": {"taskId": 1530, "taskX": 13728, "taskY": 9021, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.3652275339181], [121.970214821902, 20.3652275339181], [121.970214821902, 20.3858253783768], [121.948242165656, 20.3858253783768], [121.948242165656, 20.3652275339181]]]]}, "properties": {"taskId": 1550, "taskX": 13742, "taskY": 9139, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 20.6739052611303], [121.794433571933, 20.6739052611303], [121.794433571933, 20.6944615943621], [121.772460915687, 20.6944615943621], [121.772460915687, 20.6739052611303]]]]}, "properties": {"taskId": 1565, "taskX": 13734, "taskY": 9154, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 20.6944615943621], [121.81640622818, 20.6944615943621], [121.81640622818, 20.7150151419632], [121.794433571933, 20.7150151419632], [121.794433571933, 20.6944615943621]]]]}, "properties": {"taskId": 1568, "taskX": 13735, "taskY": 9155, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 20.7869305890102], [121.827392556303, 20.7869305890102], [121.827392556303, 20.7972014307453], [121.81640622818, 20.7972014307453], [121.81640622818, 20.7869305890102]]]]}, "properties": {"taskId": 1574, "taskX": 27472, "taskY": 18319, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 20.7561138712068], [121.827392556303, 20.7561138712068], [121.827392556303, 20.7663868089583], [121.81640622818, 20.7663868089583], [121.81640622818, 20.7561138712068]]]]}, "properties": {"taskId": 1577, "taskX": 27472, "taskY": 18316, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.827392556303, 20.7663868089583], [121.838378884426, 20.7663868089583], [121.838378884426, 20.7766590483203], [121.827392556303, 20.7766590483203], [121.827392556303, 20.7663868089583]]]]}, "properties": {"taskId": 1580, "taskX": 27473, "taskY": 18317, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 19.2281767344513], [121.486816384489, 19.2281767344513], [121.486816384489, 19.2489223251446], [121.464843728242, 19.2489223251446], [121.464843728242, 19.2281767344513]]]]}, "properties": {"taskId": 1601, "taskX": 13720, "taskY": 9084, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 19.2489223251446], [121.508789040735, 19.2489223251446], [121.508789040735, 19.2696652931808], [121.486816384489, 19.2696652931808], [121.486816384489, 19.2489223251446]]]]}, "properties": {"taskId": 1604, "taskX": 13721, "taskY": 9085, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.5811940234556], [121.662597634457, 17.5811940234556], [121.662597634457, 17.602139120297], [121.640624978211, 17.602139120297], [121.640624978211, 17.5811940234556]]]]}, "properties": {"taskId": 1706, "taskX": 13728, "taskY": 9005, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 18.8335153931814], [121.31103513452, 18.8335153931814], [121.31103513452, 18.8543103586344], [121.289062478274, 18.8543103586344], [121.289062478274, 18.8335153931814]]]]}, "properties": {"taskId": 1598, "taskX": 13712, "taskY": 9065, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.8114560854768], [121.706542946949, 17.8114560854768], [121.706542946949, 17.8323743264764], [121.684570290703, 17.8323743264764], [121.684570290703, 17.8114560854768]]]]}, "properties": {"taskId": 1721, "taskX": 13730, "taskY": 9016, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.17895505624, 18.4379246502857], [122.189941384363, 18.4379246502857], [122.189941384363, 18.4483466997417], [122.17895505624, 18.4483466997417], [122.17895505624, 18.4379246502857]]]]}, "properties": {"taskId": 1675, "taskX": 27505, "taskY": 18092, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 20.7150151419632], [121.805419900056, 20.7150151419632], [121.805419900056, 20.7252908704437], [121.794433571933, 20.7252908704437], [121.794433571933, 20.7150151419632]]]]}, "properties": {"taskId": 1685, "taskX": 27470, "taskY": 18312, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.805419900056, 20.7252908704437], [121.81640622818, 20.7252908704437], [121.81640622818, 20.7355659016665], [121.805419900056, 20.7355659016665], [121.805419900056, 20.7252908704437]]]]}, "properties": {"taskId": 1688, "taskX": 27471, "taskY": 18313, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.4887732835962], [121.970214821902, 20.4887732835962], [121.970214821902, 20.5093545851978], [121.948242165656, 20.5093545851978], [121.948242165656, 20.4887732835962]]]]}, "properties": {"taskId": 1554, "taskX": 13742, "taskY": 9145, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.723022439134, 17.602139120297], [121.728515603195, 17.602139120297], [121.728515603195, 17.6073750150926], [121.723022439134, 17.6073750150926], [121.723022439134, 17.602139120297]]]]}, "properties": {"taskId": 1679, "taskX": 54927, "taskY": 36024, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.4681892191306], [121.970214821902, 20.4681892191306], [121.970214821902, 20.4887732835962], [121.948242165656, 20.4887732835962], [121.948242165656, 20.4681892191306]]]]}, "properties": {"taskId": 1553, "taskX": 13742, "taskY": 9144, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 20.4887732835962], [121.992187478148, 20.4887732835962], [121.992187478148, 20.5093545851978], [121.970214821902, 20.5093545851978], [121.970214821902, 20.4887732835962]]]]}, "properties": {"taskId": 1556, "taskX": 13743, "taskY": 9145, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.6649598274553], [121.772460915687, 17.6649598274553], [121.772460915687, 17.6858951936713], [121.750488259441, 17.6858951936713], [121.750488259441, 17.6649598274553]]]]}, "properties": {"taskId": 1668, "taskX": 13733, "taskY": 9009, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.3962301348468], [121.486816384489, 18.3962301348468], [121.486816384489, 18.4170786554759], [121.464843728242, 18.4170786554759], [121.464843728242, 18.3962301348468]]]]}, "properties": {"taskId": 1681, "taskX": 13720, "taskY": 9044, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 18.4170786554759], [121.508789040735, 18.4170786554759], [121.508789040735, 18.4379246502857], [121.486816384489, 18.4379246502857], [121.486816384489, 18.4170786554759]]]]}, "properties": {"taskId": 1684, "taskX": 13721, "taskY": 9045, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 20.4681892191306], [121.992187478148, 20.4681892191306], [121.992187478148, 20.4887732835962], [121.970214821902, 20.4887732835962], [121.970214821902, 20.4681892191306]]]]}, "properties": {"taskId": 1555, "taskX": 13743, "taskY": 9144, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.2293513352315], [121.706542946949, 18.2293513352315], [121.706542946949, 18.2502199739071], [121.684570290703, 18.2502199739071], [121.684570290703, 18.2293513352315]]]]}, "properties": {"taskId": 1633, "taskX": 13730, "taskY": 9036, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 18.2502199739071], [121.728515603195, 18.2502199739071], [121.728515603195, 18.271086106447], [121.706542946949, 18.271086106447], [121.706542946949, 18.2502199739071]]]]}, "properties": {"taskId": 1636, "taskX": 13731, "taskY": 9037, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.602139120297], [121.723022439134, 17.602139120297], [121.723022439134, 17.6073750150926], [121.717529275072, 17.6073750150926], [121.717529275072, 17.602139120297]]]]}, "properties": {"taskId": 1677, "taskX": 54926, "taskY": 36024, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.723022439134, 17.6073750150926], [121.728515603195, 17.6073750150926], [121.728515603195, 17.6126107580436], [121.723022439134, 17.6126107580436], [121.723022439134, 17.6073750150926]]]]}, "properties": {"taskId": 1680, "taskX": 54927, "taskY": 36025, "taskZoom": 16, "taskSplittable": true, "taskStatus": "LOCKED_FOR_MAPPING"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 18.812717853159], [121.31103513452, 18.812717853159], [121.31103513452, 18.8335153931814], [121.289062478274, 18.8335153931814], [121.289062478274, 18.812717853159]]]]}, "properties": {"taskId": 1597, "taskX": 13712, "taskY": 9064, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.31103513452, 18.8335153931814], [121.333007790766, 18.8335153931814], [121.333007790766, 18.8543103586344], [121.31103513452, 18.8543103586344], [121.31103513452, 18.8335153931814]]]]}, "properties": {"taskId": 1600, "taskX": 13713, "taskY": 9065, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 18.4483466997417], [122.17895505624, 18.4483466997417], [122.17895505624, 18.4587681168231], [122.167968728117, 18.4587681168231], [122.167968728117, 18.4483466997417]]]]}, "properties": {"taskId": 1674, "taskX": 27504, "taskY": 18093, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.8323743264764], [121.706542946949, 17.8323743264764], [121.706542946949, 17.8532901110035], [121.684570290703, 17.8532901110035], [121.684570290703, 17.8323743264764]]]]}, "properties": {"taskId": 1722, "taskX": 13730, "taskY": 9017, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.31103513452, 18.812717853159], [121.333007790766, 18.812717853159], [121.333007790766, 18.8335153931814], [121.31103513452, 18.8335153931814], [121.31103513452, 18.812717853159]]]]}, "properties": {"taskId": 1599, "taskX": 13713, "taskY": 9064, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 18.4379246502857], [122.17895505624, 18.4379246502857], [122.17895505624, 18.4483466997417], [122.167968728117, 18.4483466997417], [122.167968728117, 18.4379246502857]]]]}, "properties": {"taskId": 1673, "taskX": 27504, "taskY": 18092, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.17895505624, 18.4483466997417], [122.189941384363, 18.4483466997417], [122.189941384363, 18.4587681168231], [122.17895505624, 18.4587681168231], [122.17895505624, 18.4483466997417]]]]}, "properties": {"taskId": 1676, "taskX": 27505, "taskY": 18093, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.805419900056, 20.7150151419632], [121.81640622818, 20.7150151419632], [121.81640622818, 20.7252908704437], [121.805419900056, 20.7252908704437], [121.805419900056, 20.7150151419632]]]]}, "properties": {"taskId": 1687, "taskX": 27471, "taskY": 18312, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.3128108432568], [121.662597634457, 18.3128108432568], [121.662597634457, 18.3336694425994], [121.640624978211, 18.3336694425994], [121.640624978211, 18.3128108432568]]]]}, "properties": {"taskId": 1697, "taskX": 13728, "taskY": 9040, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.3336694425994], [121.684570290703, 18.3336694425994], [121.684570290703, 18.3545255259514], [121.662597634457, 18.3545255259514], [121.662597634457, 18.3336694425994]]]]}, "properties": {"taskId": 1700, "taskX": 13729, "taskY": 9041, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.17895505624, 18.4587681168231], [122.189941384363, 18.4587681168231], [122.189941384363, 18.4691889012235], [122.17895505624, 18.4691889012235], [122.17895505624, 18.4587681168231]]]]}, "properties": {"taskId": 1747, "taskX": 27505, "taskY": 18094, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.497389397627], [121.81640622818, 17.497389397627], [121.81640622818, 17.518344184812], [121.794433571933, 17.518344184812], [121.794433571933, 17.497389397627]]]]}, "properties": {"taskId": 1608, "taskX": 13735, "taskY": 9001, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.354980447012, 18.4379246502857], [121.376953103258, 18.4379246502857], [121.376953103258, 18.4587681168231], [121.354980447012, 18.4587681168231], [121.354980447012, 18.4379246502857]]]]}, "properties": {"taskId": 1647, "taskX": 13715, "taskY": 9046, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.602139120297], [121.739501931318, 17.602139120297], [121.739501931318, 17.6073750150926], [121.734008767257, 17.6073750150926], [121.734008767257, 17.602139120297]]]]}, "properties": {"taskId": 1847, "taskX": 54929, "taskY": 36024, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.981201150025, 20.4578961515381], [121.992187478148, 20.4578961515381], [121.992187478148, 20.4681892191306], [121.981201150025, 20.4681892191306], [121.981201150025, 20.4578961515381]]]]}, "properties": {"taskId": 1784, "taskX": 27487, "taskY": 18287, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 18.4379246502857], [121.354980447012, 18.4379246502857], [121.354980447012, 18.4587681168231], [121.333007790766, 18.4587681168231], [121.333007790766, 18.4379246502857]]]]}, "properties": {"taskId": 1645, "taskX": 13714, "taskY": 9046, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.981201150025, 20.447602394087], [121.992187478148, 20.447602394087], [121.992187478148, 20.4578961515381], [121.981201150025, 20.4578961515381], [121.981201150025, 20.447602394087]]]]}, "properties": {"taskId": 1783, "taskX": 27487, "taskY": 18286, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.602139120297], [121.734008767257, 17.602139120297], [121.734008767257, 17.6073750150926], [121.728515603195, 17.6073750150926], [121.728515603195, 17.602139120297]]]]}, "properties": {"taskId": 1845, "taskX": 54928, "taskY": 36024, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.6073750150926], [121.739501931318, 17.6073750150926], [121.739501931318, 17.6126107580436], [121.734008767257, 17.6126107580436], [121.734008767257, 17.6073750150926]]]]}, "properties": {"taskId": 1848, "taskX": 54929, "taskY": 36025, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 20.4578961515381], [121.981201150025, 20.4578961515381], [121.981201150025, 20.4681892191306], [121.970214821902, 20.4681892191306], [121.970214821902, 20.4578961515381]]]]}, "properties": {"taskId": 1782, "taskX": 27486, "taskY": 18287, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.091308572059, 18.6046013852398], [121.113281228305, 18.6046013852398], [121.113281228305, 18.6254245374825], [121.091308572059, 18.6254245374825], [121.091308572059, 18.6046013852398]]]]}, "properties": {"taskId": 1663, "taskX": 13703, "taskY": 9054, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.069335915813, 18.6254245374825], [121.091308572059, 18.6254245374825], [121.091308572059, 18.6462451394485], [121.069335915813, 18.6462451394485], [121.069335915813, 18.6254245374825]]]]}, "properties": {"taskId": 1662, "taskX": 13702, "taskY": 9055, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.091308572059, 18.6254245374825], [121.113281228305, 18.6254245374825], [121.113281228305, 18.6462451394485], [121.091308572059, 18.6462451394485], [121.091308572059, 18.6254245374825]]]]}, "properties": {"taskId": 1664, "taskX": 13703, "taskY": 9055, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.972961403933, 20.447602394087], [121.975707985963, 20.447602394087], [121.975707985963, 20.4501758981084], [121.972961403933, 20.4501758981084], [121.972961403933, 20.447602394087]]]]}, "properties": {"taskId": 1791, "taskX": 109945, "taskY": 73144, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.972961403933, 20.4501758981084], [121.975707985963, 20.4501758981084], [121.975707985963, 20.452749359027], [121.972961403933, 20.452749359027], [121.972961403933, 20.4501758981084]]]]}, "properties": {"taskId": 1792, "taskX": 109945, "taskY": 73145, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.7172936692013], [121.695556618826, 17.7172936692013], [121.695556618826, 17.7277586067781], [121.684570290703, 17.7277586067781], [121.684570290703, 17.7172936692013]]]]}, "properties": {"taskId": 1882, "taskX": 27460, "taskY": 18023, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.6230817882545], [121.695556618826, 17.6230817882545], [121.695556618826, 17.6335522106155], [121.684570290703, 17.6335522106155], [121.684570290703, 17.6230817882545]]]]}, "properties": {"taskId": 1913, "taskX": 27460, "taskY": 18014, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.6335522106155], [121.706542946949, 17.6335522106155], [121.706542946949, 17.6440220248121], [121.695556618826, 17.6440220248121], [121.695556618826, 17.6335522106155]]]]}, "properties": {"taskId": 1916, "taskX": 27461, "taskY": 18015, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 20.7355659016665], [121.860351540672, 20.7355659016665], [121.860351540672, 20.7561138712068], [121.838378884426, 20.7561138712068], [121.838378884426, 20.7355659016665]]]]}, "properties": {"taskId": 1564, "taskX": 13737, "taskY": 9157, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 20.4501758981084], [121.972961403933, 20.4501758981084], [121.972961403933, 20.452749359027], [121.970214821902, 20.452749359027], [121.970214821902, 20.4501758981084]]]]}, "properties": {"taskId": 1790, "taskX": 109944, "taskY": 73145, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.7068281209488], [121.728515603195, 17.7068281209488], [121.728515603195, 17.7277586067781], [121.706542946949, 17.7277586067781], [121.706542946949, 17.7068281209488]]]]}, "properties": {"taskId": 1796, "taskX": 13731, "taskY": 9011, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.7172936692013], [121.706542946949, 17.7172936692013], [121.706542946949, 17.7277586067781], [121.695556618826, 17.7277586067781], [121.695556618826, 17.7172936692013]]]]}, "properties": {"taskId": 1884, "taskX": 27461, "taskY": 18023, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.3128108432568], [121.684570290703, 18.3128108432568], [121.684570290703, 18.3336694425994], [121.662597634457, 18.3336694425994], [121.662597634457, 18.3128108432568]]]]}, "properties": {"taskId": 1699, "taskX": 13729, "taskY": 9040, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 18.4587681168231], [122.17895505624, 18.4587681168231], [122.17895505624, 18.4691889012235], [122.167968728117, 18.4691889012235], [122.167968728117, 18.4587681168231]]]]}, "properties": {"taskId": 1745, "taskX": 27504, "taskY": 18094, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.17895505624, 18.4691889012235], [122.189941384363, 18.4691889012235], [122.189941384363, 18.4796090526366], [122.17895505624, 18.4796090526366], [122.17895505624, 18.4691889012235]]]]}, "properties": {"taskId": 1748, "taskX": 27505, "taskY": 18095, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 17.8114560854767], [122.124023415624, 17.8532901110035], [122.167968728117, 17.8532901110035], [122.167968728117, 17.8114560854767], [122.124023415624, 17.8114560854767]]]]}, "properties": {"taskId": 1358, "taskX": 6875, "taskY": 4508, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.5602465002479], [121.662597634457, 17.5602465002479], [121.662597634457, 17.5811940234556], [121.640624978211, 17.5811940234556], [121.640624978211, 17.5602465002479]]]]}, "properties": {"taskId": 1705, "taskX": 13728, "taskY": 9004, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 17.5811940234556], [121.684570290703, 17.5811940234556], [121.684570290703, 17.602139120297], [121.662597634457, 17.602139120297], [121.662597634457, 17.5811940234556]]]]}, "properties": {"taskId": 1708, "taskX": 13729, "taskY": 9005, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.7120609713899], [121.701049782888, 17.7120609713899], [121.701049782888, 17.7172936692013], [121.695556618826, 17.7172936692013], [121.695556618826, 17.7120609713899]]]]}, "properties": {"taskId": 1926, "taskX": 54922, "taskY": 36045, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.92626950941, 20.4167169854434], [121.937255837533, 20.4167169854434], [121.937255837533, 20.4270128107534], [121.92626950941, 20.4270128107534], [121.92626950941, 20.4167169854434]]]]}, "properties": {"taskId": 1818, "taskX": 27482, "taskY": 18283, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.3652275339181], [121.915283181287, 20.3652275339181], [121.915283181287, 20.375526799931], [121.904296853164, 20.375526799931], [121.904296853164, 20.3652275339181]]]]}, "properties": {"taskId": 1825, "taskX": 27480, "taskY": 18278, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.915283181287, 20.375526799931], [121.92626950941, 20.375526799931], [121.92626950941, 20.3858253783768], [121.915283181287, 20.3858253783768], [121.915283181287, 20.375526799931]]]]}, "properties": {"taskId": 1828, "taskX": 27481, "taskY": 18279, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.690063454765, 17.6440220248121], [121.695556618826, 17.6440220248121], [121.695556618826, 17.6492567037506], [121.690063454765, 17.6492567037506], [121.690063454765, 17.6440220248121]]]]}, "properties": {"taskId": 1859, "taskX": 54921, "taskY": 36032, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 17.6230817882545], [121.67358396258, 17.6230817882545], [121.67358396258, 17.6335522106155], [121.662597634457, 17.6335522106155], [121.662597634457, 17.6230817882545]]]]}, "properties": {"taskId": 1861, "taskX": 27458, "taskY": 18014, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.05834958769, 18.6150132799934], [121.069335915813, 18.6150132799934], [121.069335915813, 18.6254245374825], [121.05834958769, 18.6254245374825], [121.05834958769, 18.6150132799934]]]]}, "properties": {"taskId": 1936, "taskX": 27403, "taskY": 18109, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.167968728117, 18.4691889012235], [122.17895505624, 18.4691889012235], [122.17895505624, 18.4796090526366], [122.167968728117, 18.4796090526366], [122.167968728117, 18.4691889012235]]]]}, "properties": {"taskId": 1746, "taskX": 27504, "taskY": 18095, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.156982399993, 18.4587681168231], [122.167968728117, 18.4587681168231], [122.167968728117, 18.4691889012235], [122.156982399993, 18.4691889012235], [122.156982399993, 18.4587681168231]]]]}, "properties": {"taskId": 1711, "taskX": 27503, "taskY": 18094, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.14599607187, 18.4587681168231], [122.156982399993, 18.4587681168231], [122.156982399993, 18.4691889012235], [122.14599607187, 18.4691889012235], [122.14599607187, 18.4587681168231]]]]}, "properties": {"taskId": 1709, "taskX": 27502, "taskY": 18094, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.156982399993, 18.4691889012235], [122.167968728117, 18.4691889012235], [122.167968728117, 18.4796090526366], [122.156982399993, 18.4796090526366], [122.156982399993, 18.4691889012235]]]]}, "properties": {"taskId": 1712, "taskX": 27503, "taskY": 18095, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.14599607187, 18.4691889012235], [122.156982399993, 18.4691889012235], [122.156982399993, 18.4796090526366], [122.14599607187, 18.4796090526366], [122.14599607187, 18.4691889012235]]]]}, "properties": {"taskId": 1710, "taskX": 27502, "taskY": 18095, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.3753790908532], [121.618652321965, 18.3753790908532], [121.618652321965, 18.3962301348468], [121.596679665719, 18.3962301348468], [121.596679665719, 18.3753790908532]]]]}, "properties": {"taskId": 1702, "taskX": 13726, "taskY": 9043, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.92626950941, 20.4064204714195], [121.937255837533, 20.4064204714195], [121.937255837533, 20.4167169854434], [121.92626950941, 20.4167169854434], [121.92626950941, 20.4064204714195]]]]}, "properties": {"taskId": 1817, "taskX": 27482, "taskY": 18282, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.937255837533, 20.4167169854434], [121.948242165656, 20.4167169854434], [121.948242165656, 20.4270128107534], [121.937255837533, 20.4270128107534], [121.937255837533, 20.4167169854434]]]]}, "properties": {"taskId": 1820, "taskX": 27483, "taskY": 18283, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.375526799931], [121.915283181287, 20.375526799931], [121.915283181287, 20.3858253783768], [121.904296853164, 20.3858253783768], [121.904296853164, 20.375526799931]]]]}, "properties": {"taskId": 1826, "taskX": 27480, "taskY": 18279, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 17.6335522106155], [121.67358396258, 17.6335522106155], [121.67358396258, 17.6440220248121], [121.662597634457, 17.6440220248121], [121.662597634457, 17.6335522106155]]]]}, "properties": {"taskId": 1862, "taskX": 27458, "taskY": 18015, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.7068281209488], [121.706542946949, 17.7068281209488], [121.706542946949, 17.7120609713899], [121.701049782888, 17.7120609713899], [121.701049782888, 17.7068281209488]]]]}, "properties": {"taskId": 1927, "taskX": 54923, "taskY": 36044, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.047363259567, 18.6150132799934], [121.05834958769, 18.6150132799934], [121.05834958769, 18.6254245374825], [121.047363259567, 18.6254245374825], [121.047363259567, 18.6150132799934]]]]}, "properties": {"taskId": 1934, "taskX": 27402, "taskY": 18109, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.200927712486, 18.4483466997417], [122.211914040609, 18.4483466997417], [122.211914040609, 18.4587681168231], [122.200927712486, 18.4587681168231], [122.200927712486, 18.4483466997417]]]]}, "properties": {"taskId": 1692, "taskX": 27507, "taskY": 18093, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.3545255259514], [121.618652321965, 18.3545255259514], [121.618652321965, 18.3753790908532], [121.596679665719, 18.3753790908532], [121.596679665719, 18.3545255259514]]]]}, "properties": {"taskId": 1701, "taskX": 13726, "taskY": 9042, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 18.3753790908532], [121.640624978211, 18.3753790908532], [121.640624978211, 18.3962301348468], [121.618652321965, 18.3962301348468], [121.618652321965, 18.3753790908532]]]]}, "properties": {"taskId": 1704, "taskX": 13727, "taskY": 9043, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.915283181287, 20.3652275339181], [121.92626950941, 20.3652275339181], [121.92626950941, 20.375526799931], [121.915283181287, 20.375526799931], [121.915283181287, 20.3652275339181]]]]}, "properties": {"taskId": 1827, "taskX": 27481, "taskY": 18278, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.690063454765, 17.6492567037506], [121.695556618826, 17.6492567037506], [121.695556618826, 17.6544912305301], [121.690063454765, 17.6544912305301], [121.690063454765, 17.6492567037506]]]]}, "properties": {"taskId": 1860, "taskX": 54921, "taskY": 36033, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 17.6230817882545], [121.684570290703, 17.6230817882545], [121.684570290703, 17.6335522106155], [121.67358396258, 17.6335522106155], [121.67358396258, 17.6230817882545]]]]}, "properties": {"taskId": 1863, "taskX": 27459, "taskY": 18014, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.7120609713899], [121.706542946949, 17.7120609713899], [121.706542946949, 17.7172936692013], [121.701049782888, 17.7172936692013], [121.701049782888, 17.7120609713899]]]]}, "properties": {"taskId": 1928, "taskX": 54923, "taskY": 36045, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.05834958769, 18.6046013852398], [121.069335915813, 18.6046013852398], [121.069335915813, 18.6150132799934], [121.05834958769, 18.6150132799934], [121.05834958769, 18.6046013852398]]]]}, "properties": {"taskId": 1935, "taskX": 27403, "taskY": 18108, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 17.8951143006479], [121.750488259441, 17.8951143006479], [121.750488259441, 17.9055688088617], [121.739501931318, 17.9055688088617], [121.739501931318, 17.8951143006479]]]]}, "properties": {"taskId": 1763, "taskX": 27465, "taskY": 18040, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 17.6440220248121], [121.442871071996, 17.6440220248121], [121.442871071996, 17.6649598274553], [121.42089841575, 17.6649598274553], [121.42089841575, 17.6440220248121]]]]}, "properties": {"taskId": 1713, "taskX": 13718, "taskY": 9008, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 17.6440220248121], [121.464843728242, 17.6440220248121], [121.464843728242, 17.6649598274553], [121.442871071996, 17.6649598274553], [121.442871071996, 17.6440220248121]]]]}, "properties": {"taskId": 1715, "taskX": 13719, "taskY": 9008, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 18.895892556153], [121.904296853164, 18.895892556153], [121.904296853164, 18.9166797833832], [121.882324196918, 18.9166797833832], [121.882324196918, 18.895892556153]]]]}, "properties": {"taskId": 1731, "taskX": 13739, "taskY": 9068, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.602139120297], [121.794433571933, 17.602139120297], [121.794433571933, 17.6230817882545], [121.772460915687, 17.6230817882545], [121.772460915687, 17.602139120297]]]]}, "properties": {"taskId": 1757, "taskX": 13734, "taskY": 9006, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 17.6649598274553], [121.442871071996, 17.6649598274553], [121.442871071996, 17.6858951936713], [121.42089841575, 17.6858951936713], [121.42089841575, 17.6649598274553]]]]}, "properties": {"taskId": 1714, "taskX": 13718, "taskY": 9009, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.9166797833832], [121.882324196918, 18.9166797833832], [121.882324196918, 18.9374644263732], [121.860351540672, 18.9374644263732], [121.860351540672, 18.9166797833832]]]]}, "properties": {"taskId": 1730, "taskX": 13738, "taskY": 9069, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.602139120297], [121.81640622818, 17.602139120297], [121.81640622818, 17.6230817882545], [121.794433571933, 17.6230817882545], [121.794433571933, 17.602139120297]]]]}, "properties": {"taskId": 1759, "taskX": 13735, "taskY": 9006, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.895892556153], [121.882324196918, 18.895892556153], [121.882324196918, 18.9166797833832], [121.860351540672, 18.9166797833832], [121.860351540672, 18.895892556153]]]]}, "properties": {"taskId": 1729, "taskX": 13738, "taskY": 9068, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 18.9166797833832], [121.904296853164, 18.9166797833832], [121.904296853164, 18.9374644263732], [121.882324196918, 18.9374644263732], [121.882324196918, 18.9166797833832]]]]}, "properties": {"taskId": 1732, "taskX": 13739, "taskY": 9069, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.9160227007731], [121.750488259441, 17.9160227007731], [121.750488259441, 17.9369286344414], [121.728515603195, 17.9369286344414], [121.728515603195, 17.9160227007731]]]]}, "properties": {"taskId": 1738, "taskX": 13732, "taskY": 9021, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 18.4170786554759], [121.552734353227, 18.4170786554759], [121.552734353227, 18.4379246502857], [121.530761696981, 18.4379246502857], [121.530761696981, 18.4170786554759]]]]}, "properties": {"taskId": 1640, "taskX": 13723, "taskY": 9045, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.2293513352315], [121.959228493779, 18.2293513352315], [121.959228493779, 18.2397859676821], [121.948242165656, 18.2397859676821], [121.948242165656, 18.2293513352315]]]]}, "properties": {"taskId": 1749, "taskX": 27484, "taskY": 18072, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.959228493779, 18.2397859676821], [121.970214821902, 18.2397859676821], [121.970214821902, 18.2502199739071], [121.959228493779, 18.2502199739071], [121.959228493779, 18.2397859676821]]]]}, "properties": {"taskId": 1752, "taskX": 27485, "taskY": 18073, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 18.271086106447], [122.102050759378, 18.271086106447], [122.102050759378, 18.2919497303851], [122.080078103132, 18.2919497303851], [122.080078103132, 18.271086106447]]]]}, "properties": {"taskId": 1769, "taskX": 13748, "taskY": 9038, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.102050759378, 18.2919497303851], [122.124023415624, 18.2919497303851], [122.124023415624, 18.3128108432568], [122.102050759378, 18.3128108432568], [122.102050759378, 18.2919497303851]]]]}, "properties": {"taskId": 1772, "taskX": 13749, "taskY": 9039, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.2397859676821], [121.959228493779, 18.2397859676821], [121.959228493779, 18.2502199739071], [121.948242165656, 18.2502199739071], [121.948242165656, 18.2397859676821]]]]}, "properties": {"taskId": 1750, "taskX": 27484, "taskY": 18073, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 18.2919497303851], [122.102050759378, 18.2919497303851], [122.102050759378, 18.3128108432568], [122.080078103132, 18.3128108432568], [122.080078103132, 18.2919497303851]]]]}, "properties": {"taskId": 1770, "taskX": 13748, "taskY": 9039, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.959228493779, 18.2293513352315], [121.970214821902, 18.2293513352315], [121.970214821902, 18.2397859676821], [121.959228493779, 18.2397859676821], [121.959228493779, 18.2293513352315]]]]}, "properties": {"taskId": 1751, "taskX": 27485, "taskY": 18072, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.102050759378, 18.271086106447], [122.124023415624, 18.271086106447], [122.124023415624, 18.2919497303851], [122.102050759378, 18.2919497303851], [122.102050759378, 18.271086106447]]]]}, "properties": {"taskId": 1771, "taskX": 13749, "taskY": 9038, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.2502199739071], [122.058105446886, 18.2502199739071], [122.058105446886, 18.271086106447], [122.03613279064, 18.271086106447], [122.03613279064, 18.2502199739071]]]]}, "properties": {"taskId": 1754, "taskX": 13746, "taskY": 9037, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.602139120297], [121.662597634457, 17.602139120297], [121.662597634457, 17.6230817882545], [121.640624978211, 17.6230817882545], [121.640624978211, 17.602139120297]]]]}, "properties": {"taskId": 1765, "taskX": 13728, "taskY": 9006, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 20.7252908704437], [121.799926735995, 20.7252908704437], [121.799926735995, 20.73042847323], [121.794433571933, 20.73042847323], [121.794433571933, 20.7252908704437]]]]}, "properties": {"taskId": 1773, "taskX": 54940, "taskY": 36626, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.799926735995, 20.73042847323], [121.805419900056, 20.73042847323], [121.805419900056, 20.7355659016665], [121.799926735995, 20.7355659016665], [121.799926735995, 20.73042847323]]]]}, "properties": {"taskId": 1776, "taskX": 54941, "taskY": 36627, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.827392556303, 20.7561138712068], [121.838378884426, 20.7561138712068], [121.838378884426, 20.7663868089583], [121.827392556303, 20.7663868089583], [121.827392556303, 20.7561138712068]]]]}, "properties": {"taskId": 1579, "taskX": 27473, "taskY": 18316, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 20.73042847323], [121.799926735995, 20.73042847323], [121.799926735995, 20.7355659016665], [121.794433571933, 20.7355659016665], [121.794433571933, 20.73042847323]]]]}, "properties": {"taskId": 1774, "taskX": 54940, "taskY": 36627, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.799926735995, 20.7252908704437], [121.805419900056, 20.7252908704437], [121.805419900056, 20.73042847323], [121.799926735995, 20.73042847323], [121.799926735995, 20.7252908704437]]]]}, "properties": {"taskId": 1775, "taskX": 54941, "taskY": 36626, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 18.2919497303851], [121.838378884426, 18.2919497303851], [121.838378884426, 18.3128108432568], [121.81640622818, 18.3128108432568], [121.81640622818, 18.2919497303851]]]]}, "properties": {"taskId": 1734, "taskX": 13736, "taskY": 9039, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.447602394087], [121.959228493779, 20.447602394087], [121.959228493779, 20.4578961515381], [121.948242165656, 20.4578961515381], [121.948242165656, 20.447602394087]]]]}, "properties": {"taskId": 1777, "taskX": 27484, "taskY": 18286, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.959228493779, 20.4578961515381], [121.970214821902, 20.4578961515381], [121.970214821902, 20.4681892191306], [121.959228493779, 20.4681892191306], [121.959228493779, 20.4578961515381]]]]}, "properties": {"taskId": 1780, "taskX": 27485, "taskY": 18287, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.92626950941, 17.9996316117937], [121.948242165656, 17.9996316117937], [121.948242165656, 18.0205276547308], [121.92626950941, 18.0205276547308], [121.92626950941, 17.9996316117937]]]]}, "properties": {"taskId": 1800, "taskX": 13741, "taskY": 9025, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.975707985963, 20.452749359027], [121.981201150025, 20.452749359027], [121.981201150025, 20.4578961515381], [121.975707985963, 20.4578961515381], [121.975707985963, 20.452749359027]]]]}, "properties": {"taskId": 1788, "taskX": 54973, "taskY": 36573, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 20.452749359027], [121.975707985963, 20.452749359027], [121.975707985963, 20.4578961515381], [121.970214821902, 20.4578961515381], [121.970214821902, 20.452749359027]]]]}, "properties": {"taskId": 1786, "taskX": 54972, "taskY": 36573, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.975707985963, 20.447602394087], [121.981201150025, 20.447602394087], [121.981201150025, 20.452749359027], [121.975707985963, 20.452749359027], [121.975707985963, 20.447602394087]]]]}, "properties": {"taskId": 1787, "taskX": 54973, "taskY": 36572, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.9996316117937], [121.92626950941, 17.9996316117937], [121.92626950941, 18.0205276547308], [121.904296853164, 18.0205276547308], [121.904296853164, 17.9996316117937]]]]}, "properties": {"taskId": 1798, "taskX": 13740, "taskY": 9025, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.4373079470634], [121.959228493779, 20.4373079470634], [121.959228493779, 20.447602394087], [121.948242165656, 20.447602394087], [121.948242165656, 20.4373079470634]]]]}, "properties": {"taskId": 1814, "taskX": 27484, "taskY": 18285, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.6963619623342], [121.717529275072, 17.6963619623342], [121.717529275072, 17.7068281209488], [121.706542946949, 17.7068281209488], [121.706542946949, 17.6963619623342]]]]}, "properties": {"taskId": 1870, "taskX": 27462, "taskY": 18021, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.6649598274553], [121.728515603195, 17.6649598274553], [121.728515603195, 17.6754278152737], [121.717529275072, 17.6754278152737], [121.717529275072, 17.6649598274553]]]]}, "properties": {"taskId": 1875, "taskX": 27463, "taskY": 18018, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.712036111011, 17.6230817882545], [121.717529275072, 17.6230817882545], [121.717529275072, 17.6283170754359], [121.712036111011, 17.6283170754359], [121.712036111011, 17.6230817882545]]]]}, "properties": {"taskId": 1903, "taskX": 54925, "taskY": 36028, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.959228493779, 20.4270128107534], [121.970214821902, 20.4270128107534], [121.970214821902, 20.4373079470634], [121.959228493779, 20.4373079470634], [121.959228493779, 20.4270128107534]]]]}, "properties": {"taskId": 1815, "taskX": 27485, "taskY": 18284, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.712036111011, 17.6126107580436], [121.717529275072, 17.6126107580436], [121.717529275072, 17.6178463491106], [121.712036111011, 17.6178463491106], [121.712036111011, 17.6126107580436]]]]}, "properties": {"taskId": 1839, "taskX": 54925, "taskY": 36026, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.6858951936713], [121.728515603195, 17.6858951936713], [121.728515603195, 17.6963619623342], [121.717529275072, 17.6963619623342], [121.717529275072, 17.6858951936713]]]]}, "properties": {"taskId": 1871, "taskX": 27463, "taskY": 18020, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.6754278152737], [121.717529275072, 17.6754278152737], [121.717529275072, 17.6858951936713], [121.706542946949, 17.6858951936713], [121.706542946949, 17.6754278152737]]]]}, "properties": {"taskId": 1874, "taskX": 27462, "taskY": 18019, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.96472165784, 20.447602394087], [121.970214821902, 20.447602394087], [121.970214821902, 20.452749359027], [121.96472165784, 20.452749359027], [121.96472165784, 20.447602394087]]]]}, "properties": {"taskId": 1811, "taskX": 54971, "taskY": 36572, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.6283170754359], [121.723022439134, 17.6283170754359], [121.723022439134, 17.6335522106155], [121.717529275072, 17.6335522106155], [121.717529275072, 17.6283170754359]]]]}, "properties": {"taskId": 1898, "taskX": 54926, "taskY": 36029, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 17.8951143006479], [121.992187478148, 17.8951143006479], [121.992187478148, 17.9160227007731], [121.970214821902, 17.9160227007731], [121.970214821902, 17.8951143006479]]]]}, "properties": {"taskId": 1923, "taskX": 13743, "taskY": 9020, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.959228493779, 20.452749359027], [121.96472165784, 20.452749359027], [121.96472165784, 20.4578961515381], [121.959228493779, 20.4578961515381], [121.959228493779, 20.452749359027]]]]}, "properties": {"taskId": 1810, "taskX": 54970, "taskY": 36573, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.6126107580436], [121.695556618826, 17.6126107580436], [121.695556618826, 17.6230817882545], [121.684570290703, 17.6230817882545], [121.684570290703, 17.6126107580436]]]]}, "properties": {"taskId": 1850, "taskX": 27460, "taskY": 18013, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.5811940234556], [121.706542946949, 17.5811940234556], [121.706542946949, 17.602139120297], [121.684570290703, 17.602139120297], [121.684570290703, 17.5811940234556]]]]}, "properties": {"taskId": 1886, "taskX": 13730, "taskY": 9005, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.723022439134, 17.6230817882545], [121.728515603195, 17.6230817882545], [121.728515603195, 17.6283170754359], [121.723022439134, 17.6283170754359], [121.723022439134, 17.6230817882545]]]]}, "properties": {"taskId": 1899, "taskX": 54927, "taskY": 36028, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 17.8951143006479], [121.970214821902, 17.8951143006479], [121.970214821902, 17.9160227007731], [121.948242165656, 17.9160227007731], [121.948242165656, 17.8951143006479]]]]}, "properties": {"taskId": 1921, "taskX": 13742, "taskY": 9020, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 17.9160227007731], [121.992187478148, 17.9160227007731], [121.992187478148, 17.9369286344414], [121.970214821902, 17.9369286344414], [121.970214821902, 17.9160227007731]]]]}, "properties": {"taskId": 1924, "taskX": 13743, "taskY": 9021, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.92626950941, 17.9787330924414], [121.948242165656, 17.9787330924414], [121.948242165656, 17.9996316117937], [121.92626950941, 17.9996316117937], [121.92626950941, 17.9787330924414]]]]}, "properties": {"taskId": 1799, "taskX": 13741, "taskY": 9024, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.6440220248121], [121.739501931318, 17.6440220248121], [121.739501931318, 17.6544912305301], [121.728515603195, 17.6544912305301], [121.728515603195, 17.6440220248121]]]]}, "properties": {"taskId": 1801, "taskX": 27464, "taskY": 18016, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 17.6544912305301], [121.750488259441, 17.6544912305301], [121.750488259441, 17.6649598274553], [121.739501931318, 17.6649598274553], [121.739501931318, 17.6544912305301]]]]}, "properties": {"taskId": 1804, "taskX": 27465, "taskY": 18017, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.6544912305301], [121.739501931318, 17.6544912305301], [121.739501931318, 17.6649598274553], [121.728515603195, 17.6649598274553], [121.728515603195, 17.6544912305301]]]]}, "properties": {"taskId": 1802, "taskX": 27464, "taskY": 18017, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 17.6440220248121], [121.750488259441, 17.6440220248121], [121.750488259441, 17.6544912305301], [121.739501931318, 17.6544912305301], [121.739501931318, 17.6440220248121]]]]}, "properties": {"taskId": 1803, "taskX": 27465, "taskY": 18016, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.959228493779, 20.4064204714195], [121.970214821902, 20.4064204714195], [121.970214821902, 20.4167169854434], [121.959228493779, 20.4167169854434], [121.959228493779, 20.4064204714195]]]]}, "properties": {"taskId": 1823, "taskX": 27485, "taskY": 18282, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.6073750150926], [121.712036111011, 17.6073750150926], [121.712036111011, 17.6126107580436], [121.706542946949, 17.6126107580436], [121.706542946949, 17.6073750150926]]]]}, "properties": {"taskId": 1842, "taskX": 54924, "taskY": 36025, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.6858951936713], [121.695556618826, 17.6858951936713], [121.695556618826, 17.6963619623342], [121.684570290703, 17.6963619623342], [121.684570290703, 17.6858951936713]]]]}, "properties": {"taskId": 1877, "taskX": 27460, "taskY": 18020, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.6544912305301], [121.717529275072, 17.6544912305301], [121.717529275072, 17.6649598274553], [121.706542946949, 17.6649598274553], [121.706542946949, 17.6544912305301]]]]}, "properties": {"taskId": 1918, "taskX": 27462, "taskY": 18017, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.959228493779, 20.447602394087], [121.96472165784, 20.447602394087], [121.96472165784, 20.452749359027], [121.959228493779, 20.452749359027], [121.959228493779, 20.447602394087]]]]}, "properties": {"taskId": 1809, "taskX": 54970, "taskY": 36572, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.602139120297], [121.706542946949, 17.602139120297], [121.706542946949, 17.6126107580436], [121.695556618826, 17.6126107580436], [121.695556618826, 17.602139120297]]]]}, "properties": {"taskId": 1851, "taskX": 27461, "taskY": 18012, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.5602465002479], [121.728515603195, 17.5602465002479], [121.728515603195, 17.5811940234556], [121.706542946949, 17.5811940234556], [121.706542946949, 17.5602465002479]]]]}, "properties": {"taskId": 1887, "taskX": 13731, "taskY": 9004, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.723022439134, 17.6283170754359], [121.728515603195, 17.6283170754359], [121.728515603195, 17.6335522106155], [121.723022439134, 17.6335522106155], [121.723022439134, 17.6283170754359]]]]}, "properties": {"taskId": 1900, "taskX": 54927, "taskY": 36029, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 17.9160227007731], [121.970214821902, 17.9160227007731], [121.970214821902, 17.9369286344414], [121.948242165656, 17.9369286344414], [121.948242165656, 17.9160227007731]]]]}, "properties": {"taskId": 1922, "taskX": 13742, "taskY": 9021, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.5811940234556], [121.750488259441, 17.5811940234556], [121.750488259441, 17.602139120297], [121.728515603195, 17.602139120297], [121.728515603195, 17.5811940234556]]]]}, "properties": {"taskId": 2034, "taskX": 13732, "taskY": 9005, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.102294900182, 18.5941888535266], [121.113281228305, 18.5941888535266], [121.113281228305, 18.6046013852398], [121.102294900182, 18.6046013852398], [121.102294900182, 18.5941888535266]]]]}, "properties": {"taskId": 2064, "taskX": 27407, "taskY": 18107, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.003173806271, 18.2293513352315], [122.014160134394, 18.2293513352315], [122.014160134394, 18.2397859676821], [122.003173806271, 18.2397859676821], [122.003173806271, 18.2293513352315]]]]}, "properties": {"taskId": 2107, "taskX": 27489, "taskY": 18072, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.3858253783768], [121.915283181287, 20.3858253783768], [121.915283181287, 20.3961232689685], [121.904296853164, 20.3961232689685], [121.904296853164, 20.3858253783768]]]]}, "properties": {"taskId": 1805, "taskX": 27480, "taskY": 18280, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.915283181287, 20.3858253783768], [121.92626950941, 20.3858253783768], [121.92626950941, 20.3961232689685], [121.915283181287, 20.3961232689685], [121.915283181287, 20.3858253783768]]]]}, "properties": {"taskId": 1807, "taskX": 27481, "taskY": 18280, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.271086106447], [121.970214821902, 18.271086106447], [121.970214821902, 18.2919497303851], [121.948242165656, 18.2919497303851], [121.948242165656, 18.271086106447]]]]}, "properties": {"taskId": 1889, "taskX": 13742, "taskY": 9038, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 18.2919497303851], [121.992187478148, 18.2919497303851], [121.992187478148, 18.3128108432568], [121.970214821902, 18.3128108432568], [121.970214821902, 18.2919497303851]]]]}, "properties": {"taskId": 1892, "taskX": 13743, "taskY": 9039, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 18.2293513352315], [121.981201150025, 18.2293513352315], [121.981201150025, 18.2397859676821], [121.970214821902, 18.2397859676821], [121.970214821902, 18.2293513352315]]]]}, "properties": {"taskId": 1989, "taskX": 27486, "taskY": 18072, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.981201150025, 18.2397859676821], [121.992187478148, 18.2397859676821], [121.992187478148, 18.2502199739071], [121.981201150025, 18.2502199739071], [121.981201150025, 18.2397859676821]]]]}, "properties": {"taskId": 1992, "taskX": 27487, "taskY": 18073, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.5759573700272], [121.739501931318, 17.5759573700272], [121.739501931318, 17.5811940234556], [121.734008767257, 17.5811940234556], [121.734008767257, 17.5759573700272]]]]}, "properties": {"taskId": 2044, "taskX": 54929, "taskY": 36019, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.723022439134, 17.6126107580436], [121.725769021164, 17.6126107580436], [121.725769021164, 17.6152285725651], [121.723022439134, 17.6152285725651], [121.723022439134, 17.6126107580436]]]]}, "properties": {"taskId": 2049, "taskX": 109854, "taskY": 72052, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 20.3961232689685], [121.915283181287, 20.3961232689685], [121.915283181287, 20.4064204714195], [121.904296853164, 20.4064204714195], [121.904296853164, 20.3961232689685]]]]}, "properties": {"taskId": 1806, "taskX": 27480, "taskY": 18281, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.915283181287, 20.3961232689685], [121.92626950941, 20.3961232689685], [121.92626950941, 20.4064204714195], [121.915283181287, 20.4064204714195], [121.915283181287, 20.3961232689685]]]]}, "properties": {"taskId": 1808, "taskX": 27481, "taskY": 18281, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 18.271086106447], [121.992187478148, 18.271086106447], [121.992187478148, 18.2919497303851], [121.970214821902, 18.2919497303851], [121.970214821902, 18.271086106447]]]]}, "properties": {"taskId": 1891, "taskX": 13743, "taskY": 9038, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.92626950941, 17.8114560854768], [121.948242165656, 17.8114560854768], [121.948242165656, 17.8323743264764], [121.92626950941, 17.8323743264764], [121.92626950941, 17.8114560854768]]]]}, "properties": {"taskId": 1939, "taskX": 13741, "taskY": 9016, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 18.2397859676821], [121.981201150025, 18.2397859676821], [121.981201150025, 18.2502199739071], [121.970214821902, 18.2502199739071], [121.970214821902, 18.2397859676821]]]]}, "properties": {"taskId": 1990, "taskX": 27486, "taskY": 18073, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.5759573700272], [121.734008767257, 17.5759573700272], [121.734008767257, 17.5811940234556], [121.728515603195, 17.5811940234556], [121.728515603195, 17.5759573700272]]]]}, "properties": {"taskId": 2042, "taskX": 54928, "taskY": 36019, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.725769021164, 17.6126107580436], [121.728515603195, 17.6126107580436], [121.728515603195, 17.6152285725651], [121.725769021164, 17.6152285725651], [121.725769021164, 17.6126107580436]]]]}, "properties": {"taskId": 2051, "taskX": 109855, "taskY": 72052, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.0936442673693], [121.651611306334, 18.0936442673693], [121.651611306334, 18.104087012639], [121.640624978211, 18.104087012639], [121.640624978211, 18.0936442673693]]]]}, "properties": {"taskId": 1982, "taskX": 27456, "taskY": 18059, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.8323743264764], [121.728515603195, 17.8323743264764], [121.728515603195, 17.8428325259552], [121.717529275072, 17.8428325259552], [121.717529275072, 17.8323743264764]]]]}, "properties": {"taskId": 2059, "taskX": 27463, "taskY": 18034, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.255859353101, 18.3128108432568], [122.255859353101, 18.3545255259514], [122.299804665593, 18.3545255259514], [122.299804665593, 18.3128108432568], [122.255859353101, 18.3128108432568]]]]}, "properties": {"taskId": 1469, "taskX": 6878, "taskY": 4520, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 18.2919497303851], [121.970214821902, 18.2919497303851], [121.970214821902, 18.3128108432568], [121.948242165656, 18.3128108432568], [121.948242165656, 18.2919497303851]]]]}, "properties": {"taskId": 1890, "taskX": 13742, "taskY": 9039, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.8114560854768], [121.92626950941, 17.8114560854768], [121.92626950941, 17.8323743264764], [121.904296853164, 17.8323743264764], [121.904296853164, 17.8114560854768]]]]}, "properties": {"taskId": 1937, "taskX": 13740, "taskY": 9016, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.92626950941, 17.8323743264764], [121.948242165656, 17.8323743264764], [121.948242165656, 17.8532901110035], [121.92626950941, 17.8532901110035], [121.92626950941, 17.8323743264764]]]]}, "properties": {"taskId": 1940, "taskX": 13741, "taskY": 9017, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.981201150025, 18.2293513352315], [121.992187478148, 18.2293513352315], [121.992187478148, 18.2397859676821], [121.981201150025, 18.2397859676821], [121.981201150025, 18.2293513352315]]]]}, "properties": {"taskId": 1991, "taskX": 27487, "taskY": 18072, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.723022439134, 17.6152285725651], [121.725769021164, 17.6152285725651], [121.725769021164, 17.6178463491106], [121.723022439134, 17.6178463491106], [121.723022439134, 17.6152285725651]]]]}, "properties": {"taskId": 2050, "taskX": 109854, "taskY": 72053, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.92626950941, 20.3446269403386], [121.937255837533, 20.3446269403386], [121.937255837533, 20.354927580625], [121.92626950941, 20.354927580625], [121.92626950941, 20.3446269403386]]]]}, "properties": {"taskId": 1829, "taskX": 27482, "taskY": 18276, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.937255837533, 20.354927580625], [121.948242165656, 20.354927580625], [121.948242165656, 20.3652275339181], [121.937255837533, 20.3652275339181], [121.937255837533, 20.354927580625]]]]}, "properties": {"taskId": 1832, "taskX": 27483, "taskY": 18277, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.6178463491106], [121.723022439134, 17.6178463491106], [121.723022439134, 17.6230817882545], [121.717529275072, 17.6230817882545], [121.717529275072, 17.6178463491106]]]]}, "properties": {"taskId": 1834, "taskX": 54926, "taskY": 36027, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.6126107580436], [121.739501931318, 17.6126107580436], [121.739501931318, 17.6178463491106], [121.734008767257, 17.6178463491106], [121.734008767257, 17.6126107580436]]]]}, "properties": {"taskId": 1911, "taskX": 54929, "taskY": 36026, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.4270128107534], [121.959228493779, 20.4270128107534], [121.959228493779, 20.4373079470634], [121.948242165656, 20.4373079470634], [121.948242165656, 20.4270128107534]]]]}, "properties": {"taskId": 1813, "taskX": 27484, "taskY": 18284, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.6963619623342], [121.728515603195, 17.6963619623342], [121.728515603195, 17.7068281209488], [121.717529275072, 17.7068281209488], [121.717529275072, 17.6963619623342]]]]}, "properties": {"taskId": 1872, "taskX": 27463, "taskY": 18021, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.6649598274553], [121.717529275072, 17.6649598274553], [121.717529275072, 17.6754278152737], [121.706542946949, 17.6754278152737], [121.706542946949, 17.6649598274553]]]]}, "properties": {"taskId": 1873, "taskX": 27462, "taskY": 18018, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.6754278152737], [121.728515603195, 17.6754278152737], [121.728515603195, 17.6858951936713], [121.717529275072, 17.6858951936713], [121.717529275072, 17.6754278152737]]]]}, "properties": {"taskId": 1876, "taskX": 27463, "taskY": 18019, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.6230817882545], [121.712036111011, 17.6230817882545], [121.712036111011, 17.6283170754359], [121.706542946949, 17.6283170754359], [121.706542946949, 17.6230817882545]]]]}, "properties": {"taskId": 1901, "taskX": 54924, "taskY": 36028, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.712036111011, 17.6283170754359], [121.717529275072, 17.6283170754359], [121.717529275072, 17.6335522106155], [121.712036111011, 17.6335522106155], [121.712036111011, 17.6283170754359]]]]}, "properties": {"taskId": 1904, "taskX": 54925, "taskY": 36029, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.959228493779, 20.4167169854434], [121.970214821902, 20.4167169854434], [121.970214821902, 20.4270128107534], [121.959228493779, 20.4270128107534], [121.959228493779, 20.4167169854434]]]]}, "properties": {"taskId": 1824, "taskX": 27485, "taskY": 18283, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.602139120297], [121.712036111011, 17.602139120297], [121.712036111011, 17.6073750150926], [121.706542946949, 17.6073750150926], [121.706542946949, 17.602139120297]]]]}, "properties": {"taskId": 1841, "taskX": 54924, "taskY": 36024, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.712036111011, 17.6073750150926], [121.717529275072, 17.6073750150926], [121.717529275072, 17.6126107580436], [121.712036111011, 17.6126107580436], [121.712036111011, 17.6073750150926]]]]}, "properties": {"taskId": 1844, "taskX": 54925, "taskY": 36025, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.6963619623342], [121.695556618826, 17.6963619623342], [121.695556618826, 17.7068281209488], [121.684570290703, 17.7068281209488], [121.684570290703, 17.6963619623342]]]]}, "properties": {"taskId": 1878, "taskX": 27460, "taskY": 18021, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.4167169854434], [121.959228493779, 20.4167169854434], [121.959228493779, 20.4270128107534], [121.948242165656, 20.4270128107534], [121.948242165656, 20.4167169854434]]]]}, "properties": {"taskId": 1822, "taskX": 27484, "taskY": 18283, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.712036111011, 17.602139120297], [121.717529275072, 17.602139120297], [121.717529275072, 17.6073750150926], [121.712036111011, 17.6073750150926], [121.712036111011, 17.602139120297]]]]}, "properties": {"taskId": 1843, "taskX": 54925, "taskY": 36024, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.6544912305301], [121.728515603195, 17.6544912305301], [121.728515603195, 17.6649598274553], [121.717529275072, 17.6649598274553], [121.717529275072, 17.6544912305301]]]]}, "properties": {"taskId": 1920, "taskX": 27463, "taskY": 18017, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.92626950941, 20.354927580625], [121.937255837533, 20.354927580625], [121.937255837533, 20.3652275339181], [121.92626950941, 20.3652275339181], [121.92626950941, 20.354927580625]]]]}, "properties": {"taskId": 1830, "taskX": 27482, "taskY": 18277, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.6544912305301], [121.706542946949, 17.6544912305301], [121.706542946949, 17.6649598274553], [121.695556618826, 17.6649598274553], [121.695556618826, 17.6544912305301]]]]}, "properties": {"taskId": 1856, "taskX": 27461, "taskY": 18017, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.937255837533, 20.3446269403386], [121.948242165656, 20.3446269403386], [121.948242165656, 20.354927580625], [121.937255837533, 20.354927580625], [121.937255837533, 20.3446269403386]]]]}, "properties": {"taskId": 1831, "taskX": 27483, "taskY": 18276, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.6440220248121], [121.706542946949, 17.6440220248121], [121.706542946949, 17.6544912305301], [121.695556618826, 17.6544912305301], [121.695556618826, 17.6440220248121]]]]}, "properties": {"taskId": 1855, "taskX": 27461, "taskY": 18016, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.6178463491106], [121.739501931318, 17.6178463491106], [121.739501931318, 17.6230817882545], [121.734008767257, 17.6230817882545], [121.734008767257, 17.6178463491106]]]]}, "properties": {"taskId": 1912, "taskX": 54929, "taskY": 36027, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.8951143006479], [121.618652321965, 17.8951143006479], [121.618652321965, 17.9160227007731], [121.596679665719, 17.9160227007731], [121.596679665719, 17.8951143006479]]]]}, "properties": {"taskId": 1893, "taskX": 13726, "taskY": 9020, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.0205276547308], [121.662597634457, 18.0205276547308], [121.662597634457, 18.0414212187671], [121.640624978211, 18.0414212187671], [121.640624978211, 18.0205276547308]]]]}, "properties": {"taskId": 2097, "taskX": 13728, "taskY": 9026, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.0414212187671], [121.662597634457, 18.0414212187671], [121.662597634457, 18.0518670704211], [121.651611306334, 18.0518670704211], [121.651611306334, 18.0414212187671]]]]}, "properties": {"taskId": 2103, "taskX": 27457, "taskY": 18054, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 19.2904056361732], [121.486816384489, 19.2904056361732], [121.486816384489, 19.3111433517365], [121.464843728242, 19.3111433517365], [121.464843728242, 19.2904056361732]]]]}, "properties": {"taskId": 1950, "taskX": 13720, "taskY": 9087, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.8114560854768], [121.882324196918, 17.8114560854768], [121.882324196918, 17.8323743264764], [121.860351540672, 17.8323743264764], [121.860351540672, 17.8114560854768]]]]}, "properties": {"taskId": 1973, "taskX": 13738, "taskY": 9016, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 17.8323743264764], [121.904296853164, 17.8323743264764], [121.904296853164, 17.8532901110035], [121.882324196918, 17.8532901110035], [121.882324196918, 17.8323743264764]]]]}, "properties": {"taskId": 1976, "taskX": 13739, "taskY": 9017, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.6204640876755], [121.731262185226, 17.6204640876755], [121.731262185226, 17.6230817882545], [121.728515603195, 17.6230817882545], [121.728515603195, 17.6204640876755]]]]}, "properties": {"taskId": 2018, "taskX": 109856, "taskY": 72055, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.140747048613, 18.620218988415], [121.146240212675, 18.620218988415], [121.146240212675, 18.6254245374825], [121.140747048613, 18.6254245374825], [121.140747048613, 18.620218988415]]]]}, "properties": {"taskId": 2024, "taskX": 54821, "taskY": 36219, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.140747048613, 18.6176161541211], [121.143493630644, 18.6176161541211], [121.143493630644, 18.620218988415], [121.140747048613, 18.620218988415], [121.140747048613, 18.6176161541211]]]]}, "properties": {"taskId": 2026, "taskX": 109642, "taskY": 72437, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.9160227007731], [121.618652321965, 17.9160227007731], [121.618652321965, 17.9369286344414], [121.596679665719, 17.9369286344414], [121.596679665719, 17.9160227007731]]]]}, "properties": {"taskId": 1894, "taskX": 13726, "taskY": 9021, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.0414212187671], [121.651611306334, 18.0414212187671], [121.651611306334, 18.0518670704211], [121.640624978211, 18.0518670704211], [121.640624978211, 18.0414212187671]]]]}, "properties": {"taskId": 2101, "taskX": 27456, "taskY": 18054, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 19.2696652931808], [121.486816384489, 19.2696652931808], [121.486816384489, 19.2904056361732], [121.464843728242, 19.2904056361732], [121.464843728242, 19.2696652931808]]]]}, "properties": {"taskId": 1949, "taskX": 13720, "taskY": 9086, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 19.2904056361732], [121.508789040735, 19.2904056361732], [121.508789040735, 19.3111433517365], [121.486816384489, 19.3111433517365], [121.486816384489, 19.2904056361732]]]]}, "properties": {"taskId": 1952, "taskX": 13721, "taskY": 9087, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.0518670704211], [121.662597634457, 18.0518670704211], [121.662597634457, 18.0623123014185], [121.651611306334, 18.0623123014185], [121.651611306334, 18.0518670704211]]]]}, "properties": {"taskId": 2104, "taskX": 27457, "taskY": 18055, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 17.8114560854768], [121.904296853164, 17.8114560854768], [121.904296853164, 17.8323743264764], [121.882324196918, 17.8323743264764], [121.882324196918, 17.8114560854768]]]]}, "properties": {"taskId": 1975, "taskX": 13739, "taskY": 9016, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.6178463491106], [121.731262185226, 17.6178463491106], [121.731262185226, 17.6204640876755], [121.728515603195, 17.6204640876755], [121.728515603195, 17.6178463491106]]]]}, "properties": {"taskId": 2017, "taskX": 109856, "taskY": 72054, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.731262185226, 17.6204640876755], [121.734008767257, 17.6204640876755], [121.734008767257, 17.6230817882545], [121.731262185226, 17.6230817882545], [121.731262185226, 17.6204640876755]]]]}, "properties": {"taskId": 2020, "taskX": 109857, "taskY": 72055, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.140747048613, 18.6150132799934], [121.143493630644, 18.6150132799934], [121.143493630644, 18.6176161541211], [121.140747048613, 18.6176161541211], [121.140747048613, 18.6150132799934]]]]}, "properties": {"taskId": 2025, "taskX": 109642, "taskY": 72436, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.143493630644, 18.6176161541211], [121.146240212675, 18.6176161541211], [121.146240212675, 18.620218988415], [121.143493630644, 18.620218988415], [121.143493630644, 18.6176161541211]]]]}, "properties": {"taskId": 2028, "taskX": 109643, "taskY": 72437, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.255859353101, 18.271086106447], [122.255859353101, 18.3128108432568], [122.299804665593, 18.3128108432568], [122.299804665593, 18.271086106447], [122.255859353101, 18.271086106447]]]]}, "properties": {"taskId": 1468, "taskX": 6878, "taskY": 4519, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 19.2696652931808], [121.508789040735, 19.2696652931808], [121.508789040735, 19.2904056361732], [121.486816384489, 19.2904056361732], [121.486816384489, 19.2696652931808]]]]}, "properties": {"taskId": 1951, "taskX": 13721, "taskY": 9086, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.731262185226, 17.6178463491106], [121.734008767257, 17.6178463491106], [121.734008767257, 17.6204640876755], [121.731262185226, 17.6204640876755], [121.731262185226, 17.6178463491106]]]]}, "properties": {"taskId": 2019, "taskX": 109857, "taskY": 72054, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.135253884552, 18.620218988415], [121.140747048613, 18.620218988415], [121.140747048613, 18.6254245374825], [121.135253884552, 18.6254245374825], [121.135253884552, 18.620218988415]]]]}, "properties": {"taskId": 2022, "taskX": 54820, "taskY": 36219, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.143493630644, 18.6150132799934], [121.146240212675, 18.6150132799934], [121.146240212675, 18.6176161541211], [121.143493630644, 18.6176161541211], [121.143493630644, 18.6150132799934]]]]}, "properties": {"taskId": 2027, "taskX": 109643, "taskY": 72436, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.6283170754359], [121.712036111011, 17.6283170754359], [121.712036111011, 17.6335522106155], [121.706542946949, 17.6335522106155], [121.706542946949, 17.6283170754359]]]]}, "properties": {"taskId": 1902, "taskX": 54924, "taskY": 36029, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.5602465002479], [121.739501931318, 17.5602465002479], [121.739501931318, 17.5707205649901], [121.728515603195, 17.5707205649901], [121.728515603195, 17.5602465002479]]]]}, "properties": {"taskId": 2037, "taskX": 27464, "taskY": 18008, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.2293513352315], [122.003173806271, 18.2293513352315], [122.003173806271, 18.2397859676821], [121.992187478148, 18.2397859676821], [121.992187478148, 18.2293513352315]]]]}, "properties": {"taskId": 2105, "taskX": 27488, "taskY": 18072, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.003173806271, 18.2397859676821], [122.014160134394, 18.2397859676821], [122.014160134394, 18.2502199739071], [122.003173806271, 18.2502199739071], [122.003173806271, 18.2397859676821]]]]}, "properties": {"taskId": 2108, "taskX": 27489, "taskY": 18073, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.0832009002027], [121.662597634457, 18.0832009002027], [121.662597634457, 18.0936442673693], [121.651611306334, 18.0936442673693], [121.651611306334, 18.0832009002027]]]]}, "properties": {"taskId": 1983, "taskX": 27457, "taskY": 18058, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.8323743264764], [121.717529275072, 17.8323743264764], [121.717529275072, 17.8428325259552], [121.706542946949, 17.8428325259552], [121.706542946949, 17.8323743264764]]]]}, "properties": {"taskId": 2057, "taskX": 27462, "taskY": 18034, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.025390603321, 18.6046013852398], [121.047363259567, 18.6046013852398], [121.047363259567, 18.6254245374825], [121.025390603321, 18.6254245374825], [121.025390603321, 18.6046013852398]]]]}, "properties": {"taskId": 1929, "taskX": 13700, "taskY": 9054, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.025390603321, 18.6254245374825], [121.047363259567, 18.6254245374825], [121.047363259567, 18.6462451394485], [121.025390603321, 18.6462451394485], [121.025390603321, 18.6254245374825]]]]}, "properties": {"taskId": 1930, "taskX": 13700, "taskY": 9055, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.047363259567, 18.6254245374825], [121.069335915813, 18.6254245374825], [121.069335915813, 18.6462451394485], [121.047363259567, 18.6462451394485], [121.047363259567, 18.6254245374825]]]]}, "properties": {"taskId": 1932, "taskX": 13701, "taskY": 9055, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.211914040609, 18.104087012639], [122.211914040609, 18.1458517685528], [122.255859353101, 18.1458517685528], [122.255859353101, 18.104087012639], [122.211914040609, 18.104087012639]]]]}, "properties": {"taskId": 1447, "taskX": 6877, "taskY": 4515, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.0832009002027], [121.651611306334, 18.0832009002027], [121.651611306334, 18.0936442673693], [121.640624978211, 18.0936442673693], [121.640624978211, 18.0832009002027]]]]}, "properties": {"taskId": 1981, "taskX": 27456, "taskY": 18058, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.0936442673693], [121.662597634457, 18.0936442673693], [121.662597634457, 18.104087012639], [121.651611306334, 18.104087012639], [121.651611306334, 18.0936442673693]]]]}, "properties": {"taskId": 1984, "taskX": 27457, "taskY": 18059, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.8428325259552], [121.717529275072, 17.8428325259552], [121.717529275072, 17.8532901110035], [121.706542946949, 17.8532901110035], [121.706542946949, 17.8428325259552]]]]}, "properties": {"taskId": 2058, "taskX": 27462, "taskY": 18035, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.3336694425994], [122.058105446886, 18.3336694425994], [122.058105446886, 18.3545255259514], [122.03613279064, 18.3545255259514], [122.03613279064, 18.3336694425994]]]]}, "properties": {"taskId": 1978, "taskX": 13746, "taskY": 9041, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.9996316117937], [121.882324196918, 17.9996316117937], [121.882324196918, 18.0205276547308], [121.860351540672, 18.0205276547308], [121.860351540672, 17.9996316117937]]]]}, "properties": {"taskId": 2054, "taskX": 13738, "taskY": 9025, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.4587681168231], [121.398925759504, 18.4587681168231], [121.398925759504, 18.4796090526366], [121.376953103258, 18.4796090526366], [121.376953103258, 18.4587681168231]]]]}, "properties": {"taskId": 1942, "taskX": 13716, "taskY": 9047, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.9160227007731], [121.761474587564, 17.9160227007731], [121.761474587564, 17.9264759760701], [121.750488259441, 17.9264759760701], [121.750488259441, 17.9160227007731]]]]}, "properties": {"taskId": 1945, "taskX": 27466, "taskY": 18042, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.9160227007731], [121.772460915687, 17.9160227007731], [121.772460915687, 17.9264759760701], [121.761474587564, 17.9264759760701], [121.761474587564, 17.9160227007731]]]]}, "properties": {"taskId": 1947, "taskX": 27467, "taskY": 18042, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.9264759760701], [121.761474587564, 17.9264759760701], [121.761474587564, 17.9369286344414], [121.750488259441, 17.9369286344414], [121.750488259441, 17.9264759760701]]]]}, "properties": {"taskId": 1946, "taskX": 27466, "taskY": 18043, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.9264759760701], [121.772460915687, 17.9264759760701], [121.772460915687, 17.9369286344414], [121.761474587564, 17.9369286344414], [121.761474587564, 17.9264759760701]]]]}, "properties": {"taskId": 1948, "taskX": 27467, "taskY": 18043, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 17.6649598274553], [122.014160134394, 17.6649598274553], [122.014160134394, 17.6858951936713], [121.992187478148, 17.6858951936713], [121.992187478148, 17.6649598274553]]]]}, "properties": {"taskId": 2014, "taskX": 13744, "taskY": 9009, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.96472165784, 20.4373079470634], [121.970214821902, 20.4373079470634], [121.970214821902, 20.4424552567539], [121.96472165784, 20.4424552567539], [121.96472165784, 20.4373079470634]]]]}, "properties": {"taskId": 2011, "taskX": 54971, "taskY": 36570, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 17.5602465002479], [121.750488259441, 17.5602465002479], [121.750488259441, 17.5707205649901], [121.739501931318, 17.5707205649901], [121.739501931318, 17.5602465002479]]]]}, "properties": {"taskId": 2039, "taskX": 27465, "taskY": 18008, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.091308572059, 18.5941888535266], [121.102294900182, 18.5941888535266], [121.102294900182, 18.6046013852398], [121.091308572059, 18.6046013852398], [121.091308572059, 18.5941888535266]]]]}, "properties": {"taskId": 2062, "taskX": 27406, "taskY": 18107, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.2397859676821], [122.003173806271, 18.2397859676821], [122.003173806271, 18.2502199739071], [121.992187478148, 18.2502199739071], [121.992187478148, 18.2397859676821]]]]}, "properties": {"taskId": 2106, "taskX": 27488, "taskY": 18073, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.0623123014185], [121.684570290703, 18.0623123014185], [121.684570290703, 18.0832009002027], [121.662597634457, 18.0832009002027], [121.662597634457, 18.0623123014185]]]]}, "properties": {"taskId": 1955, "taskX": 13729, "taskY": 9028, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.047119118763, 18.2397859676821], [122.058105446886, 18.2397859676821], [122.058105446886, 18.2502199739071], [122.047119118763, 18.2502199739071], [122.047119118763, 18.2397859676821]]]]}, "properties": {"taskId": 1968, "taskX": 27493, "taskY": 18073, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.135253884552, 18.6176161541211], [121.138000466582, 18.6176161541211], [121.138000466582, 18.620218988415], [121.135253884552, 18.620218988415], [121.135253884552, 18.6176161541211]]]]}, "properties": {"taskId": 2030, "taskX": 109640, "taskY": 72437, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 17.5759573700272], [121.74499509538, 17.5759573700272], [121.74499509538, 17.5811940234556], [121.739501931318, 17.5811940234556], [121.739501931318, 17.5759573700272]]]]}, "properties": {"taskId": 2046, "taskX": 54930, "taskY": 36019, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 17.9160227007731], [121.640624978211, 17.9160227007731], [121.640624978211, 17.9264759760701], [121.629638650088, 17.9264759760701], [121.629638650088, 17.9160227007731]]]]}, "properties": {"taskId": 2067, "taskX": 27455, "taskY": 18042, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.92626950941, 17.8951143006479], [121.948242165656, 17.8951143006479], [121.948242165656, 17.9160227007731], [121.92626950941, 17.9160227007731], [121.92626950941, 17.8951143006479]]]]}, "properties": {"taskId": 2075, "taskX": 13741, "taskY": 9020, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.0832009002027], [121.684570290703, 18.0832009002027], [121.684570290703, 18.104087012639], [121.662597634457, 18.104087012639], [121.662597634457, 18.0832009002027]]]]}, "properties": {"taskId": 1956, "taskX": 13729, "taskY": 9029, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.2293513352315], [122.047119118763, 18.2293513352315], [122.047119118763, 18.2397859676821], [122.03613279064, 18.2397859676821], [122.03613279064, 18.2293513352315]]]]}, "properties": {"taskId": 1965, "taskX": 27492, "taskY": 18072, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.047119118763, 18.2293513352315], [122.058105446886, 18.2293513352315], [122.058105446886, 18.2397859676821], [122.047119118763, 18.2397859676821], [122.047119118763, 18.2293513352315]]]]}, "properties": {"taskId": 1967, "taskX": 27493, "taskY": 18072, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.135253884552, 18.6150132799934], [121.138000466582, 18.6150132799934], [121.138000466582, 18.6176161541211], [121.135253884552, 18.6176161541211], [121.135253884552, 18.6150132799934]]]]}, "properties": {"taskId": 2029, "taskX": 109640, "taskY": 72436, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.138000466582, 18.6176161541211], [121.140747048613, 18.6176161541211], [121.140747048613, 18.620218988415], [121.138000466582, 18.620218988415], [121.138000466582, 18.6176161541211]]]]}, "properties": {"taskId": 2032, "taskX": 109641, "taskY": 72437, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.74499509538, 17.5707205649901], [121.750488259441, 17.5707205649901], [121.750488259441, 17.5759573700272], [121.74499509538, 17.5759573700272], [121.74499509538, 17.5707205649901]]]]}, "properties": {"taskId": 2047, "taskX": 54931, "taskY": 36018, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.9264759760701], [121.629638650088, 17.9264759760701], [121.629638650088, 17.9369286344414], [121.618652321965, 17.9369286344414], [121.618652321965, 17.9264759760701]]]]}, "properties": {"taskId": 2066, "taskX": 27454, "taskY": 18043, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.9160227007731], [121.92626950941, 17.9160227007731], [121.92626950941, 17.9369286344414], [121.904296853164, 17.9369286344414], [121.904296853164, 17.9160227007731]]]]}, "properties": {"taskId": 2074, "taskX": 13740, "taskY": 9021, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.4764321941621], [121.805419900056, 17.4764321941621], [121.805419900056, 17.4869110977717], [121.794433571933, 17.4869110977717], [121.794433571933, 17.4764321941621]]]]}, "properties": {"taskId": 1957, "taskX": 27470, "taskY": 18000, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.805419900056, 17.4764321941621], [121.81640622818, 17.4764321941621], [121.81640622818, 17.4869110977717], [121.805419900056, 17.4869110977717], [121.805419900056, 17.4764321941621]]]]}, "properties": {"taskId": 1959, "taskX": 27471, "taskY": 18000, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.4869110977717], [121.805419900056, 17.4869110977717], [121.805419900056, 17.497389397627], [121.794433571933, 17.497389397627], [121.794433571933, 17.4869110977717]]]]}, "properties": {"taskId": 1958, "taskX": 27470, "taskY": 18001, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.805419900056, 17.4869110977717], [121.81640622818, 17.4869110977717], [121.81640622818, 17.497389397627], [121.805419900056, 17.497389397627], [121.805419900056, 17.4869110977717]]]]}, "properties": {"taskId": 1960, "taskX": 27471, "taskY": 18001, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.113281228305, 18.6046013852398], [121.124267556428, 18.6046013852398], [121.124267556428, 18.6150132799934], [121.113281228305, 18.6150132799934], [121.113281228305, 18.6046013852398]]]]}, "properties": {"taskId": 2001, "taskX": 27408, "taskY": 18108, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.124267556428, 18.6150132799934], [121.135253884552, 18.6150132799934], [121.135253884552, 18.6254245374825], [121.124267556428, 18.6254245374825], [121.124267556428, 18.6150132799934]]]]}, "properties": {"taskId": 2004, "taskX": 27409, "taskY": 18109, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.146240212675, 18.6046013852398], [121.157226540798, 18.6046013852398], [121.157226540798, 18.6150132799934], [121.146240212675, 18.6150132799934], [121.146240212675, 18.6046013852398]]]]}, "properties": {"taskId": 2007, "taskX": 27411, "taskY": 18108, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.2397859676821], [122.041625954702, 18.2397859676821], [122.041625954702, 18.245003049092], [122.03613279064, 18.245003049092], [122.03613279064, 18.2397859676821]]]]}, "properties": {"taskId": 1969, "taskX": 54984, "taskY": 36146, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.041625954702, 18.2397859676821], [122.047119118763, 18.2397859676821], [122.047119118763, 18.245003049092], [122.041625954702, 18.245003049092], [122.041625954702, 18.2397859676821]]]]}, "properties": {"taskId": 1971, "taskX": 54985, "taskY": 36146, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.245003049092], [122.041625954702, 18.245003049092], [122.041625954702, 18.2502199739071], [122.03613279064, 18.2502199739071], [122.03613279064, 18.245003049092]]]]}, "properties": {"taskId": 1970, "taskX": 54984, "taskY": 36147, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.041625954702, 18.245003049092], [122.047119118763, 18.245003049092], [122.047119118763, 18.2502199739071], [122.041625954702, 18.2502199739071], [122.041625954702, 18.245003049092]]]]}, "properties": {"taskId": 1972, "taskX": 54985, "taskY": 36147, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 17.9787330924414], [121.904296853164, 17.9787330924414], [121.904296853164, 17.9996316117937], [121.882324196918, 17.9996316117937], [121.882324196918, 17.9787330924414]]]]}, "properties": {"taskId": 2055, "taskX": 13739, "taskY": 9024, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.9787330924414], [121.882324196918, 17.9787330924414], [121.882324196918, 17.9996316117937], [121.860351540672, 17.9996316117937], [121.860351540672, 17.9787330924414]]]]}, "properties": {"taskId": 2053, "taskX": 13738, "taskY": 9024, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 17.9996316117937], [121.904296853164, 17.9996316117937], [121.904296853164, 18.0205276547308], [121.882324196918, 18.0205276547308], [121.882324196918, 17.9996316117937]]]]}, "properties": {"taskId": 2056, "taskX": 13739, "taskY": 9025, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.6126107580436], [121.772460915687, 17.6126107580436], [121.772460915687, 17.6230817882545], [121.761474587564, 17.6230817882545], [121.761474587564, 17.6126107580436]]]]}, "properties": {"taskId": 1988, "taskX": 27467, "taskY": 18013, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.014160134394, 18.2293513352315], [122.03613279064, 18.2293513352315], [122.03613279064, 18.2502199739071], [122.014160134394, 18.2502199739071], [122.014160134394, 18.2293513352315]]]]}, "properties": {"taskId": 1995, "taskX": 13745, "taskY": 9036, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.6126107580436], [121.761474587564, 17.6126107580436], [121.761474587564, 17.6230817882545], [121.750488259441, 17.6230817882545], [121.750488259441, 17.6126107580436]]]]}, "properties": {"taskId": 1986, "taskX": 27466, "taskY": 18013, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 18.2502199739071], [122.014160134394, 18.2502199739071], [122.014160134394, 18.271086106447], [121.992187478148, 18.271086106447], [121.992187478148, 18.2502199739071]]]]}, "properties": {"taskId": 1994, "taskX": 13744, "taskY": 9037, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.602139120297], [121.772460915687, 17.602139120297], [121.772460915687, 17.6126107580436], [121.761474587564, 17.6126107580436], [121.761474587564, 17.602139120297]]]]}, "properties": {"taskId": 1987, "taskX": 27467, "taskY": 18012, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.014160134394, 18.2502199739071], [122.03613279064, 18.2502199739071], [122.03613279064, 18.271086106447], [122.014160134394, 18.271086106447], [122.014160134394, 18.2502199739071]]]]}, "properties": {"taskId": 1996, "taskX": 13745, "taskY": 9037, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.135253884552, 18.6254245374825], [121.157226540798, 18.6254245374825], [121.157226540798, 18.6462451394485], [121.135253884552, 18.6462451394485], [121.135253884552, 18.6254245374825]]]]}, "properties": {"taskId": 2000, "taskX": 13705, "taskY": 9055, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.992187478148, 17.6440220248121], [122.014160134394, 17.6440220248121], [122.014160134394, 17.6649598274553], [121.992187478148, 17.6649598274553], [121.992187478148, 17.6440220248121]]]]}, "properties": {"taskId": 2013, "taskX": 13744, "taskY": 9008, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.014160134394, 17.6649598274553], [122.03613279064, 17.6649598274553], [122.03613279064, 17.6858951936713], [122.014160134394, 17.6858951936713], [122.014160134394, 17.6649598274553]]]]}, "properties": {"taskId": 2016, "taskX": 13745, "taskY": 9009, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.113281228305, 18.6254245374825], [121.135253884552, 18.6254245374825], [121.135253884552, 18.6462451394485], [121.113281228305, 18.6462451394485], [121.113281228305, 18.6254245374825]]]]}, "properties": {"taskId": 1998, "taskX": 13704, "taskY": 9055, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.014160134394, 17.6440220248121], [122.03613279064, 17.6440220248121], [122.03613279064, 17.6649598274553], [122.014160134394, 17.6649598274553], [122.014160134394, 17.6440220248121]]]]}, "properties": {"taskId": 2015, "taskX": 13745, "taskY": 9008, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.124267556428, 18.6046013852398], [121.135253884552, 18.6046013852398], [121.135253884552, 18.6150132799934], [121.124267556428, 18.6150132799934], [121.124267556428, 18.6046013852398]]]]}, "properties": {"taskId": 2003, "taskX": 27409, "taskY": 18108, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.135253884552, 18.6046013852398], [121.146240212675, 18.6046013852398], [121.146240212675, 18.6150132799934], [121.135253884552, 18.6150132799934], [121.135253884552, 18.6046013852398]]]]}, "properties": {"taskId": 2005, "taskX": 27410, "taskY": 18108, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.146240212675, 18.6150132799934], [121.157226540798, 18.6150132799934], [121.157226540798, 18.6254245374825], [121.146240212675, 18.6254245374825], [121.146240212675, 18.6150132799934]]]]}, "properties": {"taskId": 2008, "taskX": 27411, "taskY": 18109, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.959228493779, 20.4373079470634], [121.96472165784, 20.4373079470634], [121.96472165784, 20.4424552567539], [121.959228493779, 20.4424552567539], [121.959228493779, 20.4373079470634]]]]}, "properties": {"taskId": 2009, "taskX": 54970, "taskY": 36570, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.959228493779, 20.4424552567539], [121.96472165784, 20.4424552567539], [121.96472165784, 20.447602394087], [121.959228493779, 20.447602394087], [121.959228493779, 20.4424552567539]]]]}, "properties": {"taskId": 2010, "taskX": 54970, "taskY": 36571, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.138000466582, 18.6150132799934], [121.140747048613, 18.6150132799934], [121.140747048613, 18.6176161541211], [121.138000466582, 18.6176161541211], [121.138000466582, 18.6150132799934]]]]}, "properties": {"taskId": 2031, "taskX": 109641, "taskY": 72436, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 17.5707205649901], [121.74499509538, 17.5707205649901], [121.74499509538, 17.5759573700272], [121.739501931318, 17.5759573700272], [121.739501931318, 17.5707205649901]]]]}, "properties": {"taskId": 2045, "taskX": 54930, "taskY": 36018, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.74499509538, 17.5759573700272], [121.750488259441, 17.5759573700272], [121.750488259441, 17.5811940234556], [121.74499509538, 17.5811940234556], [121.74499509538, 17.5759573700272]]]]}, "properties": {"taskId": 2048, "taskX": 54931, "taskY": 36019, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.9160227007731], [121.629638650088, 17.9160227007731], [121.629638650088, 17.9264759760701], [121.618652321965, 17.9264759760701], [121.618652321965, 17.9160227007731]]]]}, "properties": {"taskId": 2065, "taskX": 27454, "taskY": 18042, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 17.9264759760701], [121.640624978211, 17.9264759760701], [121.640624978211, 17.9369286344414], [121.629638650088, 17.9369286344414], [121.629638650088, 17.9264759760701]]]]}, "properties": {"taskId": 2068, "taskX": 27455, "taskY": 18043, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.92626950941, 17.9160227007731], [121.948242165656, 17.9160227007731], [121.948242165656, 17.9369286344414], [121.92626950941, 17.9369286344414], [121.92626950941, 17.9160227007731]]]]}, "properties": {"taskId": 2076, "taskX": 13741, "taskY": 9021, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.8637470813091], [121.915283181287, 17.8637470813091], [121.915283181287, 17.8742034365596], [121.904296853164, 17.8742034365596], [121.904296853164, 17.8637470813091]]]]}, "properties": {"taskId": 2082, "taskX": 27480, "taskY": 18037, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.915283181287, 17.8637470813091], [121.92626950941, 17.8637470813091], [121.92626950941, 17.8742034365596], [121.915283181287, 17.8742034365596], [121.915283181287, 17.8637470813091]]]]}, "properties": {"taskId": 2084, "taskX": 27481, "taskY": 18037, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.190185525167, 18.6046013852398], [121.20117185329, 18.6046013852398], [121.20117185329, 18.6150132799934], [121.190185525167, 18.6150132799934], [121.190185525167, 18.6046013852398]]]]}, "properties": {"taskId": 2139, "taskX": 27415, "taskY": 18108, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.7591497523209], [121.717529275072, 17.7591497523209], [121.717529275072, 17.7696122440617], [121.706542946949, 17.7696122440617], [121.706542946949, 17.7591497523209]]]]}, "properties": {"taskId": 2154, "taskX": 27462, "taskY": 18027, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.723022439134, 17.7591497523209], [121.728515603195, 17.7591497523209], [121.728515603195, 17.764381074702], [121.723022439134, 17.764381074702], [121.723022439134, 17.7591497523209]]]]}, "properties": {"taskId": 2159, "taskX": 54927, "taskY": 36054, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 17.7696122440617], [121.860351540672, 17.7696122440617], [121.860351540672, 17.7905353905046], [121.838378884426, 17.7905353905046], [121.838378884426, 17.7696122440617]]]]}, "properties": {"taskId": 2171, "taskX": 13737, "taskY": 9014, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.179199197044, 18.6046013852398], [121.184692361105, 18.6046013852398], [121.184692361105, 18.6098074122556], [121.179199197044, 18.6098074122556], [121.179199197044, 18.6046013852398]]]]}, "properties": {"taskId": 2141, "taskX": 54828, "taskY": 36216, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.184692361105, 18.6098074122556], [121.190185525167, 18.6098074122556], [121.190185525167, 18.6150132799934], [121.184692361105, 18.6150132799934], [121.184692361105, 18.6098074122556]]]]}, "properties": {"taskId": 2144, "taskX": 54829, "taskY": 36217, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.92626950941, 17.8742034365596], [121.948242165656, 17.8742034365596], [121.948242165656, 17.8951143006479], [121.92626950941, 17.8951143006479], [121.92626950941, 17.8742034365596]]]]}, "properties": {"taskId": 2072, "taskX": 13741, "taskY": 9019, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.92626950941, 17.8532901110035], [121.948242165656, 17.8532901110035], [121.948242165656, 17.8742034365596], [121.92626950941, 17.8742034365596], [121.92626950941, 17.8532901110035]]]]}, "properties": {"taskId": 2071, "taskX": 13741, "taskY": 9018, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.4483466997417], [121.387939431381, 18.4483466997417], [121.387939431381, 18.4587681168231], [121.376953103258, 18.4587681168231], [121.376953103258, 18.4483466997417]]]]}, "properties": {"taskId": 2086, "taskX": 27432, "taskY": 18093, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.8846591764432], [121.915283181287, 17.8846591764432], [121.915283181287, 17.8951143006479], [121.904296853164, 17.8951143006479], [121.904296853164, 17.8846591764432]]]]}, "properties": {"taskId": 2146, "taskX": 27480, "taskY": 18039, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.069335915813, 18.6046013852398], [121.074829079875, 18.6046013852398], [121.074829079875, 18.6098074122556], [121.069335915813, 18.6098074122556], [121.069335915813, 18.6046013852398]]]]}, "properties": {"taskId": 2181, "taskX": 54808, "taskY": 36216, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.074829079875, 18.6098074122556], [121.080322243936, 18.6098074122556], [121.080322243936, 18.6150132799934], [121.074829079875, 18.6150132799934], [121.074829079875, 18.6098074122556]]]]}, "properties": {"taskId": 2184, "taskX": 54809, "taskY": 36217, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.077575661906, 18.6046013852398], [121.080322243936, 18.6046013852398], [121.080322243936, 18.6072044186551], [121.077575661906, 18.6072044186551], [121.077575661906, 18.6046013852398]]]]}, "properties": {"taskId": 2207, "taskX": 109619, "taskY": 72432, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 17.8951143006479], [121.684570290703, 17.8951143006479], [121.684570290703, 17.9055688088617], [121.67358396258, 17.9055688088617], [121.67358396258, 17.8951143006479]]]]}, "properties": {"taskId": 2223, "taskX": 27459, "taskY": 18040, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 18.3545255259514], [121.629638650088, 18.3545255259514], [121.629638650088, 18.3649526233622], [121.618652321965, 18.3649526233622], [121.618652321965, 18.3545255259514]]]]}, "properties": {"taskId": 2277, "taskX": 27454, "taskY": 18084, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 18.3649526233622], [121.640624978211, 18.3649526233622], [121.640624978211, 18.3753790908532], [121.629638650088, 18.3753790908532], [121.629638650088, 18.3649526233622]]]]}, "properties": {"taskId": 2280, "taskX": 27455, "taskY": 18085, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.9421547321826], [121.646118142272, 17.9421547321826], [121.646118142272, 17.9473806755755], [121.640624978211, 17.9473806755755], [121.640624978211, 17.9421547321826]]]]}, "properties": {"taskId": 2314, "taskX": 54912, "taskY": 36089, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78344724381, 18.0832009002027], [121.794433571933, 18.0832009002027], [121.794433571933, 18.0936442673693], [121.78344724381, 18.0936442673693], [121.78344724381, 18.0832009002027]]]]}, "properties": {"taskId": 2335, "taskX": 27469, "taskY": 18058, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 17.7277586067781], [121.838378884426, 17.7277586067781], [121.838378884426, 17.7486866486513], [121.81640622818, 17.7486866486513], [121.81640622818, 17.7277586067781]]]]}, "properties": {"taskId": 2077, "taskX": 13736, "taskY": 9012, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 17.7277586067781], [121.860351540672, 17.7277586067781], [121.860351540672, 17.7486866486513], [121.838378884426, 17.7486866486513], [121.838378884426, 17.7277586067781]]]]}, "properties": {"taskId": 2079, "taskX": 13737, "taskY": 9012, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 17.7486866486513], [121.838378884426, 17.7486866486513], [121.838378884426, 17.7696122440617], [121.81640622818, 17.7696122440617], [121.81640622818, 17.7486866486513]]]]}, "properties": {"taskId": 2078, "taskX": 13736, "taskY": 9013, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 17.7486866486513], [121.860351540672, 17.7486866486513], [121.860351540672, 17.7696122440617], [121.838378884426, 17.7696122440617], [121.838378884426, 17.7486866486513]]]]}, "properties": {"taskId": 2080, "taskX": 13737, "taskY": 9013, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.8532901110035], [121.915283181287, 17.8532901110035], [121.915283181287, 17.8637470813091], [121.904296853164, 17.8637470813091], [121.904296853164, 17.8532901110035]]]]}, "properties": {"taskId": 2081, "taskX": 27480, "taskY": 18036, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.915283181287, 17.8532901110035], [121.92626950941, 17.8532901110035], [121.92626950941, 17.8637470813091], [121.915283181287, 17.8637470813091], [121.915283181287, 17.8532901110035]]]]}, "properties": {"taskId": 2083, "taskX": 27481, "taskY": 18036, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.0623123014185], [121.530761696981, 18.0623123014185], [121.530761696981, 18.0832009002027], [121.508789040735, 18.0832009002027], [121.508789040735, 18.0623123014185]]]]}, "properties": {"taskId": 2093, "taskX": 13722, "taskY": 9028, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 18.0623123014185], [121.552734353227, 18.0623123014185], [121.552734353227, 18.0832009002027], [121.530761696981, 18.0832009002027], [121.530761696981, 18.0623123014185]]]]}, "properties": {"taskId": 2095, "taskX": 13723, "taskY": 9028, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.376953103258, 18.4379246502857], [121.387939431381, 18.4379246502857], [121.387939431381, 18.4483466997417], [121.376953103258, 18.4483466997417], [121.376953103258, 18.4379246502857]]]]}, "properties": {"taskId": 2085, "taskX": 27432, "taskY": 18092, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.387939431381, 18.4483466997417], [121.398925759504, 18.4483466997417], [121.398925759504, 18.4587681168231], [121.387939431381, 18.4587681168231], [121.387939431381, 18.4483466997417]]]]}, "properties": {"taskId": 2088, "taskX": 27433, "taskY": 18093, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.7277586067781], [121.706542946949, 17.7277586067781], [121.706542946949, 17.7486866486513], [121.684570290703, 17.7486866486513], [121.684570290703, 17.7277586067781]]]]}, "properties": {"taskId": 2125, "taskX": 13730, "taskY": 9012, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.915283181287, 17.8742034365596], [121.92626950941, 17.8742034365596], [121.92626950941, 17.8846591764432], [121.915283181287, 17.8846591764432], [121.915283181287, 17.8742034365596]]]]}, "properties": {"taskId": 2147, "taskX": 27481, "taskY": 18038, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.069335915813, 18.6098074122556], [121.074829079875, 18.6098074122556], [121.074829079875, 18.6150132799934], [121.069335915813, 18.6150132799934], [121.069335915813, 18.6098074122556]]]]}, "properties": {"taskId": 2182, "taskX": 54808, "taskY": 36217, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.074829079875, 18.6072044186551], [121.077575661906, 18.6072044186551], [121.077575661906, 18.6098074122556], [121.074829079875, 18.6098074122556], [121.074829079875, 18.6072044186551]]]]}, "properties": {"taskId": 2206, "taskX": 109618, "taskY": 72433, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 17.8951143006479], [121.67358396258, 17.8951143006479], [121.67358396258, 17.9055688088617], [121.662597634457, 17.9055688088617], [121.662597634457, 17.8951143006479]]]]}, "properties": {"taskId": 2221, "taskX": 27458, "taskY": 18040, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 17.9055688088617], [121.684570290703, 17.9055688088617], [121.684570290703, 17.9160227007731], [121.67358396258, 17.9160227007731], [121.67358396258, 17.9055688088617]]]]}, "properties": {"taskId": 2224, "taskX": 27459, "taskY": 18041, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.646118142272, 17.9369286344414], [121.651611306334, 17.9369286344414], [121.651611306334, 17.9421547321826], [121.646118142272, 17.9421547321826], [121.646118142272, 17.9369286344414]]]]}, "properties": {"taskId": 2315, "taskX": 54913, "taskY": 36088, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.0832009002027], [121.78344724381, 18.0832009002027], [121.78344724381, 18.0936442673693], [121.772460915687, 18.0936442673693], [121.772460915687, 18.0832009002027]]]]}, "properties": {"taskId": 2333, "taskX": 27468, "taskY": 18058, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78344724381, 18.0936442673693], [121.794433571933, 18.0936442673693], [121.794433571933, 18.104087012639], [121.78344724381, 18.104087012639], [121.78344724381, 18.0936442673693]]]]}, "properties": {"taskId": 2336, "taskX": 27469, "taskY": 18059, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.387939431381, 18.4379246502857], [121.398925759504, 18.4379246502857], [121.398925759504, 18.4483466997417], [121.387939431381, 18.4483466997417], [121.387939431381, 18.4379246502857]]]]}, "properties": {"taskId": 2087, "taskX": 27433, "taskY": 18092, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.7277586067781], [121.728515603195, 17.7277586067781], [121.728515603195, 17.7486866486513], [121.706542946949, 17.7486866486513], [121.706542946949, 17.7277586067781]]]]}, "properties": {"taskId": 2127, "taskX": 13731, "taskY": 9012, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.8742034365596], [121.915283181287, 17.8742034365596], [121.915283181287, 17.8846591764432], [121.904296853164, 17.8846591764432], [121.904296853164, 17.8742034365596]]]]}, "properties": {"taskId": 2145, "taskX": 27480, "taskY": 18038, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.915283181287, 17.8846591764432], [121.92626950941, 17.8846591764432], [121.92626950941, 17.8951143006479], [121.915283181287, 17.8951143006479], [121.915283181287, 17.8846591764432]]]]}, "properties": {"taskId": 2148, "taskX": 27481, "taskY": 18039, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.074829079875, 18.6046013852398], [121.077575661906, 18.6046013852398], [121.077575661906, 18.6072044186551], [121.074829079875, 18.6072044186551], [121.074829079875, 18.6046013852398]]]]}, "properties": {"taskId": 2205, "taskX": 109618, "taskY": 72432, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.077575661906, 18.6072044186551], [121.080322243936, 18.6072044186551], [121.080322243936, 18.6098074122556], [121.077575661906, 18.6098074122556], [121.077575661906, 18.6072044186551]]]]}, "properties": {"taskId": 2208, "taskX": 109619, "taskY": 72433, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 17.9055688088617], [121.67358396258, 17.9055688088617], [121.67358396258, 17.9160227007731], [121.662597634457, 17.9160227007731], [121.662597634457, 17.9055688088617]]]]}, "properties": {"taskId": 2222, "taskX": 27458, "taskY": 18041, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 18.3649526233622], [121.629638650088, 18.3649526233622], [121.629638650088, 18.3753790908532], [121.618652321965, 18.3753790908532], [121.618652321965, 18.3649526233622]]]]}, "properties": {"taskId": 2278, "taskX": 27454, "taskY": 18085, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.9369286344414], [121.646118142272, 17.9369286344414], [121.646118142272, 17.9421547321826], [121.640624978211, 17.9421547321826], [121.640624978211, 17.9369286344414]]]]}, "properties": {"taskId": 2313, "taskX": 54912, "taskY": 36088, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.646118142272, 17.9421547321826], [121.651611306334, 17.9421547321826], [121.651611306334, 17.9473806755755], [121.646118142272, 17.9473806755755], [121.646118142272, 17.9421547321826]]]]}, "properties": {"taskId": 2316, "taskX": 54913, "taskY": 36089, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.0936442673693], [121.78344724381, 18.0936442673693], [121.78344724381, 18.104087012639], [121.772460915687, 18.104087012639], [121.772460915687, 18.0936442673693]]]]}, "properties": {"taskId": 2334, "taskX": 27468, "taskY": 18059, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.6230817882545], [121.761474587564, 17.6230817882545], [121.761474587564, 17.6335522106155], [121.750488259441, 17.6335522106155], [121.750488259441, 17.6230817882545]]]]}, "properties": {"taskId": 2089, "taskX": 27466, "taskY": 18014, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.6335522106155], [121.772460915687, 17.6335522106155], [121.772460915687, 17.6440220248121], [121.761474587564, 17.6440220248121], [121.761474587564, 17.6335522106155]]]]}, "properties": {"taskId": 2092, "taskX": 27467, "taskY": 18015, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.168212868921, 18.6150132799934], [121.179199197044, 18.6150132799934], [121.179199197044, 18.6254245374825], [121.168212868921, 18.6254245374825], [121.168212868921, 18.6150132799934]]]]}, "properties": {"taskId": 2136, "taskX": 27413, "taskY": 18109, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.6335522106155], [121.761474587564, 17.6335522106155], [121.761474587564, 17.6440220248121], [121.750488259441, 17.6440220248121], [121.750488259441, 17.6335522106155]]]]}, "properties": {"taskId": 2090, "taskX": 27466, "taskY": 18015, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.6230817882545], [121.772460915687, 17.6230817882545], [121.772460915687, 17.6335522106155], [121.761474587564, 17.6335522106155], [121.761474587564, 17.6230817882545]]]]}, "properties": {"taskId": 2091, "taskX": 27467, "taskY": 18014, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 18.6150132799934], [121.168212868921, 18.6150132799934], [121.168212868921, 18.6254245374825], [121.157226540798, 18.6254245374825], [121.157226540798, 18.6150132799934]]]]}, "properties": {"taskId": 2134, "taskX": 27412, "taskY": 18109, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.184692361105, 18.6046013852398], [121.190185525167, 18.6046013852398], [121.190185525167, 18.6098074122556], [121.184692361105, 18.6098074122556], [121.184692361105, 18.6046013852398]]]]}, "properties": {"taskId": 2143, "taskX": 54829, "taskY": 36216, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.0832009002027], [121.530761696981, 18.0832009002027], [121.530761696981, 18.104087012639], [121.508789040735, 18.104087012639], [121.508789040735, 18.0832009002027]]]]}, "properties": {"taskId": 2094, "taskX": 13722, "taskY": 9029, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 18.0832009002027], [121.552734353227, 18.0832009002027], [121.552734353227, 18.104087012639], [121.530761696981, 18.104087012639], [121.530761696981, 18.0832009002027]]]]}, "properties": {"taskId": 2096, "taskX": 13723, "taskY": 9029, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.080322243936, 18.6072044186551], [121.083068825967, 18.6072044186551], [121.083068825967, 18.6098074122556], [121.080322243936, 18.6098074122556], [121.080322243936, 18.6072044186551]]]]}, "properties": {"taskId": 2194, "taskX": 109620, "taskY": 72433, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.179199197044, 18.6150132799934], [121.190185525167, 18.6150132799934], [121.190185525167, 18.6254245374825], [121.179199197044, 18.6254245374825], [121.179199197044, 18.6150132799934]]]]}, "properties": {"taskId": 2138, "taskX": 27414, "taskY": 18109, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.7486866486513], [121.717529275072, 17.7486866486513], [121.717529275072, 17.7591497523209], [121.706542946949, 17.7591497523209], [121.706542946949, 17.7486866486513]]]]}, "properties": {"taskId": 2153, "taskX": 27462, "taskY": 18026, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.9473806755755], [121.651611306334, 17.9473806755755], [121.651611306334, 17.957832099161], [121.640624978211, 17.957832099161], [121.640624978211, 17.9473806755755]]]]}, "properties": {"taskId": 2310, "taskX": 27456, "taskY": 18045, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.7591497523209], [121.723022439134, 17.7591497523209], [121.723022439134, 17.764381074702], [121.717529275072, 17.764381074702], [121.717529275072, 17.7591497523209]]]]}, "properties": {"taskId": 2157, "taskX": 54926, "taskY": 36054, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.723022439134, 17.764381074702], [121.728515603195, 17.764381074702], [121.728515603195, 17.7696122440617], [121.723022439134, 17.7696122440617], [121.723022439134, 17.764381074702]]]]}, "properties": {"taskId": 2160, "taskX": 54927, "taskY": 36055, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 18.218916076864], [121.684570290703, 18.218916076864], [121.684570290703, 18.2241337842681], [121.679077126642, 18.2241337842681], [121.679077126642, 18.218916076864]]]]}, "properties": {"taskId": 2383, "taskX": 54919, "taskY": 36142, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.080322243936, 18.6150132799934], [121.091308572059, 18.6150132799934], [121.091308572059, 18.6254245374825], [121.080322243936, 18.6254245374825], [121.080322243936, 18.6150132799934]]]]}, "properties": {"taskId": 2180, "taskX": 27405, "taskY": 18109, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.080322243936, 18.6098074122556], [121.085815407998, 18.6098074122556], [121.085815407998, 18.6150132799934], [121.080322243936, 18.6150132799934], [121.080322243936, 18.6098074122556]]]]}, "properties": {"taskId": 2190, "taskX": 54810, "taskY": 36217, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.190185525167, 18.6150132799934], [121.20117185329, 18.6150132799934], [121.20117185329, 18.6254245374825], [121.190185525167, 18.6254245374825], [121.190185525167, 18.6150132799934]]]]}, "properties": {"taskId": 2140, "taskX": 27415, "taskY": 18109, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.7486866486513], [121.728515603195, 17.7486866486513], [121.728515603195, 17.7591497523209], [121.717529275072, 17.7591497523209], [121.717529275072, 17.7486866486513]]]]}, "properties": {"taskId": 2155, "taskX": 27463, "taskY": 18026, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.764381074702], [121.723022439134, 17.764381074702], [121.723022439134, 17.7696122440617], [121.717529275072, 17.7696122440617], [121.717529275072, 17.764381074702]]]]}, "properties": {"taskId": 2158, "taskX": 54926, "taskY": 36055, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 17.7905353905046], [121.860351540672, 17.7905353905046], [121.860351540672, 17.8114560854768], [121.838378884426, 17.8114560854768], [121.838378884426, 17.7905353905046]]]]}, "properties": {"taskId": 2172, "taskX": 13737, "taskY": 9015, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.069335915813, 18.6150132799934], [121.080322243936, 18.6150132799934], [121.080322243936, 18.6254245374825], [121.069335915813, 18.6254245374825], [121.069335915813, 18.6150132799934]]]]}, "properties": {"taskId": 2178, "taskX": 27404, "taskY": 18109, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.080322243936, 18.6046013852398], [121.083068825967, 18.6046013852398], [121.083068825967, 18.6072044186551], [121.080322243936, 18.6072044186551], [121.080322243936, 18.6046013852398]]]]}, "properties": {"taskId": 2193, "taskX": 109620, "taskY": 72432, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 17.9473806755755], [121.662597634457, 17.9473806755755], [121.662597634457, 17.957832099161], [121.651611306334, 17.957832099161], [121.651611306334, 17.9473806755755]]]]}, "properties": {"taskId": 2312, "taskX": 27457, "taskY": 18045, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.218916076864], [121.679077126642, 18.218916076864], [121.679077126642, 18.2241337842681], [121.67358396258, 18.2241337842681], [121.67358396258, 18.218916076864]]]]}, "properties": {"taskId": 2381, "taskX": 54918, "taskY": 36142, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 18.2241337842681], [121.684570290703, 18.2241337842681], [121.684570290703, 18.2293513352315], [121.679077126642, 18.2293513352315], [121.679077126642, 18.2241337842681]]]]}, "properties": {"taskId": 2384, "taskX": 54919, "taskY": 36143, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.8323743264764], [121.915283181287, 17.8323743264764], [121.915283181287, 17.8428325259552], [121.904296853164, 17.8428325259552], [121.904296853164, 17.8323743264764]]]]}, "properties": {"taskId": 2109, "taskX": 27480, "taskY": 18034, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.8428325259552], [121.915283181287, 17.8428325259552], [121.915283181287, 17.8532901110035], [121.904296853164, 17.8532901110035], [121.904296853164, 17.8428325259552]]]]}, "properties": {"taskId": 2110, "taskX": 27480, "taskY": 18035, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.915283181287, 17.8428325259552], [121.92626950941, 17.8428325259552], [121.92626950941, 17.8532901110035], [121.915283181287, 17.8532901110035], [121.915283181287, 17.8428325259552]]]]}, "properties": {"taskId": 2112, "taskX": 27481, "taskY": 18035, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.1458517685528], [121.486816384489, 18.1458517685528], [121.486816384489, 18.1667304070769], [121.464843728242, 18.1667304070769], [121.464843728242, 18.1458517685528]]]]}, "properties": {"taskId": 2121, "taskX": 13720, "taskY": 9032, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.179199197044, 18.6098074122556], [121.184692361105, 18.6098074122556], [121.184692361105, 18.6150132799934], [121.179199197044, 18.6150132799934], [121.179199197044, 18.6098074122556]]]]}, "properties": {"taskId": 2142, "taskX": 54828, "taskY": 36217, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 18.4379246502857], [122.135009743747, 18.4379246502857], [122.135009743747, 18.4483466997417], [122.124023415624, 18.4483466997417], [122.124023415624, 18.4379246502857]]]]}, "properties": {"taskId": 2113, "taskX": 27500, "taskY": 18092, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.088561990029, 18.6098074122556], [121.091308572059, 18.6098074122556], [121.091308572059, 18.6124103660366], [121.088561990029, 18.6124103660366], [121.088561990029, 18.6098074122556]]]]}, "properties": {"taskId": 2199, "taskX": 109623, "taskY": 72434, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.650238015319, 18.3545255259514], [121.651611306334, 18.3545255259514], [121.651611306334, 18.3558289475659], [121.650238015319, 18.3558289475659], [121.650238015319, 18.3545255259514]]]]}, "properties": {"taskId": 2259, "taskX": 219655, "taskY": 144672, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.681823708672, 18.2671738976063], [121.683196999688, 18.2671738976063], [121.683196999688, 18.2684779770181], [121.681823708672, 18.2684779770181], [121.681823708672, 18.2671738976063]]]]}, "properties": {"taskId": 2406, "taskX": 219678, "taskY": 144605, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 17.6858951936713], [121.486816384489, 17.6858951936713], [121.486816384489, 17.7068281209488], [121.464843728242, 17.7068281209488], [121.464843728242, 17.6858951936713]]]]}, "properties": {"taskId": 2409, "taskX": 13720, "taskY": 9010, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 18.4483466997417], [122.135009743747, 18.4483466997417], [122.135009743747, 18.4587681168231], [122.124023415624, 18.4587681168231], [122.124023415624, 18.4483466997417]]]]}, "properties": {"taskId": 2114, "taskX": 27500, "taskY": 18093, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.646118142272, 18.3597391533776], [121.651611306334, 18.3597391533776], [121.651611306334, 18.3649526233622], [121.646118142272, 18.3649526233622], [121.646118142272, 18.3597391533776]]]]}, "properties": {"taskId": 2248, "taskX": 54913, "taskY": 36169, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.683196999688, 18.2671738976063], [121.684570290703, 18.2671738976063], [121.684570290703, 18.2684779770181], [121.683196999688, 18.2684779770181], [121.683196999688, 18.2671738976063]]]]}, "properties": {"taskId": 2408, "taskX": 219679, "taskY": 144605, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.085815407998, 18.6098074122556], [121.088561990029, 18.6098074122556], [121.088561990029, 18.6124103660366], [121.085815407998, 18.6124103660366], [121.085815407998, 18.6098074122556]]]]}, "properties": {"taskId": 2197, "taskX": 109622, "taskY": 72434, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.088561990029, 18.6124103660366], [121.091308572059, 18.6124103660366], [121.091308572059, 18.6150132799934], [121.088561990029, 18.6150132799934], [121.088561990029, 18.6124103660366]]]]}, "properties": {"taskId": 2200, "taskX": 109623, "taskY": 72435, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.648864724303, 18.3545255259514], [121.650238015319, 18.3545255259514], [121.650238015319, 18.3558289475659], [121.648864724303, 18.3558289475659], [121.648864724303, 18.3545255259514]]]]}, "properties": {"taskId": 2257, "taskX": 219654, "taskY": 144672, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.650238015319, 18.3558289475659], [121.651611306334, 18.3558289475659], [121.651611306334, 18.3571323593422], [121.650238015319, 18.3571323593422], [121.650238015319, 18.3558289475659]]]]}, "properties": {"taskId": 2260, "taskX": 219655, "taskY": 144673, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 17.7172936692013], [121.470336892304, 17.7172936692013], [121.470336892304, 17.7225262143437], [121.464843728242, 17.7225262143437], [121.464843728242, 17.7172936692013]]]]}, "properties": {"taskId": 2417, "taskX": 54880, "taskY": 36046, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.470336892304, 17.7225262143437], [121.475830056365, 17.7225262143437], [121.475830056365, 17.7277586067781], [121.470336892304, 17.7277586067781], [121.470336892304, 17.7225262143437]]]]}, "properties": {"taskId": 2420, "taskX": 54881, "taskY": 36047, "taskZoom": 16, "taskSplittable": true, "taskStatus": "INVALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.681823708672, 18.2658698083971], [121.683196999688, 18.2658698083971], [121.683196999688, 18.2671738976063], [121.681823708672, 18.2671738976063], [121.681823708672, 18.2658698083971]]]]}, "properties": {"taskId": 2405, "taskX": 219678, "taskY": 144604, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.135009743747, 18.4379246502857], [122.14599607187, 18.4379246502857], [122.14599607187, 18.4483466997417], [122.135009743747, 18.4483466997417], [122.135009743747, 18.4379246502857]]]]}, "properties": {"taskId": 2115, "taskX": 27501, "taskY": 18092, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.085815407998, 18.6124103660366], [121.088561990029, 18.6124103660366], [121.088561990029, 18.6150132799934], [121.085815407998, 18.6150132799934], [121.085815407998, 18.6124103660366]]]]}, "properties": {"taskId": 2198, "taskX": 109622, "taskY": 72435, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.3597391533776], [121.646118142272, 18.3597391533776], [121.646118142272, 18.3649526233622], [121.640624978211, 18.3649526233622], [121.640624978211, 18.3597391533776]]]]}, "properties": {"taskId": 2246, "taskX": 54912, "taskY": 36169, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.648864724303, 18.3558289475659], [121.650238015319, 18.3558289475659], [121.650238015319, 18.3571323593422], [121.648864724303, 18.3571323593422], [121.648864724303, 18.3558289475659]]]]}, "properties": {"taskId": 2258, "taskX": 219654, "taskY": 144673, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.683196999688, 18.2658698083971], [121.684570290703, 18.2658698083971], [121.684570290703, 18.2671738976063], [121.683196999688, 18.2671738976063], [121.683196999688, 18.2658698083971]]]]}, "properties": {"taskId": 2407, "taskX": 219679, "taskY": 144604, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.470336892304, 17.7172936692013], [121.475830056365, 17.7172936692013], [121.475830056365, 17.7225262143437], [121.470336892304, 17.7225262143437], [121.470336892304, 17.7172936692013]]]]}, "properties": {"taskId": 2419, "taskX": 54881, "taskY": 36046, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 18.6254245374825], [121.179199197044, 18.6254245374825], [121.179199197044, 18.6462451394485], [121.157226540798, 18.6462451394485], [121.157226540798, 18.6254245374825]]]]}, "properties": {"taskId": 2118, "taskX": 13706, "taskY": 9055, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.179199197044, 18.6254245374825], [121.20117185329, 18.6254245374825], [121.20117185329, 18.6462451394485], [121.179199197044, 18.6462451394485], [121.179199197044, 18.6254245374825]]]]}, "properties": {"taskId": 2120, "taskX": 13707, "taskY": 9055, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.915283181287, 17.8323743264764], [121.920776345348, 17.8323743264764], [121.920776345348, 17.8376035030001], [121.915283181287, 17.8376035030001], [121.915283181287, 17.8323743264764]]]]}, "properties": {"taskId": 2129, "taskX": 54962, "taskY": 36068, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.920776345348, 17.8323743264764], [121.92626950941, 17.8323743264764], [121.92626950941, 17.8376035030001], [121.920776345348, 17.8376035030001], [121.920776345348, 17.8323743264764]]]]}, "properties": {"taskId": 2131, "taskX": 54963, "taskY": 36068, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.915283181287, 17.8376035030001], [121.920776345348, 17.8376035030001], [121.920776345348, 17.8428325259552], [121.915283181287, 17.8428325259552], [121.915283181287, 17.8376035030001]]]]}, "properties": {"taskId": 2130, "taskX": 54962, "taskY": 36069, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.920776345348, 17.8376035030001], [121.92626950941, 17.8376035030001], [121.92626950941, 17.8428325259552], [121.920776345348, 17.8428325259552], [121.920776345348, 17.8376035030001]]]]}, "properties": {"taskId": 2132, "taskX": 54963, "taskY": 36069, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.8951143006479], [121.915283181287, 17.8951143006479], [121.915283181287, 17.9055688088617], [121.904296853164, 17.9055688088617], [121.904296853164, 17.8951143006479]]]]}, "properties": {"taskId": 2149, "taskX": 27480, "taskY": 18040, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.915283181287, 17.8951143006479], [121.92626950941, 17.8951143006479], [121.92626950941, 17.9055688088617], [121.915283181287, 17.9055688088617], [121.915283181287, 17.8951143006479]]]]}, "properties": {"taskId": 2151, "taskX": 27481, "taskY": 18040, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.9055688088617], [121.915283181287, 17.9055688088617], [121.915283181287, 17.9160227007731], [121.904296853164, 17.9160227007731], [121.904296853164, 17.9055688088617]]]]}, "properties": {"taskId": 2150, "taskX": 27480, "taskY": 18041, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.915283181287, 17.9055688088617], [121.92626950941, 17.9055688088617], [121.92626950941, 17.9160227007731], [121.915283181287, 17.9160227007731], [121.915283181287, 17.9055688088617]]]]}, "properties": {"taskId": 2152, "taskX": 27481, "taskY": 18041, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.2084801928881], [121.684570290703, 18.2084801928881], [121.684570290703, 18.218916076864], [121.67358396258, 18.218916076864], [121.67358396258, 18.2084801928881]]]]}, "properties": {"taskId": 2211, "taskX": 27459, "taskY": 18070, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.069335915813, 18.5837756851588], [121.080322243936, 18.5837756851588], [121.080322243936, 18.5941888535266], [121.069335915813, 18.5941888535266], [121.069335915813, 18.5837756851588]]]]}, "properties": {"taskId": 2161, "taskX": 27404, "taskY": 18106, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.080322243936, 18.5837756851588], [121.091308572059, 18.5837756851588], [121.091308572059, 18.5941888535266], [121.080322243936, 18.5941888535266], [121.080322243936, 18.5837756851588]]]]}, "properties": {"taskId": 2163, "taskX": 27405, "taskY": 18106, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.047119118763, 18.3128108432568], [122.058105446886, 18.3128108432568], [122.058105446886, 18.3232404572731], [122.047119118763, 18.3232404572731], [122.047119118763, 18.3128108432568]]]]}, "properties": {"taskId": 2167, "taskX": 27493, "taskY": 18080, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 17.7905353905046], [121.827392556303, 17.7905353905046], [121.827392556303, 17.800996044581], [121.81640622818, 17.800996044581], [121.81640622818, 17.7905353905046]]]]}, "properties": {"taskId": 2173, "taskX": 27472, "taskY": 18030, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.827392556303, 17.800996044581], [121.838378884426, 17.800996044581], [121.838378884426, 17.8114560854768], [121.827392556303, 17.8114560854768], [121.827392556303, 17.800996044581]]]]}, "properties": {"taskId": 2176, "taskX": 27473, "taskY": 18031, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.088561990029, 18.6046013852398], [121.091308572059, 18.6046013852398], [121.091308572059, 18.6072044186551], [121.088561990029, 18.6072044186551], [121.088561990029, 18.6046013852398]]]]}, "properties": {"taskId": 2203, "taskX": 109623, "taskY": 72432, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.104087012639], [121.794433571933, 18.104087012639], [121.794433571933, 18.1249706362482], [121.772460915687, 18.1249706362482], [121.772460915687, 18.104087012639]]]]}, "properties": {"taskId": 2349, "taskX": 13734, "taskY": 9030, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.1354115139683], [121.78344724381, 18.1354115139683], [121.78344724381, 18.1458517685528], [121.772460915687, 18.1458517685528], [121.772460915687, 18.1354115139683]]]]}, "properties": {"taskId": 2354, "taskX": 27468, "taskY": 18063, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 17.7068281209488], [121.475830056365, 17.7068281209488], [121.475830056365, 17.7172936692013], [121.464843728242, 17.7172936692013], [121.464843728242, 17.7068281209488]]]]}, "properties": {"taskId": 2413, "taskX": 27440, "taskY": 18022, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.069335915813, 18.5941888535266], [121.080322243936, 18.5941888535266], [121.080322243936, 18.6046013852398], [121.069335915813, 18.6046013852398], [121.069335915813, 18.5941888535266]]]]}, "properties": {"taskId": 2162, "taskX": 27404, "taskY": 18107, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.3128108432568], [122.047119118763, 18.3128108432568], [122.047119118763, 18.3232404572731], [122.03613279064, 18.3232404572731], [122.03613279064, 18.3128108432568]]]]}, "properties": {"taskId": 2165, "taskX": 27492, "taskY": 18080, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.047119118763, 18.3232404572731], [122.058105446886, 18.3232404572731], [122.058105446886, 18.3336694425994], [122.047119118763, 18.3336694425994], [122.047119118763, 18.3232404572731]]]]}, "properties": {"taskId": 2168, "taskX": 27493, "taskY": 18081, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 17.800996044581], [121.827392556303, 17.800996044581], [121.827392556303, 17.8114560854768], [121.81640622818, 17.8114560854768], [121.81640622818, 17.800996044581]]]]}, "properties": {"taskId": 2174, "taskX": 27472, "taskY": 18031, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.052856423629, 18.6098074122556], [121.05834958769, 18.6098074122556], [121.05834958769, 18.6150132799934], [121.052856423629, 18.6150132799934], [121.052856423629, 18.6098074122556]]]]}, "properties": {"taskId": 2188, "taskX": 54805, "taskY": 36217, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.088561990029, 18.6072044186551], [121.091308572059, 18.6072044186551], [121.091308572059, 18.6098074122556], [121.088561990029, 18.6098074122556], [121.088561990029, 18.6072044186551]]]]}, "properties": {"taskId": 2204, "taskX": 109623, "taskY": 72433, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78344724381, 18.1249706362482], [121.794433571933, 18.1249706362482], [121.794433571933, 18.1354115139683], [121.78344724381, 18.1354115139683], [121.78344724381, 18.1249706362482]]]]}, "properties": {"taskId": 2355, "taskX": 27469, "taskY": 18062, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 17.7225262143437], [121.470336892304, 17.7225262143437], [121.470336892304, 17.7277586067781], [121.464843728242, 17.7277586067781], [121.464843728242, 17.7225262143437]]]]}, "properties": {"taskId": 2418, "taskX": 54880, "taskY": 36047, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.3232404572731], [122.047119118763, 18.3232404572731], [122.047119118763, 18.3336694425994], [122.03613279064, 18.3336694425994], [122.03613279064, 18.3232404572731]]]]}, "properties": {"taskId": 2166, "taskX": 27492, "taskY": 18081, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.827392556303, 17.7905353905046], [121.838378884426, 17.7905353905046], [121.838378884426, 17.800996044581], [121.827392556303, 17.800996044581], [121.827392556303, 17.7905353905046]]]]}, "properties": {"taskId": 2175, "taskX": 27473, "taskY": 18030, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.475830056365, 17.7068281209488], [121.486816384489, 17.7068281209488], [121.486816384489, 17.7172936692013], [121.475830056365, 17.7172936692013], [121.475830056365, 17.7068281209488]]]]}, "properties": {"taskId": 2415, "taskX": 27441, "taskY": 18022, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.1249706362482], [121.78344724381, 18.1249706362482], [121.78344724381, 18.1354115139683], [121.772460915687, 18.1354115139683], [121.772460915687, 18.1249706362482]]]]}, "properties": {"taskId": 2353, "taskX": 27468, "taskY": 18062, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78344724381, 18.1354115139683], [121.794433571933, 18.1354115139683], [121.794433571933, 18.1458517685528], [121.78344724381, 18.1458517685528], [121.78344724381, 18.1354115139683]]]]}, "properties": {"taskId": 2356, "taskX": 27469, "taskY": 18063, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.047363259567, 18.6098074122556], [121.052856423629, 18.6098074122556], [121.052856423629, 18.6150132799934], [121.047363259567, 18.6150132799934], [121.047363259567, 18.6098074122556]]]]}, "properties": {"taskId": 2186, "taskX": 54804, "taskY": 36217, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.2658698083971], [121.646118142272, 18.2658698083971], [121.646118142272, 18.271086106447], [121.640624978211, 18.271086106447], [121.640624978211, 18.2658698083971]]]]}, "properties": {"taskId": 2274, "taskX": 54912, "taskY": 36151, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.0832009002027], [121.882324196918, 18.0832009002027], [121.882324196918, 18.104087012639], [121.860351540672, 18.104087012639], [121.860351540672, 18.0832009002027]]]]}, "properties": {"taskId": 2370, "taskX": 13738, "taskY": 9029, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.218916076864], [121.67358396258, 18.218916076864], [121.67358396258, 18.2293513352315], [121.662597634457, 18.2293513352315], [121.662597634457, 18.218916076864]]]]}, "properties": {"taskId": 2210, "taskX": 27458, "taskY": 18071, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.05560300566, 18.6046013852398], [121.05834958769, 18.6046013852398], [121.05834958769, 18.6072044186551], [121.05560300566, 18.6072044186551], [121.05560300566, 18.6046013852398]]]]}, "properties": {"taskId": 2291, "taskX": 109611, "taskY": 72432, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.8742034365596], [121.794433571933, 17.8742034365596], [121.794433571933, 17.8951143006479], [121.772460915687, 17.8951143006479], [121.772460915687, 17.8742034365596]]]]}, "properties": {"taskId": 2326, "taskX": 13734, "taskY": 9019, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.0623123014185], [121.794433571933, 18.0623123014185], [121.794433571933, 18.0832009002027], [121.772460915687, 18.0832009002027], [121.772460915687, 18.0623123014185]]]]}, "properties": {"taskId": 2329, "taskX": 13734, "taskY": 9028, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.1145291357018], [121.739501931318, 18.1145291357018], [121.739501931318, 18.1249706362482], [121.728515603195, 18.1249706362482], [121.728515603195, 18.1145291357018]]]]}, "properties": {"taskId": 2346, "taskX": 27464, "taskY": 18061, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 18.104087012639], [121.750488259441, 18.104087012639], [121.750488259441, 18.1145291357018], [121.739501931318, 18.1145291357018], [121.739501931318, 18.104087012639]]]]}, "properties": {"taskId": 2347, "taskX": 27465, "taskY": 18060, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.052856423629, 18.6072044186551], [121.05560300566, 18.6072044186551], [121.05560300566, 18.6098074122556], [121.052856423629, 18.6098074122556], [121.052856423629, 18.6072044186551]]]]}, "properties": {"taskId": 2290, "taskX": 109610, "taskY": 72433, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.8532901110035], [121.794433571933, 17.8532901110035], [121.794433571933, 17.8742034365596], [121.772460915687, 17.8742034365596], [121.772460915687, 17.8532901110035]]]]}, "properties": {"taskId": 2325, "taskX": 13734, "taskY": 9018, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.8742034365596], [121.81640622818, 17.8742034365596], [121.81640622818, 17.8951143006479], [121.794433571933, 17.8951143006479], [121.794433571933, 17.8742034365596]]]]}, "properties": {"taskId": 2328, "taskX": 13735, "taskY": 9019, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 18.0623123014185], [121.81640622818, 18.0623123014185], [121.81640622818, 18.0832009002027], [121.794433571933, 18.0832009002027], [121.794433571933, 18.0623123014185]]]]}, "properties": {"taskId": 2331, "taskX": 13735, "taskY": 9028, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 17.9369286344414], [121.657104470395, 17.9369286344414], [121.657104470395, 17.9421547321826], [121.651611306334, 17.9421547321826], [121.651611306334, 17.9369286344414]]]]}, "properties": {"taskId": 2317, "taskX": 54914, "taskY": 36088, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 17.9369286344414], [121.662597634457, 17.9369286344414], [121.662597634457, 17.9421547321826], [121.657104470395, 17.9421547321826], [121.657104470395, 17.9369286344414]]]]}, "properties": {"taskId": 2319, "taskX": 54915, "taskY": 36088, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.1249706362482], [121.739501931318, 18.1249706362482], [121.739501931318, 18.1354115139683], [121.728515603195, 18.1354115139683], [121.728515603195, 18.1249706362482]]]]}, "properties": {"taskId": 2341, "taskX": 27464, "taskY": 18062, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 18.1249706362482], [121.750488259441, 18.1249706362482], [121.750488259441, 18.1354115139683], [121.739501931318, 18.1354115139683], [121.739501931318, 18.1249706362482]]]]}, "properties": {"taskId": 2343, "taskX": 27465, "taskY": 18062, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.6858951936713], [121.794433571933, 17.6858951936713], [121.794433571933, 17.7068281209488], [121.772460915687, 17.7068281209488], [121.772460915687, 17.6858951936713]]]]}, "properties": {"taskId": 2213, "taskX": 13734, "taskY": 9010, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.6858951936713], [121.81640622818, 17.6858951936713], [121.81640622818, 17.7068281209488], [121.794433571933, 17.7068281209488], [121.794433571933, 17.6858951936713]]]]}, "properties": {"taskId": 2215, "taskX": 13735, "taskY": 9010, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.9055688088617], [121.651611306334, 17.9055688088617], [121.651611306334, 17.9160227007731], [121.640624978211, 17.9160227007731], [121.640624978211, 17.9055688088617]]]]}, "properties": {"taskId": 2218, "taskX": 27456, "taskY": 18041, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.646118142272, 18.3584357612796], [121.647491433288, 18.3584357612796], [121.647491433288, 18.3597391533776], [121.646118142272, 18.3597391533776], [121.646118142272, 18.3584357612796]]]]}, "properties": {"taskId": 2254, "taskX": 219652, "taskY": 144675, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.2606533535982], [121.657104470395, 18.2606533535982], [121.657104470395, 18.2658698083971], [121.651611306334, 18.2658698083971], [121.651611306334, 18.2606533535982]]]]}, "properties": {"taskId": 2269, "taskX": 54914, "taskY": 36150, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 18.2658698083971], [121.662597634457, 18.2658698083971], [121.662597634457, 18.271086106447], [121.657104470395, 18.271086106447], [121.657104470395, 18.2658698083971]]]]}, "properties": {"taskId": 2272, "taskX": 54915, "taskY": 36151, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 18.104087012639], [121.772460915687, 18.104087012639], [121.772460915687, 18.1249706362482], [121.750488259441, 18.1249706362482], [121.750488259441, 18.104087012639]]]]}, "properties": {"taskId": 2339, "taskX": 13733, "taskY": 9030, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.7068281209488], [121.794433571933, 17.7068281209488], [121.794433571933, 17.7277586067781], [121.772460915687, 17.7277586067781], [121.772460915687, 17.7068281209488]]]]}, "properties": {"taskId": 2214, "taskX": 13734, "taskY": 9011, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.7068281209488], [121.81640622818, 17.7068281209488], [121.81640622818, 17.7277586067781], [121.794433571933, 17.7277586067781], [121.794433571933, 17.7068281209488]]]]}, "properties": {"taskId": 2216, "taskX": 13735, "taskY": 9011, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 17.9055688088617], [121.662597634457, 17.9055688088617], [121.662597634457, 17.9160227007731], [121.651611306334, 17.9160227007731], [121.651611306334, 17.9055688088617]]]]}, "properties": {"taskId": 2220, "taskX": 27457, "taskY": 18041, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.647491433288, 18.3571323593422], [121.648864724303, 18.3571323593422], [121.648864724303, 18.3584357612796], [121.647491433288, 18.3584357612796], [121.647491433288, 18.3571323593422]]]]}, "properties": {"taskId": 2255, "taskX": 219653, "taskY": 144674, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.2658698083971], [121.657104470395, 18.2658698083971], [121.657104470395, 18.271086106447], [121.651611306334, 18.271086106447], [121.651611306334, 18.2658698083971]]]]}, "properties": {"taskId": 2270, "taskX": 54914, "taskY": 36151, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 17.9421547321826], [121.657104470395, 17.9421547321826], [121.657104470395, 17.9473806755755], [121.651611306334, 17.9473806755755], [121.651611306334, 17.9421547321826]]]]}, "properties": {"taskId": 2318, "taskX": 54914, "taskY": 36089, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 17.9421547321826], [121.662597634457, 17.9421547321826], [121.662597634457, 17.9473806755755], [121.657104470395, 17.9473806755755], [121.657104470395, 17.9421547321826]]]]}, "properties": {"taskId": 2320, "taskX": 54915, "taskY": 36089, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.1354115139683], [121.739501931318, 18.1354115139683], [121.739501931318, 18.1458517685528], [121.728515603195, 18.1458517685528], [121.728515603195, 18.1354115139683]]]]}, "properties": {"taskId": 2342, "taskX": 27464, "taskY": 18063, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 18.1354115139683], [121.750488259441, 18.1354115139683], [121.750488259441, 18.1458517685528], [121.739501931318, 18.1458517685528], [121.739501931318, 18.1354115139683]]]]}, "properties": {"taskId": 2344, "taskX": 27465, "taskY": 18063, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.646118142272, 18.3571323593422], [121.647491433288, 18.3571323593422], [121.647491433288, 18.3584357612796], [121.646118142272, 18.3584357612796], [121.646118142272, 18.3571323593422]]]]}, "properties": {"taskId": 2253, "taskX": 219652, "taskY": 144674, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.647491433288, 18.3584357612796], [121.648864724303, 18.3584357612796], [121.648864724303, 18.3597391533776], [121.647491433288, 18.3597391533776], [121.647491433288, 18.3584357612796]]]]}, "properties": {"taskId": 2256, "taskX": 219653, "taskY": 144675, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 18.2606533535982], [121.662597634457, 18.2606533535982], [121.662597634457, 18.2658698083971], [121.657104470395, 18.2658698083971], [121.657104470395, 18.2606533535982]]]]}, "properties": {"taskId": 2271, "taskX": 54915, "taskY": 36150, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 18.1249706362482], [121.772460915687, 18.1249706362482], [121.772460915687, 18.1458517685528], [121.750488259441, 18.1458517685528], [121.750488259441, 18.1249706362482]]]]}, "properties": {"taskId": 2340, "taskX": 13733, "taskY": 9031, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 17.9369286344414], [121.684570290703, 17.9369286344414], [121.684570290703, 17.957832099161], [121.662597634457, 17.957832099161], [121.662597634457, 17.9369286344414]]]]}, "properties": {"taskId": 2227, "taskX": 13729, "taskY": 9022, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.957832099161], [121.662597634457, 17.957832099161], [121.662597634457, 17.9787330924414], [121.640624978211, 17.9787330924414], [121.640624978211, 17.957832099161]]]]}, "properties": {"taskId": 2226, "taskX": 13728, "taskY": 9023, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 17.957832099161], [121.684570290703, 17.957832099161], [121.684570290703, 17.9787330924414], [121.662597634457, 17.9787330924414], [121.662597634457, 17.957832099161]]]]}, "properties": {"taskId": 2228, "taskX": 13729, "taskY": 9023, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.648864724303, 18.3571323593422], [121.651611306334, 18.3571323593422], [121.651611306334, 18.3597391533776], [121.648864724303, 18.3597391533776], [121.648864724303, 18.3571323593422]]]]}, "properties": {"taskId": 2252, "taskX": 109827, "taskY": 72337, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 18.3597391533776], [121.635131814149, 18.3597391533776], [121.635131814149, 18.3649526233622], [121.629638650088, 18.3649526233622], [121.629638650088, 18.3597391533776]]]]}, "properties": {"taskId": 2282, "taskX": 54910, "taskY": 36169, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.635131814149, 18.3597391533776], [121.640624978211, 18.3597391533776], [121.640624978211, 18.3649526233622], [121.635131814149, 18.3649526233622], [121.635131814149, 18.3597391533776]]]]}, "properties": {"taskId": 2284, "taskX": 54911, "taskY": 36169, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.3336694425994], [121.618652321965, 18.3336694425994], [121.618652321965, 18.3545255259514], [121.596679665719, 18.3545255259514], [121.596679665719, 18.3336694425994]]]]}, "properties": {"taskId": 2286, "taskX": 13726, "taskY": 9041, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.2606533535982], [121.67358396258, 18.2606533535982], [121.67358396258, 18.271086106447], [121.662597634457, 18.271086106447], [121.662597634457, 18.2606533535982]]]]}, "properties": {"taskId": 2294, "taskX": 27458, "taskY": 18075, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.2606533535982], [121.679077126642, 18.2606533535982], [121.679077126642, 18.2658698083971], [121.67358396258, 18.2658698083971], [121.67358396258, 18.2606533535982]]]]}, "properties": {"taskId": 2301, "taskX": 54918, "taskY": 36150, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 18.2606533535982], [121.684570290703, 18.2606533535982], [121.684570290703, 18.2658698083971], [121.679077126642, 18.2658698083971], [121.679077126642, 18.2606533535982]]]]}, "properties": {"taskId": 2303, "taskX": 54919, "taskY": 36150, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.3545255259514], [121.684570290703, 18.3545255259514], [121.684570290703, 18.3753790908532], [121.662597634457, 18.3753790908532], [121.662597634457, 18.3545255259514]]]]}, "properties": {"taskId": 2231, "taskX": 13729, "taskY": 9042, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.3545255259514], [121.654357888365, 18.3545255259514], [121.654357888365, 18.3571323593422], [121.651611306334, 18.3571323593422], [121.651611306334, 18.3545255259514]]]]}, "properties": {"taskId": 2241, "taskX": 109828, "taskY": 72336, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.654357888365, 18.3545255259514], [121.657104470395, 18.3545255259514], [121.657104470395, 18.3571323593422], [121.654357888365, 18.3571323593422], [121.654357888365, 18.3545255259514]]]]}, "properties": {"taskId": 2243, "taskX": 109829, "taskY": 72336, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.3753790908532], [121.662597634457, 18.3753790908532], [121.662597634457, 18.3962301348468], [121.640624978211, 18.3962301348468], [121.640624978211, 18.3753790908532]]]]}, "properties": {"taskId": 2230, "taskX": 13728, "taskY": 9043, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.3753790908532], [121.684570290703, 18.3753790908532], [121.684570290703, 18.3962301348468], [121.662597634457, 18.3962301348468], [121.662597634457, 18.3753790908532]]]]}, "properties": {"taskId": 2232, "taskX": 13729, "taskY": 9043, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.3649526233622], [121.651611306334, 18.3649526233622], [121.651611306334, 18.3753790908532], [121.640624978211, 18.3753790908532], [121.640624978211, 18.3649526233622]]]]}, "properties": {"taskId": 2234, "taskX": 27456, "taskY": 18085, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.3649526233622], [121.662597634457, 18.3649526233622], [121.662597634457, 18.3753790908532], [121.651611306334, 18.3753790908532], [121.651611306334, 18.3649526233622]]]]}, "properties": {"taskId": 2236, "taskX": 27457, "taskY": 18085, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.3571323593422], [121.654357888365, 18.3571323593422], [121.654357888365, 18.3597391533776], [121.651611306334, 18.3597391533776], [121.651611306334, 18.3571323593422]]]]}, "properties": {"taskId": 2242, "taskX": 109828, "taskY": 72337, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.654357888365, 18.3571323593422], [121.657104470395, 18.3571323593422], [121.657104470395, 18.3597391533776], [121.654357888365, 18.3597391533776], [121.654357888365, 18.3571323593422]]]]}, "properties": {"taskId": 2244, "taskX": 109829, "taskY": 72337, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 18.3545255259514], [121.662597634457, 18.3545255259514], [121.662597634457, 18.3597391533776], [121.657104470395, 18.3597391533776], [121.657104470395, 18.3545255259514]]]]}, "properties": {"taskId": 2239, "taskX": 54915, "taskY": 36168, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.3597391533776], [121.657104470395, 18.3597391533776], [121.657104470395, 18.3649526233622], [121.651611306334, 18.3649526233622], [121.651611306334, 18.3597391533776]]]]}, "properties": {"taskId": 2238, "taskX": 54914, "taskY": 36169, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 18.3597391533776], [121.662597634457, 18.3597391533776], [121.662597634457, 18.3649526233622], [121.657104470395, 18.3649526233622], [121.657104470395, 18.3597391533776]]]]}, "properties": {"taskId": 2240, "taskX": 54915, "taskY": 36169, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.635131814149, 18.3545255259514], [121.640624978211, 18.3545255259514], [121.640624978211, 18.3597391533776], [121.635131814149, 18.3597391533776], [121.635131814149, 18.3545255259514]]]]}, "properties": {"taskId": 2283, "taskX": 54911, "taskY": 36168, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.3128108432568], [121.618652321965, 18.3128108432568], [121.618652321965, 18.3336694425994], [121.596679665719, 18.3336694425994], [121.596679665719, 18.3128108432568]]]]}, "properties": {"taskId": 2285, "taskX": 13726, "taskY": 9040, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.2502199739071], [121.67358396258, 18.2502199739071], [121.67358396258, 18.2606533535982], [121.662597634457, 18.2606533535982], [121.662597634457, 18.2502199739071]]]]}, "properties": {"taskId": 2293, "taskX": 27458, "taskY": 18074, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.2502199739071], [121.684570290703, 18.2502199739071], [121.684570290703, 18.2606533535982], [121.67358396258, 18.2606533535982], [121.67358396258, 18.2502199739071]]]]}, "properties": {"taskId": 2295, "taskX": 27459, "taskY": 18074, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.2293513352315], [121.662597634457, 18.2293513352315], [121.662597634457, 18.2502199739071], [121.640624978211, 18.2502199739071], [121.640624978211, 18.2293513352315]]]]}, "properties": {"taskId": 2261, "taskX": 13728, "taskY": 9036, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.083068825967, 18.6072044186551], [121.084442116982, 18.6072044186551], [121.084442116982, 18.6085059204325], [121.083068825967, 18.6085059204325], [121.083068825967, 18.6072044186551]]]]}, "properties": {"taskId": 2297, "taskX": 219242, "taskY": 144866, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.084442116982, 18.6085059204325], [121.085815407998, 18.6085059204325], [121.085815407998, 18.6098074122556], [121.084442116982, 18.6098074122556], [121.084442116982, 18.6085059204325]]]]}, "properties": {"taskId": 2300, "taskX": 219243, "taskY": 144867, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.084442116982, 18.6072044186551], [121.085815407998, 18.6072044186551], [121.085815407998, 18.6085059204325], [121.084442116982, 18.6085059204325], [121.084442116982, 18.6072044186551]]]]}, "properties": {"taskId": 2299, "taskX": 219243, "taskY": 144866, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.083068825967, 18.6085059204325], [121.084442116982, 18.6085059204325], [121.084442116982, 18.6098074122556], [121.083068825967, 18.6098074122556], [121.083068825967, 18.6085059204325]]]]}, "properties": {"taskId": 2298, "taskX": 219242, "taskY": 144867, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.2502199739071], [121.651611306334, 18.2502199739071], [121.651611306334, 18.2606533535982], [121.640624978211, 18.2606533535982], [121.640624978211, 18.2502199739071]]]]}, "properties": {"taskId": 2265, "taskX": 27456, "taskY": 18074, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.2502199739071], [121.662597634457, 18.2502199739071], [121.662597634457, 18.2606533535982], [121.651611306334, 18.2606533535982], [121.651611306334, 18.2502199739071]]]]}, "properties": {"taskId": 2267, "taskX": 27457, "taskY": 18074, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.052856423629, 18.6046013852398], [121.05560300566, 18.6046013852398], [121.05560300566, 18.6072044186551], [121.052856423629, 18.6072044186551], [121.052856423629, 18.6046013852398]]]]}, "properties": {"taskId": 2289, "taskX": 109610, "taskY": 72432, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.05560300566, 18.6072044186551], [121.05834958769, 18.6072044186551], [121.05834958769, 18.6098074122556], [121.05560300566, 18.6098074122556], [121.05560300566, 18.6072044186551]]]]}, "properties": {"taskId": 2292, "taskX": 109611, "taskY": 72433, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.8532901110035], [121.81640622818, 17.8532901110035], [121.81640622818, 17.8742034365596], [121.794433571933, 17.8742034365596], [121.794433571933, 17.8532901110035]]]]}, "properties": {"taskId": 2327, "taskX": 13735, "taskY": 9018, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.104087012639], [121.739501931318, 18.104087012639], [121.739501931318, 18.1145291357018], [121.728515603195, 18.1145291357018], [121.728515603195, 18.104087012639]]]]}, "properties": {"taskId": 2345, "taskX": 27464, "taskY": 18060, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 18.1145291357018], [121.750488259441, 18.1145291357018], [121.750488259441, 18.1249706362482], [121.739501931318, 18.1249706362482], [121.739501931318, 18.1145291357018]]]]}, "properties": {"taskId": 2348, "taskX": 27465, "taskY": 18061, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.2606533535982], [121.646118142272, 18.2606533535982], [121.646118142272, 18.2658698083971], [121.640624978211, 18.2658698083971], [121.640624978211, 18.2606533535982]]]]}, "properties": {"taskId": 2273, "taskX": 54912, "taskY": 36150, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.646118142272, 18.2658698083971], [121.651611306334, 18.2658698083971], [121.651611306334, 18.271086106447], [121.646118142272, 18.271086106447], [121.646118142272, 18.2658698083971]]]]}, "properties": {"taskId": 2276, "taskX": 54913, "taskY": 36151, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 17.8532901110035], [122.124023415624, 17.8951143006479], [122.167968728117, 17.8951143006479], [122.167968728117, 17.8532901110035], [122.124023415624, 17.8532901110035]]]]}, "properties": {"taskId": 1359, "taskX": 6875, "taskY": 4509, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 18.0623123014185], [121.904296853164, 18.0623123014185], [121.904296853164, 18.0832009002027], [121.882324196918, 18.0832009002027], [121.882324196918, 18.0623123014185]]]]}, "properties": {"taskId": 2371, "taskX": 13739, "taskY": 9028, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.646118142272, 18.2606533535982], [121.651611306334, 18.2606533535982], [121.651611306334, 18.2658698083971], [121.646118142272, 18.2658698083971], [121.646118142272, 18.2606533535982]]]]}, "properties": {"taskId": 2275, "taskX": 54913, "taskY": 36150, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.0623123014185], [121.882324196918, 18.0623123014185], [121.882324196918, 18.0832009002027], [121.860351540672, 18.0832009002027], [121.860351540672, 18.0623123014185]]]]}, "properties": {"taskId": 2369, "taskX": 13738, "taskY": 9028, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 18.0832009002027], [121.904296853164, 18.0832009002027], [121.904296853164, 18.104087012639], [121.882324196918, 18.104087012639], [121.882324196918, 18.0832009002027]]]]}, "properties": {"taskId": 2372, "taskX": 13739, "taskY": 9029, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.96472165784, 20.452749359027], [121.967468239871, 20.452749359027], [121.967468239871, 20.4553227768383], [121.96472165784, 20.4553227768383], [121.96472165784, 20.452749359027]]]]}, "properties": {"taskId": 2305, "taskX": 109942, "taskY": 73146, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.967468239871, 20.4553227768383], [121.970214821902, 20.4553227768383], [121.970214821902, 20.4578961515381], [121.967468239871, 20.4578961515381], [121.967468239871, 20.4553227768383]]]]}, "properties": {"taskId": 2308, "taskX": 109943, "taskY": 73147, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.96472165784, 20.4553227768383], [121.967468239871, 20.4553227768383], [121.967468239871, 20.4578961515381], [121.96472165784, 20.4578961515381], [121.96472165784, 20.4553227768383]]]]}, "properties": {"taskId": 2306, "taskX": 109942, "taskY": 73147, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.967468239871, 20.452749359027], [121.970214821902, 20.452749359027], [121.970214821902, 20.4553227768383], [121.967468239871, 20.4553227768383], [121.967468239871, 20.452749359027]]]]}, "properties": {"taskId": 2307, "taskX": 109943, "taskY": 73146, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.2241337842681], [121.679077126642, 18.2241337842681], [121.679077126642, 18.2293513352315], [121.67358396258, 18.2293513352315], [121.67358396258, 18.2241337842681]]]]}, "properties": {"taskId": 2382, "taskX": 54918, "taskY": 36143, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.3545255259514], [121.643371560242, 18.3545255259514], [121.643371560242, 18.3571323593422], [121.640624978211, 18.3571323593422], [121.640624978211, 18.3545255259514]]]]}, "properties": {"taskId": 2321, "taskX": 109824, "taskY": 72336, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.643371560242, 18.3545255259514], [121.646118142272, 18.3545255259514], [121.646118142272, 18.3571323593422], [121.643371560242, 18.3571323593422], [121.643371560242, 18.3545255259514]]]]}, "properties": {"taskId": 2323, "taskX": 109825, "taskY": 72336, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.9891826615141], [121.915283181287, 17.9891826615141], [121.915283181287, 17.9996316117937], [121.904296853164, 17.9996316117937], [121.904296853164, 17.9891826615141]]]]}, "properties": {"taskId": 2358, "taskX": 27480, "taskY": 18049, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.915283181287, 17.9891826615141], [121.92626950941, 17.9891826615141], [121.92626950941, 17.9996316117937], [121.915283181287, 17.9996316117937], [121.915283181287, 17.9891826615141]]]]}, "properties": {"taskId": 2360, "taskX": 27481, "taskY": 18049, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.6099929055511], [121.731262185226, 17.6099929055511], [121.731262185226, 17.6126107580436], [121.728515603195, 17.6126107580436], [121.728515603195, 17.6099929055511]]]]}, "properties": {"taskId": 2402, "taskX": 109856, "taskY": 72051, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.800996044581], [121.805419900056, 17.800996044581], [121.805419900056, 17.8114560854768], [121.794433571933, 17.8114560854768], [121.794433571933, 17.800996044581]]]]}, "properties": {"taskId": 2502, "taskX": 27470, "taskY": 18031, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.723022439134, 17.6178463491106], [121.725769021164, 17.6178463491106], [121.725769021164, 17.6204640876755], [121.723022439134, 17.6204640876755], [121.723022439134, 17.6178463491106]]]]}, "properties": {"taskId": 2393, "taskX": 109854, "taskY": 72054, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.725769021164, 17.6204640876755], [121.728515603195, 17.6204640876755], [121.728515603195, 17.6230817882545], [121.725769021164, 17.6230817882545], [121.725769021164, 17.6204640876755]]]]}, "properties": {"taskId": 2396, "taskX": 109855, "taskY": 72055, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.3961232689685], [121.959228493779, 20.3961232689685], [121.959228493779, 20.4064204714195], [121.948242165656, 20.4064204714195], [121.948242165656, 20.3961232689685]]]]}, "properties": {"taskId": 2430, "taskX": 27484, "taskY": 18281, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.9787330924414], [121.915283181287, 17.9787330924414], [121.915283181287, 17.9891826615141], [121.904296853164, 17.9891826615141], [121.904296853164, 17.9787330924414]]]]}, "properties": {"taskId": 2357, "taskX": 27480, "taskY": 18048, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.915283181287, 17.9787330924414], [121.92626950941, 17.9787330924414], [121.92626950941, 17.9891826615141], [121.915283181287, 17.9891826615141], [121.915283181287, 17.9787330924414]]]]}, "properties": {"taskId": 2359, "taskX": 27481, "taskY": 18048, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.731262185226, 17.6073750150926], [121.734008767257, 17.6073750150926], [121.734008767257, 17.6099929055511], [121.731262185226, 17.6099929055511], [121.731262185226, 17.6073750150926]]]]}, "properties": {"taskId": 2403, "taskX": 109857, "taskY": 72050, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.7905353905046], [121.805419900056, 17.7905353905046], [121.805419900056, 17.800996044581], [121.794433571933, 17.800996044581], [121.794433571933, 17.7905353905046]]]]}, "properties": {"taskId": 2501, "taskX": 27470, "taskY": 18030, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.805419900056, 17.800996044581], [121.81640622818, 17.800996044581], [121.81640622818, 17.8114560854768], [121.805419900056, 17.8114560854768], [121.805419900056, 17.800996044581]]]]}, "properties": {"taskId": 2504, "taskX": 27471, "taskY": 18031, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.725769021164, 17.6152285725651], [121.72714231218, 17.6152285725651], [121.72714231218, 17.6165374655852], [121.725769021164, 17.6165374655852], [121.725769021164, 17.6152285725651]]]]}, "properties": {"taskId": 2377, "taskX": 219710, "taskY": 144106, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.72714231218, 17.6165374655852], [121.728515603195, 17.6165374655852], [121.728515603195, 17.6178463491106], [121.72714231218, 17.6178463491106], [121.72714231218, 17.6165374655852]]]]}, "properties": {"taskId": 2380, "taskX": 219711, "taskY": 144107, "taskZoom": 18, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.6152285725651], [121.731262185226, 17.6152285725651], [121.731262185226, 17.6178463491106], [121.728515603195, 17.6178463491106], [121.728515603195, 17.6152285725651]]]]}, "properties": {"taskId": 2398, "taskX": 109856, "taskY": 72053, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 18.0205276547308], [121.860351540672, 18.0205276547308], [121.860351540672, 18.0414212187671], [121.838378884426, 18.0414212187671], [121.838378884426, 18.0205276547308]]]]}, "properties": {"taskId": 2555, "taskX": 13737, "taskY": 9026, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.135009743747, 18.3962301348468], [122.14599607187, 18.3962301348468], [122.14599607187, 18.4066547107354], [122.135009743747, 18.4066547107354], [122.135009743747, 18.3962301348468]]]]}, "properties": {"taskId": 2363, "taskX": 27501, "taskY": 18088, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.8428325259552], [121.723022439134, 17.8428325259552], [121.723022439134, 17.8480613953027], [121.717529275072, 17.8480613953027], [121.717529275072, 17.8428325259552]]]]}, "properties": {"taskId": 2365, "taskX": 54926, "taskY": 36070, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.723022439134, 17.8480613953027], [121.728515603195, 17.8480613953027], [121.728515603195, 17.8532901110035], [121.723022439134, 17.8532901110035], [121.723022439134, 17.8480613953027]]]]}, "properties": {"taskId": 2368, "taskX": 54927, "taskY": 36071, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 18.2684779770181], [121.681823708672, 18.2684779770181], [121.681823708672, 18.271086106447], [121.679077126642, 18.271086106447], [121.679077126642, 18.2684779770181]]]]}, "properties": {"taskId": 2390, "taskX": 109838, "taskY": 72303, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.7277586067781], [121.882324196918, 17.7277586067781], [121.882324196918, 17.7486866486513], [121.860351540672, 17.7486866486513], [121.860351540672, 17.7277586067781]]]]}, "properties": {"taskId": 2493, "taskX": 13738, "taskY": 9012, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 17.7486866486513], [121.904296853164, 17.7486866486513], [121.904296853164, 17.7696122440617], [121.882324196918, 17.7696122440617], [121.882324196918, 17.7486866486513]]]]}, "properties": {"taskId": 2496, "taskX": 13739, "taskY": 9013, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 17.6230817882545], [121.750488259441, 17.6230817882545], [121.750488259441, 17.6335522106155], [121.739501931318, 17.6335522106155], [121.739501931318, 17.6230817882545]]]]}, "properties": {"taskId": 2515, "taskX": 27465, "taskY": 18014, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.72714231218, 17.6152285725651], [121.728515603195, 17.6152285725651], [121.728515603195, 17.6165374655852], [121.72714231218, 17.6165374655852], [121.72714231218, 17.6152285725651]]]]}, "properties": {"taskId": 2379, "taskX": 219711, "taskY": 144106, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.6126107580436], [121.731262185226, 17.6126107580436], [121.731262185226, 17.6152285725651], [121.728515603195, 17.6152285725651], [121.728515603195, 17.6126107580436]]]]}, "properties": {"taskId": 2397, "taskX": 109856, "taskY": 72052, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.731262185226, 17.6152285725651], [121.734008767257, 17.6152285725651], [121.734008767257, 17.6178463491106], [121.731262185226, 17.6178463491106], [121.731262185226, 17.6152285725651]]]]}, "properties": {"taskId": 2400, "taskX": 109857, "taskY": 72053, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.957832099161], [121.750488259441, 17.957832099161], [121.750488259441, 17.9787330924414], [121.728515603195, 17.9787330924414], [121.728515603195, 17.957832099161]]]]}, "properties": {"taskId": 2466, "taskX": 13732, "taskY": 9023, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 18.0205276547308], [121.838378884426, 18.0205276547308], [121.838378884426, 18.0414212187671], [121.81640622818, 18.0414212187671], [121.81640622818, 18.0205276547308]]]]}, "properties": {"taskId": 2553, "taskX": 13736, "taskY": 9026, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 18.3962301348468], [122.135009743747, 18.3962301348468], [122.135009743747, 18.4066547107354], [122.124023415624, 18.4066547107354], [122.124023415624, 18.3962301348468]]]]}, "properties": {"taskId": 2361, "taskX": 27500, "taskY": 18088, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.135009743747, 18.4066547107354], [122.14599607187, 18.4066547107354], [122.14599607187, 18.4170786554759], [122.135009743747, 18.4170786554759], [122.135009743747, 18.4066547107354]]]]}, "properties": {"taskId": 2364, "taskX": 27501, "taskY": 18089, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.7486866486513], [121.882324196918, 17.7486866486513], [121.882324196918, 17.7696122440617], [121.860351540672, 17.7696122440617], [121.860351540672, 17.7486866486513]]]]}, "properties": {"taskId": 2494, "taskX": 13738, "taskY": 9013, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.8480613953027], [121.723022439134, 17.8480613953027], [121.723022439134, 17.8532901110035], [121.717529275072, 17.8532901110035], [121.717529275072, 17.8480613953027]]]]}, "properties": {"taskId": 2366, "taskX": 54926, "taskY": 36071, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 18.2658698083971], [121.681823708672, 18.2658698083971], [121.681823708672, 18.2684779770181], [121.679077126642, 18.2684779770181], [121.679077126642, 18.2658698083971]]]]}, "properties": {"taskId": 2389, "taskX": 109838, "taskY": 72302, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.681823708672, 18.2684779770181], [121.684570290703, 18.2684779770181], [121.684570290703, 18.271086106447], [121.681823708672, 18.271086106447], [121.681823708672, 18.2684779770181]]]]}, "properties": {"taskId": 2392, "taskX": 109839, "taskY": 72303, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 18.4066547107354], [122.135009743747, 18.4066547107354], [122.135009743747, 18.4170786554759], [122.124023415624, 18.4170786554759], [122.124023415624, 18.4066547107354]]]]}, "properties": {"taskId": 2362, "taskX": 27500, "taskY": 18089, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.723022439134, 17.8428325259552], [121.728515603195, 17.8428325259552], [121.728515603195, 17.8480613953027], [121.723022439134, 17.8480613953027], [121.723022439134, 17.8428325259552]]]]}, "properties": {"taskId": 2367, "taskX": 54927, "taskY": 36070, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 17.7277586067781], [121.904296853164, 17.7277586067781], [121.904296853164, 17.7486866486513], [121.882324196918, 17.7486866486513], [121.882324196918, 17.7277586067781]]]]}, "properties": {"taskId": 2495, "taskX": 13739, "taskY": 9012, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 17.6335522106155], [121.750488259441, 17.6335522106155], [121.750488259441, 17.6440220248121], [121.739501931318, 17.6440220248121], [121.739501931318, 17.6335522106155]]]]}, "properties": {"taskId": 2516, "taskX": 27465, "taskY": 18015, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.725769021164, 17.6178463491106], [121.728515603195, 17.6178463491106], [121.728515603195, 17.6204640876755], [121.725769021164, 17.6204640876755], [121.725769021164, 17.6178463491106]]]]}, "properties": {"taskId": 2395, "taskX": 109855, "taskY": 72054, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.959228493779, 20.3858253783768], [121.970214821902, 20.3858253783768], [121.970214821902, 20.3961232689685], [121.959228493779, 20.3961232689685], [121.959228493779, 20.3858253783768]]]]}, "properties": {"taskId": 2431, "taskX": 27485, "taskY": 18280, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.102050759378, 18.3128108432568], [122.124023415624, 18.3128108432568], [122.124023415624, 18.3336694425994], [122.102050759378, 18.3336694425994], [122.102050759378, 18.3128108432568]]]]}, "properties": {"taskId": 2387, "taskX": 13749, "taskY": 9040, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 17.6440220248121], [122.080078103132, 17.6858951936713], [122.124023415624, 17.6858951936713], [122.124023415624, 17.6440220248121], [122.080078103132, 17.6440220248121]]]]}, "properties": {"taskId": 1295, "taskX": 6874, "taskY": 4504, "taskZoom": 13, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.6858951936713], [121.662597634457, 17.6858951936713], [121.662597634457, 17.7068281209488], [121.640624978211, 17.7068281209488], [121.640624978211, 17.6858951936713]]]]}, "properties": {"taskId": 2421, "taskX": 13728, "taskY": 9010, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 17.6858951936713], [121.684570290703, 17.6858951936713], [121.684570290703, 17.7068281209488], [121.662597634457, 17.7068281209488], [121.662597634457, 17.6858951936713]]]]}, "properties": {"taskId": 2423, "taskX": 13729, "taskY": 9010, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.058105446886, 18.271086106447], [122.080078103132, 18.271086106447], [122.080078103132, 18.2919497303851], [122.058105446886, 18.2919497303851], [122.058105446886, 18.271086106447]]]]}, "properties": {"taskId": 2439, "taskX": 13747, "taskY": 9038, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.104087012639], [121.706542946949, 18.104087012639], [121.706542946949, 18.1249706362482], [121.684570290703, 18.1249706362482], [121.684570290703, 18.104087012639]]]]}, "properties": {"taskId": 2373, "taskX": 13730, "taskY": 9030, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 18.104087012639], [121.728515603195, 18.104087012639], [121.728515603195, 18.1249706362482], [121.706542946949, 18.1249706362482], [121.706542946949, 18.104087012639]]]]}, "properties": {"taskId": 2375, "taskX": 13731, "taskY": 9030, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 17.7277586067781], [121.530761696981, 17.7277586067781], [121.530761696981, 17.7486866486513], [121.508789040735, 17.7486866486513], [121.508789040735, 17.7277586067781]]]]}, "properties": {"taskId": 2489, "taskX": 13722, "taskY": 9012, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 17.7486866486513], [121.552734353227, 17.7486866486513], [121.552734353227, 17.7696122440617], [121.530761696981, 17.7696122440617], [121.530761696981, 17.7486866486513]]]]}, "properties": {"taskId": 2492, "taskX": 13723, "taskY": 9013, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.085815407998, 18.5941888535266], [121.091308572059, 18.5941888535266], [121.091308572059, 18.5993951989841], [121.085815407998, 18.5993951989841], [121.085815407998, 18.5941888535266]]]]}, "properties": {"taskId": 2479, "taskX": 54811, "taskY": 36214, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.1249706362482], [121.706542946949, 18.1249706362482], [121.706542946949, 18.1458517685528], [121.684570290703, 18.1458517685528], [121.684570290703, 18.1249706362482]]]]}, "properties": {"taskId": 2374, "taskX": 13730, "taskY": 9031, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 18.1249706362482], [121.728515603195, 18.1249706362482], [121.728515603195, 18.1458517685528], [121.706542946949, 18.1458517685528], [121.706542946949, 18.1249706362482]]]]}, "properties": {"taskId": 2376, "taskX": 13731, "taskY": 9031, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 17.7277586067781], [121.552734353227, 17.7277586067781], [121.552734353227, 17.7486866486513], [121.530761696981, 17.7486866486513], [121.530761696981, 17.7277586067781]]]]}, "properties": {"taskId": 2491, "taskX": 13723, "taskY": 9012, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.080322243936, 18.5941888535266], [121.085815407998, 18.5941888535266], [121.085815407998, 18.5993951989841], [121.080322243936, 18.5993951989841], [121.080322243936, 18.5941888535266]]]]}, "properties": {"taskId": 2477, "taskX": 54810, "taskY": 36214, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.085815407998, 18.5993951989841], [121.091308572059, 18.5993951989841], [121.091308572059, 18.6046013852398], [121.085815407998, 18.6046013852398], [121.085815407998, 18.5993951989841]]]]}, "properties": {"taskId": 2480, "taskX": 54811, "taskY": 36215, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.723022439134, 17.6204640876755], [121.725769021164, 17.6204640876755], [121.725769021164, 17.6230817882545], [121.723022439134, 17.6230817882545], [121.723022439134, 17.6204640876755]]]]}, "properties": {"taskId": 2394, "taskX": 109854, "taskY": 72055, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.948242165656, 20.3858253783768], [121.959228493779, 20.3858253783768], [121.959228493779, 20.3961232689685], [121.948242165656, 20.3961232689685], [121.948242165656, 20.3858253783768]]]]}, "properties": {"taskId": 2429, "taskX": 27484, "taskY": 18280, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.959228493779, 20.3961232689685], [121.970214821902, 20.3961232689685], [121.970214821902, 20.4064204714195], [121.959228493779, 20.4064204714195], [121.959228493779, 20.3961232689685]]]]}, "properties": {"taskId": 2432, "taskX": 27485, "taskY": 18281, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.725769021164, 17.6165374655852], [121.72714231218, 17.6165374655852], [121.72714231218, 17.6178463491106], [121.725769021164, 17.6178463491106], [121.725769021164, 17.6165374655852]]]]}, "properties": {"taskId": 2378, "taskX": 219710, "taskY": 144107, "taskZoom": 18, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.731262185226, 17.6126107580436], [121.734008767257, 17.6126107580436], [121.734008767257, 17.6152285725651], [121.731262185226, 17.6152285725651], [121.731262185226, 17.6126107580436]]]]}, "properties": {"taskId": 2399, "taskX": 109857, "taskY": 72052, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.9369286344414], [121.750488259441, 17.9369286344414], [121.750488259441, 17.957832099161], [121.728515603195, 17.957832099161], [121.728515603195, 17.9369286344414]]]]}, "properties": {"taskId": 2465, "taskX": 13732, "taskY": 9022, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.957832099161], [121.772460915687, 17.957832099161], [121.772460915687, 17.9787330924414], [121.750488259441, 17.9787330924414], [121.750488259441, 17.957832099161]]]]}, "properties": {"taskId": 2468, "taskX": 13733, "taskY": 9023, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.102050759378, 18.3336694425994], [122.124023415624, 18.3336694425994], [122.124023415624, 18.3545255259514], [122.102050759378, 18.3545255259514], [122.102050759378, 18.3336694425994]]]]}, "properties": {"taskId": 2388, "taskX": 13749, "taskY": 9041, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.7068281209488], [121.662597634457, 17.7068281209488], [121.662597634457, 17.7277586067781], [121.640624978211, 17.7277586067781], [121.640624978211, 17.7068281209488]]]]}, "properties": {"taskId": 2422, "taskX": 13728, "taskY": 9011, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.6073750150926], [121.731262185226, 17.6073750150926], [121.731262185226, 17.6099929055511], [121.728515603195, 17.6099929055511], [121.728515603195, 17.6073750150926]]]]}, "properties": {"taskId": 2401, "taskX": 109856, "taskY": 72050, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.731262185226, 17.6099929055511], [121.734008767257, 17.6099929055511], [121.734008767257, 17.6126107580436], [121.731262185226, 17.6126107580436], [121.731262185226, 17.6099929055511]]]]}, "properties": {"taskId": 2404, "taskX": 109857, "taskY": 72051, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.805419900056, 17.7905353905046], [121.81640622818, 17.7905353905046], [121.81640622818, 17.800996044581], [121.805419900056, 17.800996044581], [121.805419900056, 17.7905353905046]]]]}, "properties": {"taskId": 2503, "taskX": 27471, "taskY": 18030, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 17.8532901110035], [121.354980447012, 17.8532901110035], [121.354980447012, 17.8742034365596], [121.333007790766, 17.8742034365596], [121.333007790766, 17.8532901110035]]]]}, "properties": {"taskId": 2485, "taskX": 13714, "taskY": 9018, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.7696122440617], [121.794433571933, 17.7696122440617], [121.794433571933, 17.7905353905046], [121.772460915687, 17.7905353905046], [121.772460915687, 17.7696122440617]]]]}, "properties": {"taskId": 2497, "taskX": 13734, "taskY": 9014, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 17.7800741235606], [121.827392556303, 17.7800741235606], [121.827392556303, 17.7905353905046], [121.81640622818, 17.7905353905046], [121.81640622818, 17.7800741235606]]]]}, "properties": {"taskId": 2506, "taskX": 27472, "taskY": 18029, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.2502199739071], [121.882324196918, 18.2502199739071], [121.882324196918, 18.271086106447], [121.860351540672, 18.271086106447], [121.860351540672, 18.2502199739071]]]]}, "properties": {"taskId": 2434, "taskX": 13738, "taskY": 9037, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.2293513352315], [121.882324196918, 18.2293513352315], [121.882324196918, 18.2502199739071], [121.860351540672, 18.2502199739071], [121.860351540672, 18.2293513352315]]]]}, "properties": {"taskId": 2433, "taskX": 13738, "taskY": 9036, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 18.2502199739071], [121.904296853164, 18.2502199739071], [121.904296853164, 18.271086106447], [121.882324196918, 18.271086106447], [121.882324196918, 18.2502199739071]]]]}, "properties": {"taskId": 2436, "taskX": 13739, "taskY": 9037, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 17.6440220248121], [121.860351540672, 17.6440220248121], [121.860351540672, 17.6649598274553], [121.838378884426, 17.6649598274553], [121.838378884426, 17.6440220248121]]]]}, "properties": {"taskId": 2427, "taskX": 13737, "taskY": 9008, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.31103513452, 18.4379246502857], [121.333007790766, 18.4379246502857], [121.333007790766, 18.4587681168231], [121.31103513452, 18.4587681168231], [121.31103513452, 18.4379246502857]]]]}, "properties": {"taskId": 2511, "taskX": 13713, "taskY": 9046, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 18.2293513352315], [121.893310525041, 18.2293513352315], [121.893310525041, 18.2397859676821], [121.882324196918, 18.2397859676821], [121.882324196918, 18.2293513352315]]]]}, "properties": {"taskId": 2441, "taskX": 27478, "taskY": 18072, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.893310525041, 18.2397859676821], [121.904296853164, 18.2397859676821], [121.904296853164, 18.2502199739071], [121.893310525041, 18.2502199739071], [121.893310525041, 18.2397859676821]]]]}, "properties": {"taskId": 2444, "taskX": 27479, "taskY": 18073, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 19.2489223251446], [121.475830056365, 19.2489223251446], [121.475830056365, 19.259294137144], [121.464843728242, 19.259294137144], [121.464843728242, 19.2489223251446]]]]}, "properties": {"taskId": 2457, "taskX": 27440, "taskY": 18170, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.475830056365, 19.259294137144], [121.486816384489, 19.259294137144], [121.486816384489, 19.2696652931808], [121.475830056365, 19.2696652931808], [121.475830056365, 19.259294137144]]]]}, "properties": {"taskId": 2460, "taskX": 27441, "taskY": 18171, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.957832099161], [121.81640622818, 17.957832099161], [121.81640622818, 17.9787330924414], [121.794433571933, 17.9787330924414], [121.794433571933, 17.957832099161]]]]}, "properties": {"taskId": 2464, "taskX": 13735, "taskY": 9023, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 18.1354115139683], [121.805419900056, 18.1354115139683], [121.805419900056, 18.1458517685528], [121.794433571933, 18.1458517685528], [121.794433571933, 18.1354115139683]]]]}, "properties": {"taskId": 2538, "taskX": 27470, "taskY": 18063, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.091308572059, 18.5212833222942], [121.113281228305, 18.5212833222942], [121.113281228305, 18.5421166512436], [121.091308572059, 18.5421166512436], [121.091308572059, 18.5212833222942]]]]}, "properties": {"taskId": 2571, "taskX": 13703, "taskY": 9050, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 17.6649598274553], [121.838378884426, 17.6649598274553], [121.838378884426, 17.6858951936713], [121.81640622818, 17.6858951936713], [121.81640622818, 17.6649598274553]]]]}, "properties": {"taskId": 2426, "taskX": 13736, "taskY": 9009, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.957832099161], [121.794433571933, 17.957832099161], [121.794433571933, 17.9787330924414], [121.772460915687, 17.9787330924414], [121.772460915687, 17.957832099161]]]]}, "properties": {"taskId": 2462, "taskX": 13734, "taskY": 9023, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 18.4379246502857], [121.31103513452, 18.4379246502857], [121.31103513452, 18.4587681168231], [121.289062478274, 18.4587681168231], [121.289062478274, 18.4379246502857]]]]}, "properties": {"taskId": 2509, "taskX": 13712, "taskY": 9046, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.893310525041, 18.2293513352315], [121.904296853164, 18.2293513352315], [121.904296853164, 18.2397859676821], [121.893310525041, 18.2397859676821], [121.893310525041, 18.2293513352315]]]]}, "properties": {"taskId": 2443, "taskX": 27479, "taskY": 18072, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.475830056365, 19.2489223251446], [121.486816384489, 19.2489223251446], [121.486816384489, 19.259294137144], [121.475830056365, 19.259294137144], [121.475830056365, 19.2489223251446]]]]}, "properties": {"taskId": 2459, "taskX": 27441, "taskY": 18170, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 17.6440220248121], [121.838378884426, 17.6440220248121], [121.838378884426, 17.6649598274553], [121.81640622818, 17.6649598274553], [121.81640622818, 17.6440220248121]]]]}, "properties": {"taskId": 2425, "taskX": 13736, "taskY": 9008, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 17.6649598274553], [121.860351540672, 17.6649598274553], [121.860351540672, 17.6858951936713], [121.838378884426, 17.6858951936713], [121.838378884426, 17.6649598274553]]]]}, "properties": {"taskId": 2428, "taskX": 13737, "taskY": 9009, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 18.2397859676821], [121.893310525041, 18.2397859676821], [121.893310525041, 18.2502199739071], [121.882324196918, 18.2502199739071], [121.882324196918, 18.2397859676821]]]]}, "properties": {"taskId": 2442, "taskX": 27478, "taskY": 18073, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 19.259294137144], [121.475830056365, 19.259294137144], [121.475830056365, 19.2696652931808], [121.464843728242, 19.2696652931808], [121.464843728242, 19.259294137144]]]]}, "properties": {"taskId": 2458, "taskX": 27440, "taskY": 18171, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 18.4587681168231], [121.31103513452, 18.4587681168231], [121.31103513452, 18.4796090526366], [121.289062478274, 18.4796090526366], [121.289062478274, 18.4587681168231]]]]}, "properties": {"taskId": 2510, "taskX": 13712, "taskY": 9047, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.9369286344414], [121.81640622818, 17.9369286344414], [121.81640622818, 17.957832099161], [121.794433571933, 17.957832099161], [121.794433571933, 17.9369286344414]]]]}, "properties": {"taskId": 2463, "taskX": 13735, "taskY": 9022, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 17.6858951936713], [121.893310525041, 17.6858951936713], [121.893310525041, 17.6963619623342], [121.882324196918, 17.6963619623342], [121.882324196918, 17.6858951936713]]]]}, "properties": {"taskId": 2473, "taskX": 27478, "taskY": 18020, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.893310525041, 17.6963619623342], [121.904296853164, 17.6963619623342], [121.904296853164, 17.7068281209488], [121.893310525041, 17.7068281209488], [121.893310525041, 17.6963619623342]]]]}, "properties": {"taskId": 2476, "taskX": 27479, "taskY": 18021, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 18.3545255259514], [122.14599607187, 18.3545255259514], [122.14599607187, 18.3753790908532], [122.124023415624, 18.3753790908532], [122.124023415624, 18.3545255259514]]]]}, "properties": {"taskId": 2481, "taskX": 13750, "taskY": 9042, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.14599607187, 18.3753790908532], [122.167968728117, 18.3753790908532], [122.167968728117, 18.3962301348468], [122.14599607187, 18.3962301348468], [122.14599607187, 18.3753790908532]]]]}, "properties": {"taskId": 2484, "taskX": 13751, "taskY": 9043, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.124023415624, 18.3753790908532], [122.14599607187, 18.3753790908532], [122.14599607187, 18.3962301348468], [122.124023415624, 18.3962301348468], [122.124023415624, 18.3753790908532]]]]}, "properties": {"taskId": 2482, "taskX": 13750, "taskY": 9043, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.805419900056, 18.0832009002027], [121.81640622818, 18.0832009002027], [121.81640622818, 18.0936442673693], [121.805419900056, 18.0936442673693], [121.805419900056, 18.0832009002027]]]]}, "properties": {"taskId": 2531, "taskX": 27471, "taskY": 18058, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.1458517685528], [121.882324196918, 18.1458517685528], [121.882324196918, 18.1667304070769], [121.860351540672, 18.1667304070769], [121.860351540672, 18.1458517685528]]]]}, "properties": {"taskId": 2545, "taskX": 13738, "taskY": 9032, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 18.1667304070769], [121.904296853164, 18.1667304070769], [121.904296853164, 18.1876065493462], [121.882324196918, 18.1876065493462], [121.882324196918, 18.1667304070769]]]]}, "properties": {"taskId": 2548, "taskX": 13739, "taskY": 9033, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.7905353905046], [121.794433571933, 17.7905353905046], [121.794433571933, 17.8114560854768], [121.772460915687, 17.8114560854768], [121.772460915687, 17.7905353905046]]]]}, "properties": {"taskId": 2498, "taskX": 13734, "taskY": 9015, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 17.8742034365596], [121.354980447012, 17.8742034365596], [121.354980447012, 17.8951143006479], [121.333007790766, 17.8951143006479], [121.333007790766, 17.8742034365596]]]]}, "properties": {"taskId": 2486, "taskX": 13714, "taskY": 9019, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.7696122440617], [121.81640622818, 17.7696122440617], [121.81640622818, 17.7905353905046], [121.794433571933, 17.7905353905046], [121.794433571933, 17.7696122440617]]]]}, "properties": {"taskId": 2499, "taskX": 13735, "taskY": 9014, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.271086106447], [122.058105446886, 18.271086106447], [122.058105446886, 18.2919497303851], [122.03613279064, 18.2919497303851], [122.03613279064, 18.271086106447]]]]}, "properties": {"taskId": 2437, "taskX": 13746, "taskY": 9038, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.058105446886, 18.2919497303851], [122.080078103132, 18.2919497303851], [122.080078103132, 18.3128108432568], [122.058105446886, 18.3128108432568], [122.058105446886, 18.2919497303851]]]]}, "properties": {"taskId": 2440, "taskX": 13747, "taskY": 9039, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 17.6963619623342], [121.893310525041, 17.6963619623342], [121.893310525041, 17.7068281209488], [121.882324196918, 17.7068281209488], [121.882324196918, 17.6963619623342]]]]}, "properties": {"taskId": 2474, "taskX": 27478, "taskY": 18021, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.14599607187, 18.3545255259514], [122.167968728117, 18.3545255259514], [122.167968728117, 18.3753790908532], [122.14599607187, 18.3753790908532], [122.14599607187, 18.3545255259514]]]]}, "properties": {"taskId": 2483, "taskX": 13751, "taskY": 9042, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.1667304070769], [121.882324196918, 18.1667304070769], [121.882324196918, 18.1876065493462], [121.860351540672, 18.1876065493462], [121.860351540672, 18.1667304070769]]]]}, "properties": {"taskId": 2546, "taskX": 13738, "taskY": 9033, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 18.0832009002027], [121.805419900056, 18.0832009002027], [121.805419900056, 18.0936442673693], [121.794433571933, 18.0936442673693], [121.794433571933, 18.0832009002027]]]]}, "properties": {"taskId": 2529, "taskX": 27470, "taskY": 18058, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.805419900056, 18.0936442673693], [121.81640622818, 18.0936442673693], [121.81640622818, 18.104087012639], [121.805419900056, 18.104087012639], [121.805419900056, 18.0936442673693]]]]}, "properties": {"taskId": 2532, "taskX": 27471, "taskY": 18059, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 18.1667304070769], [121.805419900056, 18.1667304070769], [121.805419900056, 18.1771687903979], [121.794433571933, 18.1771687903979], [121.794433571933, 18.1667304070769]]]]}, "properties": {"taskId": 2449, "taskX": 27470, "taskY": 18066, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.805419900056, 18.1667304070769], [121.81640622818, 18.1667304070769], [121.81640622818, 18.1771687903979], [121.805419900056, 18.1771687903979], [121.805419900056, 18.1667304070769]]]]}, "properties": {"taskId": 2451, "taskX": 27471, "taskY": 18066, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.1667304070769], [121.78344724381, 18.1667304070769], [121.78344724381, 18.1771687903979], [121.772460915687, 18.1771687903979], [121.772460915687, 18.1667304070769]]]]}, "properties": {"taskId": 2453, "taskX": 27468, "taskY": 18066, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78344724381, 18.1667304070769], [121.794433571933, 18.1667304070769], [121.794433571933, 18.1771687903979], [121.78344724381, 18.1771687903979], [121.78344724381, 18.1667304070769]]]]}, "properties": {"taskId": 2455, "taskX": 27469, "taskY": 18066, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.893310525041, 17.6858951936713], [121.904296853164, 17.6858951936713], [121.904296853164, 17.6963619623342], [121.893310525041, 17.6963619623342], [121.893310525041, 17.6858951936713]]]]}, "properties": {"taskId": 2475, "taskX": 27479, "taskY": 18020, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 18.1771687903979], [121.805419900056, 18.1771687903979], [121.805419900056, 18.1876065493462], [121.794433571933, 18.1876065493462], [121.794433571933, 18.1771687903979]]]]}, "properties": {"taskId": 2450, "taskX": 27470, "taskY": 18067, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.805419900056, 18.1771687903979], [121.81640622818, 18.1771687903979], [121.81640622818, 18.1876065493462], [121.805419900056, 18.1876065493462], [121.805419900056, 18.1771687903979]]]]}, "properties": {"taskId": 2452, "taskX": 27471, "taskY": 18067, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.1771687903979], [121.78344724381, 18.1771687903979], [121.78344724381, 18.1876065493462], [121.772460915687, 18.1876065493462], [121.772460915687, 18.1771687903979]]]]}, "properties": {"taskId": 2454, "taskX": 27468, "taskY": 18067, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78344724381, 18.1771687903979], [121.794433571933, 18.1771687903979], [121.794433571933, 18.1876065493462], [121.78344724381, 18.1876065493462], [121.78344724381, 18.1771687903979]]]]}, "properties": {"taskId": 2456, "taskX": 27469, "taskY": 18067, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.1458517685528], [121.794433571933, 18.1458517685528], [121.794433571933, 18.1667304070769], [121.772460915687, 18.1667304070769], [121.772460915687, 18.1458517685528]]]]}, "properties": {"taskId": 2445, "taskX": 13734, "taskY": 9032, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 18.1458517685528], [121.81640622818, 18.1458517685528], [121.81640622818, 18.1667304070769], [121.794433571933, 18.1667304070769], [121.794433571933, 18.1458517685528]]]]}, "properties": {"taskId": 2447, "taskX": 13735, "taskY": 9032, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 18.1249706362482], [121.838378884426, 18.1249706362482], [121.838378884426, 18.1458517685528], [121.81640622818, 18.1458517685528], [121.81640622818, 18.1249706362482]]]]}, "properties": {"taskId": 2542, "taskX": 13736, "taskY": 9031, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 18.104087012639], [121.860351540672, 18.104087012639], [121.860351540672, 18.1249706362482], [121.838378884426, 18.1249706362482], [121.838378884426, 18.104087012639]]]]}, "properties": {"taskId": 2543, "taskX": 13737, "taskY": 9030, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 18.104087012639], [121.838378884426, 18.104087012639], [121.838378884426, 18.1249706362482], [121.81640622818, 18.1249706362482], [121.81640622818, 18.104087012639]]]]}, "properties": {"taskId": 2541, "taskX": 13736, "taskY": 9030, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 18.1249706362482], [121.860351540672, 18.1249706362482], [121.860351540672, 18.1458517685528], [121.838378884426, 18.1458517685528], [121.838378884426, 18.1249706362482]]]]}, "properties": {"taskId": 2544, "taskX": 13737, "taskY": 9031, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 17.7486866486513], [121.530761696981, 17.7486866486513], [121.530761696981, 17.7696122440617], [121.508789040735, 17.7696122440617], [121.508789040735, 17.7486866486513]]]]}, "properties": {"taskId": 2490, "taskX": 13722, "taskY": 9013, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 17.7696122440617], [121.827392556303, 17.7696122440617], [121.827392556303, 17.7800741235606], [121.81640622818, 17.7800741235606], [121.81640622818, 17.7696122440617]]]]}, "properties": {"taskId": 2505, "taskX": 27472, "taskY": 18028, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.827392556303, 17.7800741235606], [121.838378884426, 17.7800741235606], [121.838378884426, 17.7905353905046], [121.827392556303, 17.7905353905046], [121.827392556303, 17.7800741235606]]]]}, "properties": {"taskId": 2508, "taskX": 27473, "taskY": 18029, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.827392556303, 17.7696122440617], [121.838378884426, 17.7696122440617], [121.838378884426, 17.7800741235606], [121.827392556303, 17.7800741235606], [121.827392556303, 17.7696122440617]]]]}, "properties": {"taskId": 2507, "taskX": 27473, "taskY": 18028, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 18.1249706362482], [121.805419900056, 18.1249706362482], [121.805419900056, 18.1354115139683], [121.794433571933, 18.1354115139683], [121.794433571933, 18.1249706362482]]]]}, "properties": {"taskId": 2537, "taskX": 27470, "taskY": 18062, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.805419900056, 18.1354115139683], [121.81640622818, 18.1354115139683], [121.81640622818, 18.1458517685528], [121.805419900056, 18.1458517685528], [121.805419900056, 18.1354115139683]]]]}, "properties": {"taskId": 2540, "taskX": 27471, "taskY": 18063, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.091308572059, 18.5421166512436], [121.113281228305, 18.5421166512436], [121.113281228305, 18.5629474396796], [121.091308572059, 18.5629474396796], [121.091308572059, 18.5421166512436]]]]}, "properties": {"taskId": 2572, "taskX": 13703, "taskY": 9051, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.805419900056, 18.1249706362482], [121.81640622818, 18.1249706362482], [121.81640622818, 18.1354115139683], [121.805419900056, 18.1354115139683], [121.805419900056, 18.1249706362482]]]]}, "properties": {"taskId": 2539, "taskX": 27471, "taskY": 18062, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 18.0936442673693], [121.805419900056, 18.0936442673693], [121.805419900056, 18.104087012639], [121.794433571933, 18.104087012639], [121.794433571933, 18.0936442673693]]]]}, "properties": {"taskId": 2530, "taskX": 27470, "taskY": 18059, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 18.1458517685528], [121.904296853164, 18.1458517685528], [121.904296853164, 18.1667304070769], [121.882324196918, 18.1667304070769], [121.882324196918, 18.1458517685528]]]]}, "properties": {"taskId": 2547, "taskX": 13739, "taskY": 9032, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.805419900056, 18.104087012639], [121.81640622818, 18.104087012639], [121.81640622818, 18.1145291357018], [121.805419900056, 18.1145291357018], [121.805419900056, 18.104087012639]]]]}, "properties": {"taskId": 2535, "taskX": 27471, "taskY": 18060, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.0205276547308], [121.882324196918, 18.0205276547308], [121.882324196918, 18.0414212187671], [121.860351540672, 18.0414212187671], [121.860351540672, 18.0205276547308]]]]}, "properties": {"taskId": 2549, "taskX": 13738, "taskY": 9026, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 18.0414212187671], [121.904296853164, 18.0414212187671], [121.904296853164, 18.0623123014185], [121.882324196918, 18.0623123014185], [121.882324196918, 18.0414212187671]]]]}, "properties": {"taskId": 2552, "taskX": 13739, "taskY": 9027, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[120.981445290829, 18.5212833222942], [121.003417947075, 18.5212833222942], [121.003417947075, 18.5421166512436], [120.981445290829, 18.5421166512436], [120.981445290829, 18.5212833222942]]]]}, "properties": {"taskId": 2557, "taskX": 13698, "taskY": 9050, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.223144509536, 18.4796090526366], [121.245117165782, 18.4796090526366], [121.245117165782, 18.5004474552763], [121.223144509536, 18.5004474552763], [121.223144509536, 18.4796090526366]]]]}, "properties": {"taskId": 2579, "taskX": 13709, "taskY": 9048, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 18.104087012639], [121.805419900056, 18.104087012639], [121.805419900056, 18.1145291357018], [121.794433571933, 18.1145291357018], [121.794433571933, 18.104087012639]]]]}, "properties": {"taskId": 2533, "taskX": 27470, "taskY": 18060, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.805419900056, 18.1145291357018], [121.81640622818, 18.1145291357018], [121.81640622818, 18.1249706362482], [121.805419900056, 18.1249706362482], [121.805419900056, 18.1145291357018]]]]}, "properties": {"taskId": 2536, "taskX": 27471, "taskY": 18061, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.0414212187671], [121.882324196918, 18.0414212187671], [121.882324196918, 18.0623123014185], [121.860351540672, 18.0623123014185], [121.860351540672, 18.0414212187671]]]]}, "properties": {"taskId": 2550, "taskX": 13738, "taskY": 9027, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[120.981445290829, 18.5421166512436], [121.003417947075, 18.5421166512436], [121.003417947075, 18.5629474396796], [120.981445290829, 18.5629474396796], [120.981445290829, 18.5421166512436]]]]}, "properties": {"taskId": 2558, "taskX": 13698, "taskY": 9051, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 18.5004474552763], [121.223144509536, 18.5004474552763], [121.223144509536, 18.5212833222942], [121.20117185329, 18.5212833222942], [121.20117185329, 18.5004474552763]]]]}, "properties": {"taskId": 2578, "taskX": 13708, "taskY": 9049, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.6230817882545], [121.739501931318, 17.6230817882545], [121.739501931318, 17.6283170754359], [121.734008767257, 17.6283170754359], [121.734008767257, 17.6230817882545]]]]}, "properties": {"taskId": 2519, "taskX": 54929, "taskY": 36028, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.2919497303851], [122.047119118763, 18.2919497303851], [122.047119118763, 18.3023806008582], [122.03613279064, 18.3023806008582], [122.03613279064, 18.2919497303851]]]]}, "properties": {"taskId": 2525, "taskX": 27492, "taskY": 18078, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.047119118763, 18.2919497303851], [122.058105446886, 18.2919497303851], [122.058105446886, 18.3023806008582], [122.047119118763, 18.3023806008582], [122.047119118763, 18.2919497303851]]]]}, "properties": {"taskId": 2527, "taskX": 27493, "taskY": 18078, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.6283170754359], [121.734008767257, 17.6283170754359], [121.734008767257, 17.6335522106155], [121.728515603195, 17.6335522106155], [121.728515603195, 17.6283170754359]]]]}, "properties": {"taskId": 2518, "taskX": 54928, "taskY": 36029, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.03613279064, 18.3023806008582], [122.047119118763, 18.3023806008582], [122.047119118763, 18.3128108432568], [122.03613279064, 18.3128108432568], [122.03613279064, 18.3023806008582]]]]}, "properties": {"taskId": 2526, "taskX": 27492, "taskY": 18079, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.047119118763, 18.3023806008582], [122.058105446886, 18.3023806008582], [122.058105446886, 18.3128108432568], [122.047119118763, 18.3128108432568], [122.047119118763, 18.3023806008582]]]]}, "properties": {"taskId": 2528, "taskX": 27493, "taskY": 18079, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.6335522106155], [121.739501931318, 17.6335522106155], [121.739501931318, 17.638787193754], [121.734008767257, 17.638787193754], [121.734008767257, 17.6335522106155]]]]}, "properties": {"taskId": 2523, "taskX": 54929, "taskY": 36030, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.638787193754], [121.734008767257, 17.638787193754], [121.734008767257, 17.6440220248121], [121.728515603195, 17.6440220248121], [121.728515603195, 17.638787193754]]]]}, "properties": {"taskId": 2522, "taskX": 54928, "taskY": 36031, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.638787193754], [121.739501931318, 17.638787193754], [121.739501931318, 17.6440220248121], [121.734008767257, 17.6440220248121], [121.734008767257, 17.638787193754]]]]}, "properties": {"taskId": 2524, "taskX": 54929, "taskY": 36031, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 17.7068281209488], [121.904296853164, 17.7068281209488], [121.904296853164, 17.7277586067781], [121.882324196918, 17.7277586067781], [121.882324196918, 17.7068281209488]]]]}, "properties": {"taskId": 2472, "taskX": 13739, "taskY": 9011, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 18.1145291357018], [121.805419900056, 18.1145291357018], [121.805419900056, 18.1249706362482], [121.794433571933, 18.1249706362482], [121.794433571933, 18.1145291357018]]]]}, "properties": {"taskId": 2534, "taskX": 27470, "taskY": 18061, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 18.0205276547308], [121.904296853164, 18.0205276547308], [121.904296853164, 18.0414212187671], [121.882324196918, 18.0414212187671], [121.882324196918, 18.0205276547308]]]]}, "properties": {"taskId": 2551, "taskX": 13739, "taskY": 9026, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.003417947075, 18.5212833222942], [121.025390603321, 18.5212833222942], [121.025390603321, 18.5421166512436], [121.003417947075, 18.5421166512436], [121.003417947075, 18.5212833222942]]]]}, "properties": {"taskId": 2559, "taskX": 13699, "taskY": 9050, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 18.4796090526366], [121.223144509536, 18.4796090526366], [121.223144509536, 18.5004474552763], [121.20117185329, 18.5004474552763], [121.20117185329, 18.4796090526366]]]]}, "properties": {"taskId": 2577, "taskX": 13708, "taskY": 9048, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.223144509536, 18.5004474552763], [121.245117165782, 18.5004474552763], [121.245117165782, 18.5212833222942], [121.223144509536, 18.5212833222942], [121.223144509536, 18.5004474552763]]]]}, "properties": {"taskId": 2580, "taskX": 13709, "taskY": 9049, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.003417947075, 18.5421166512436], [121.014404275198, 18.5421166512436], [121.014404275198, 18.5525323631785], [121.003417947075, 18.5525323631785], [121.003417947075, 18.5421166512436]]]]}, "properties": {"taskId": 2561, "taskX": 27398, "taskY": 18102, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.014404275198, 18.5421166512436], [121.025390603321, 18.5421166512436], [121.025390603321, 18.5525323631785], [121.014404275198, 18.5525323631785], [121.014404275198, 18.5421166512436]]]]}, "properties": {"taskId": 2563, "taskX": 27399, "taskY": 18102, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.069335915813, 18.5317003041803], [121.080322243936, 18.5317003041803], [121.080322243936, 18.5421166512436], [121.069335915813, 18.5421166512436], [121.069335915813, 18.5317003041803]]]]}, "properties": {"taskId": 2574, "taskX": 27404, "taskY": 18101, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.003417947075, 18.5525323631785], [121.014404275198, 18.5525323631785], [121.014404275198, 18.5629474396796], [121.003417947075, 18.5629474396796], [121.003417947075, 18.5525323631785]]]]}, "properties": {"taskId": 2562, "taskX": 27398, "taskY": 18103, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.014404275198, 18.5525323631785], [121.025390603321, 18.5525323631785], [121.025390603321, 18.5629474396796], [121.014404275198, 18.5629474396796], [121.014404275198, 18.5525323631785]]]]}, "properties": {"taskId": 2564, "taskX": 27399, "taskY": 18103, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.069335915813, 18.5212833222942], [121.080322243936, 18.5212833222942], [121.080322243936, 18.5317003041803], [121.069335915813, 18.5317003041803], [121.069335915813, 18.5212833222942]]]]}, "properties": {"taskId": 2573, "taskX": 27404, "taskY": 18100, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.080322243936, 18.5317003041803], [121.091308572059, 18.5317003041803], [121.091308572059, 18.5421166512436], [121.080322243936, 18.5421166512436], [121.080322243936, 18.5317003041803]]]]}, "properties": {"taskId": 2576, "taskX": 27405, "taskY": 18101, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.025390603321, 18.5212833222942], [121.047363259567, 18.5212833222942], [121.047363259567, 18.5421166512436], [121.025390603321, 18.5421166512436], [121.025390603321, 18.5212833222942]]]]}, "properties": {"taskId": 2565, "taskX": 13700, "taskY": 9050, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.047363259567, 18.5212833222942], [121.069335915813, 18.5212833222942], [121.069335915813, 18.5421166512436], [121.047363259567, 18.5421166512436], [121.047363259567, 18.5212833222942]]]]}, "properties": {"taskId": 2567, "taskX": 13701, "taskY": 9050, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.113281228305, 18.5212833222942], [121.135253884552, 18.5212833222942], [121.135253884552, 18.5421166512436], [121.113281228305, 18.5421166512436], [121.113281228305, 18.5212833222942]]]]}, "properties": {"taskId": 2585, "taskX": 13704, "taskY": 9050, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.135253884552, 18.5421166512436], [121.157226540798, 18.5421166512436], [121.157226540798, 18.5629474396796], [121.135253884552, 18.5629474396796], [121.135253884552, 18.5421166512436]]]]}, "properties": {"taskId": 2588, "taskX": 13705, "taskY": 9051, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.025390603321, 18.5421166512436], [121.047363259567, 18.5421166512436], [121.047363259567, 18.5629474396796], [121.025390603321, 18.5629474396796], [121.025390603321, 18.5421166512436]]]]}, "properties": {"taskId": 2566, "taskX": 13700, "taskY": 9051, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.047363259567, 18.5421166512436], [121.069335915813, 18.5421166512436], [121.069335915813, 18.5629474396796], [121.047363259567, 18.5629474396796], [121.047363259567, 18.5421166512436]]]]}, "properties": {"taskId": 2568, "taskX": 13701, "taskY": 9051, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 18.2502199739071], [121.838378884426, 18.2502199739071], [121.838378884426, 18.271086106447], [121.81640622818, 18.271086106447], [121.81640622818, 18.2502199739071]]]]}, "properties": {"taskId": 2582, "taskX": 13736, "taskY": 9037, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.080322243936, 18.5212833222942], [121.091308572059, 18.5212833222942], [121.091308572059, 18.5317003041803], [121.080322243936, 18.5317003041803], [121.080322243936, 18.5212833222942]]]]}, "properties": {"taskId": 2575, "taskX": 27405, "taskY": 18100, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.135253884552, 18.5212833222942], [121.157226540798, 18.5212833222942], [121.157226540798, 18.5421166512436], [121.135253884552, 18.5421166512436], [121.135253884552, 18.5212833222942]]]]}, "properties": {"taskId": 2587, "taskX": 13705, "taskY": 9050, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.069335915813, 18.5421166512436], [121.091308572059, 18.5421166512436], [121.091308572059, 18.5629474396796], [121.069335915813, 18.5629474396796], [121.069335915813, 18.5421166512436]]]]}, "properties": {"taskId": 2570, "taskX": 13702, "taskY": 9051, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 18.2293513352315], [121.838378884426, 18.2293513352315], [121.838378884426, 18.2502199739071], [121.81640622818, 18.2502199739071], [121.81640622818, 18.2293513352315]]]]}, "properties": {"taskId": 2581, "taskX": 13736, "taskY": 9036, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 18.2502199739071], [121.860351540672, 18.2502199739071], [121.860351540672, 18.271086106447], [121.838378884426, 18.271086106447], [121.838378884426, 18.2502199739071]]]]}, "properties": {"taskId": 2584, "taskX": 13737, "taskY": 9037, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.871337868795, 17.8323743264764], [121.882324196918, 17.8323743264764], [121.882324196918, 17.8428325259552], [121.871337868795, 17.8428325259552], [121.871337868795, 17.8323743264764]]]]}, "properties": {"taskId": 2591, "taskX": 27477, "taskY": 18034, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.8428325259552], [121.871337868795, 17.8428325259552], [121.871337868795, 17.8532901110035], [121.860351540672, 17.8532901110035], [121.860351540672, 17.8428325259552]]]]}, "properties": {"taskId": 2590, "taskX": 27476, "taskY": 18035, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.871337868795, 17.8428325259552], [121.882324196918, 17.8428325259552], [121.882324196918, 17.8532901110035], [121.871337868795, 17.8532901110035], [121.871337868795, 17.8428325259552]]]]}, "properties": {"taskId": 2592, "taskX": 27477, "taskY": 18035, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.8323743264764], [121.865844704733, 17.8323743264764], [121.865844704733, 17.8376035030001], [121.860351540672, 17.8376035030001], [121.860351540672, 17.8323743264764]]]]}, "properties": {"taskId": 2593, "taskX": 54952, "taskY": 36068, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.865844704733, 17.8323743264764], [121.871337868795, 17.8323743264764], [121.871337868795, 17.8376035030001], [121.865844704733, 17.8376035030001], [121.865844704733, 17.8323743264764]]]]}, "properties": {"taskId": 2595, "taskX": 54953, "taskY": 36068, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.8376035030001], [121.865844704733, 17.8376035030001], [121.865844704733, 17.8428325259552], [121.860351540672, 17.8428325259552], [121.860351540672, 17.8376035030001]]]]}, "properties": {"taskId": 2594, "taskX": 54952, "taskY": 36069, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.865844704733, 17.8376035030001], [121.871337868795, 17.8376035030001], [121.871337868795, 17.8428325259552], [121.865844704733, 17.8428325259552], [121.865844704733, 17.8376035030001]]]]}, "properties": {"taskId": 2596, "taskX": 54953, "taskY": 36069, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 18.2397859676821], [121.849365212549, 18.2397859676821], [121.849365212549, 18.2502199739071], [121.838378884426, 18.2502199739071], [121.838378884426, 18.2397859676821]]]]}, "properties": {"taskId": 2598, "taskX": 27474, "taskY": 18073, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.849365212549, 18.2397859676821], [121.860351540672, 18.2397859676821], [121.860351540672, 18.2502199739071], [121.849365212549, 18.2502199739071], [121.849365212549, 18.2397859676821]]]]}, "properties": {"taskId": 2600, "taskX": 27475, "taskY": 18073, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 18.2293513352315], [121.849365212549, 18.2293513352315], [121.849365212549, 18.2397859676821], [121.838378884426, 18.2397859676821], [121.838378884426, 18.2293513352315]]]]}, "properties": {"taskId": 2597, "taskX": 27474, "taskY": 18072, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.849365212549, 18.2293513352315], [121.860351540672, 18.2293513352315], [121.860351540672, 18.2397859676821], [121.849365212549, 18.2397859676821], [121.849365212549, 18.2293513352315]]]]}, "properties": {"taskId": 2599, "taskX": 27475, "taskY": 18072, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 18.104087012639], [121.508789040735, 18.104087012639], [121.508789040735, 18.1249706362482], [121.486816384489, 18.1249706362482], [121.486816384489, 18.104087012639]]]]}, "properties": {"taskId": 2635, "taskX": 13721, "taskY": 9030, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.1876065493462], [121.684570290703, 18.1876065493462], [121.684570290703, 18.1980436836125], [121.67358396258, 18.1980436836125], [121.67358396258, 18.1876065493462]]]]}, "properties": {"taskId": 2711, "taskX": 27459, "taskY": 18068, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.714782693041, 17.6204640876755], [121.717529275072, 17.6204640876755], [121.717529275072, 17.6230817882545], [121.714782693041, 17.6230817882545], [121.714782693041, 17.6204640876755]]]]}, "properties": {"taskId": 2604, "taskX": 109851, "taskY": 72055, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.519775368858, 18.4066547107354], [121.530761696981, 18.4066547107354], [121.530761696981, 18.4170786554759], [121.519775368858, 18.4170786554759], [121.519775368858, 18.4066547107354]]]]}, "properties": {"taskId": 2728, "taskX": 27445, "taskY": 18089, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 18.3962301348468], [121.497802712612, 18.3962301348468], [121.497802712612, 18.4066547107354], [121.486816384489, 18.4066547107354], [121.486816384489, 18.3962301348468]]]]}, "properties": {"taskId": 2729, "taskX": 27442, "taskY": 18088, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.827392556303, 18.2815182321454], [121.832885720364, 18.2815182321454], [121.832885720364, 18.2867340597168], [121.827392556303, 18.2867340597168], [121.827392556303, 18.2815182321454]]]]}, "properties": {"taskId": 2769, "taskX": 54946, "taskY": 36154, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.1980436836125], [121.67358396258, 18.1980436836125], [121.67358396258, 18.2084801928881], [121.662597634457, 18.2084801928881], [121.662597634457, 18.1980436836125]]]]}, "properties": {"taskId": 2710, "taskX": 27458, "taskY": 18069, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.937255837533, 17.957832099161], [121.948242165656, 17.957832099161], [121.948242165656, 17.9682829048867], [121.937255837533, 17.9682829048867], [121.937255837533, 17.957832099161]]]]}, "properties": {"taskId": 2807, "taskX": 27483, "taskY": 18046, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.6309346620284], [121.735382058272, 17.6309346620284], [121.735382058272, 17.6322434410729], [121.734008767257, 17.6322434410729], [121.734008767257, 17.6309346620284]]]]}, "properties": {"taskId": 2653, "taskX": 219716, "taskY": 144118, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.735382058272, 17.6322434410729], [121.736755349288, 17.6322434410729], [121.736755349288, 17.6335522106155], [121.735382058272, 17.6335522106155], [121.735382058272, 17.6322434410729]]]]}, "properties": {"taskId": 2656, "taskX": 219717, "taskY": 144119, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 17.8323743264764], [121.838378884426, 17.8323743264764], [121.838378884426, 17.8532901110035], [121.81640622818, 17.8532901110035], [121.81640622818, 17.8323743264764]]]]}, "properties": {"taskId": 2610, "taskX": 13736, "taskY": 9017, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.827392556303, 17.6335522106155], [121.838378884426, 17.6335522106155], [121.838378884426, 17.6440220248121], [121.827392556303, 17.6440220248121], [121.827392556303, 17.6335522106155]]]]}, "properties": {"taskId": 2680, "taskX": 27473, "taskY": 18015, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.6332250191207], [121.734352090011, 17.6332250191207], [121.734352090011, 17.6335522106155], [121.734008767257, 17.6335522106155], [121.734008767257, 17.6332250191207]]]]}, "properties": {"taskId": 2662, "taskX": 878864, "taskY": 576479, "taskZoom": 20, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.647491433288, 18.3545255259514], [121.648864724303, 18.3545255259514], [121.648864724303, 18.3558289475659], [121.647491433288, 18.3558289475659], [121.647491433288, 18.3545255259514]]]]}, "properties": {"taskId": 2691, "taskX": 219653, "taskY": 144672, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.2658698083971], [121.676330544611, 18.2658698083971], [121.676330544611, 18.2684779770181], [121.67358396258, 18.2684779770181], [121.67358396258, 18.2658698083971]]]]}, "properties": {"taskId": 2613, "taskX": 109836, "taskY": 72302, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.676330544611, 18.2658698083971], [121.679077126642, 18.2658698083971], [121.679077126642, 18.2684779770181], [121.676330544611, 18.2684779770181], [121.676330544611, 18.2658698083971]]]]}, "properties": {"taskId": 2615, "taskX": 109837, "taskY": 72302, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.2293513352315], [121.67358396258, 18.2293513352315], [121.67358396258, 18.2397859676821], [121.662597634457, 18.2397859676821], [121.662597634457, 18.2293513352315]]]]}, "properties": {"taskId": 2621, "taskX": 27458, "taskY": 18072, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.2397859676821], [121.684570290703, 18.2397859676821], [121.684570290703, 18.2502199739071], [121.67358396258, 18.2502199739071], [121.67358396258, 18.2397859676821]]]]}, "properties": {"taskId": 2624, "taskX": 27459, "taskY": 18073, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 17.8323743264764], [121.849365212549, 17.8323743264764], [121.849365212549, 17.8428325259552], [121.838378884426, 17.8428325259552], [121.838378884426, 17.8323743264764]]]]}, "properties": {"taskId": 2625, "taskX": 27474, "taskY": 18034, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.849365212549, 17.8428325259552], [121.860351540672, 17.8428325259552], [121.860351540672, 17.8532901110035], [121.849365212549, 17.8532901110035], [121.849365212549, 17.8428325259552]]]]}, "properties": {"taskId": 2628, "taskX": 27475, "taskY": 18035, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.736755349288, 17.6283170754359], [121.739501931318, 17.6283170754359], [121.739501931318, 17.6309346620284], [121.736755349288, 17.6309346620284], [121.736755349288, 17.6283170754359]]]]}, "properties": {"taskId": 2651, "taskX": 109859, "taskY": 72058, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734695412764, 17.6322434410729], [121.735382058272, 17.6322434410729], [121.735382058272, 17.632897827032], [121.734695412764, 17.632897827032], [121.734695412764, 17.6322434410729]]]]}, "properties": {"taskId": 2659, "taskX": 439433, "taskY": 288238, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.643371560242, 18.3571323593422], [121.644744851257, 18.3571323593422], [121.644744851257, 18.3584357612796], [121.643371560242, 18.3584357612796], [121.643371560242, 18.3571323593422]]]]}, "properties": {"taskId": 2681, "taskX": 219650, "taskY": 144674, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.644744851257, 18.3584357612796], [121.646118142272, 18.3584357612796], [121.646118142272, 18.3597391533776], [121.644744851257, 18.3597391533776], [121.644744851257, 18.3584357612796]]]]}, "properties": {"taskId": 2684, "taskX": 219651, "taskY": 144675, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.234130837659, 18.5733618804414], [121.245117165782, 18.5733618804414], [121.245117165782, 18.5837756851588], [121.234130837659, 18.5837756851588], [121.234130837659, 18.5733618804414]]]]}, "properties": {"taskId": 2720, "taskX": 27419, "taskY": 18105, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698303200857, 17.7068281209488], [121.701049782888, 17.7068281209488], [121.701049782888, 17.7094445652456], [121.698303200857, 17.7094445652456], [121.698303200857, 17.7068281209488]]]]}, "properties": {"taskId": 2911, "taskX": 109845, "taskY": 72088, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.641998269226, 18.3571323593422], [121.643371560242, 18.3571323593422], [121.643371560242, 18.3584357612796], [121.641998269226, 18.3584357612796], [121.641998269226, 18.3571323593422]]]]}, "properties": {"taskId": 2879, "taskX": 219649, "taskY": 144674, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 17.8951143006479], [121.662597634457, 17.8951143006479], [121.662597634457, 17.9003416317732], [121.657104470395, 17.9003416317732], [121.657104470395, 17.8951143006479]]]]}, "properties": {"taskId": 2903, "taskX": 54915, "taskY": 36080, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.8951143006479], [121.794433571933, 17.8951143006479], [121.794433571933, 17.9160227007731], [121.772460915687, 17.9160227007731], [121.772460915687, 17.8951143006479]]]]}, "properties": {"taskId": 2605, "taskX": 13734, "taskY": 9020, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.676330544611, 18.2697820466318], [121.677703835626, 18.2697820466318], [121.677703835626, 18.271086106447], [121.676330544611, 18.271086106447], [121.676330544611, 18.2697820466318]]]]}, "properties": {"taskId": 2618, "taskX": 219674, "taskY": 144607, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.676330544611, 18.2684779770181], [121.677703835626, 18.2684779770181], [121.677703835626, 18.2697820466318], [121.676330544611, 18.2697820466318], [121.676330544611, 18.2684779770181]]]]}, "properties": {"taskId": 2617, "taskX": 219674, "taskY": 144606, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.677703835626, 18.2697820466318], [121.679077126642, 18.2697820466318], [121.679077126642, 18.271086106447], [121.677703835626, 18.271086106447], [121.677703835626, 18.2697820466318]]]]}, "properties": {"taskId": 2620, "taskX": 219675, "taskY": 144607, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.8951143006479], [121.81640622818, 17.8951143006479], [121.81640622818, 17.9160227007731], [121.794433571933, 17.9160227007731], [121.794433571933, 17.8951143006479]]]]}, "properties": {"taskId": 2607, "taskX": 13735, "taskY": 9020, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.677703835626, 18.2684779770181], [121.679077126642, 18.2684779770181], [121.679077126642, 18.2697820466318], [121.677703835626, 18.2697820466318], [121.677703835626, 18.2684779770181]]]]}, "properties": {"taskId": 2619, "taskX": 219675, "taskY": 144606, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 18.3336694425994], [122.091064431255, 18.3336694425994], [122.091064431255, 18.3440977989279], [122.080078103132, 18.3440977989279], [122.080078103132, 18.3336694425994]]]]}, "properties": {"taskId": 2869, "taskX": 27496, "taskY": 18082, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.091064431255, 18.3440977989279], [122.102050759378, 18.3440977989279], [122.102050759378, 18.3545255259514], [122.091064431255, 18.3545255259514], [122.091064431255, 18.3440977989279]]]]}, "properties": {"taskId": 2872, "taskX": 27497, "taskY": 18083, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.764381074702], [121.734008767257, 17.764381074702], [121.734008767257, 17.7696122440617], [121.728515603195, 17.7696122440617], [121.728515603195, 17.764381074702]]]]}, "properties": {"taskId": 2670, "taskX": 54928, "taskY": 36055, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 17.8951143006479], [121.530761696981, 17.8951143006479], [121.530761696981, 17.9160227007731], [121.508789040735, 17.9160227007731], [121.508789040735, 17.8951143006479]]]]}, "properties": {"taskId": 2797, "taskX": 13722, "taskY": 9020, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 18.271086106447], [121.827392556303, 18.271086106447], [121.827392556303, 18.2815182321454], [121.81640622818, 18.2815182321454], [121.81640622818, 18.271086106447]]]]}, "properties": {"taskId": 2733, "taskX": 27472, "taskY": 18076, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 17.9160227007731], [121.552734353227, 17.9160227007731], [121.552734353227, 17.9369286344414], [121.530761696981, 17.9369286344414], [121.530761696981, 17.9160227007731]]]]}, "properties": {"taskId": 2800, "taskX": 13723, "taskY": 9021, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.821899392241, 17.6230817882545], [121.827392556303, 17.6230817882545], [121.827392556303, 17.6283170754359], [121.821899392241, 17.6283170754359], [121.821899392241, 17.6230817882545]]]]}, "properties": {"taskId": 2875, "taskX": 54945, "taskY": 36028, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.179199197044, 18.5733618804414], [121.190185525167, 18.5733618804414], [121.190185525167, 18.5837756851588], [121.179199197044, 18.5837756851588], [121.179199197044, 18.5733618804414]]]]}, "properties": {"taskId": 2898, "taskX": 27414, "taskY": 18105, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 18.0205276547308], [121.596679665719, 18.0205276547308], [121.596679665719, 18.0309747467668], [121.585693337596, 18.0309747467668], [121.585693337596, 18.0205276547308]]]]}, "properties": {"taskId": 2923, "taskX": 27451, "taskY": 18052, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 17.7696122440617], [121.904296853164, 17.7696122440617], [121.904296853164, 17.7905353905046], [121.882324196918, 17.7905353905046], [121.882324196918, 17.7696122440617]]]]}, "properties": {"taskId": 2975, "taskX": 13739, "taskY": 9014, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.1458517685528], [121.442871071996, 18.1458517685528], [121.442871071996, 18.1667304070769], [121.42089841575, 18.1667304070769], [121.42089841575, 18.1458517685528]]]]}, "properties": {"taskId": 2697, "taskX": 13718, "taskY": 9032, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 18.1667304070769], [121.464843728242, 18.1667304070769], [121.464843728242, 18.1876065493462], [121.442871071996, 18.1876065493462], [121.442871071996, 18.1667304070769]]]]}, "properties": {"taskId": 2700, "taskX": 13719, "taskY": 9033, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.893310525041, 17.8742034365596], [121.898803689102, 17.8742034365596], [121.898803689102, 17.8794313834418], [121.893310525041, 17.8794313834418], [121.893310525041, 17.8742034365596]]]]}, "properties": {"taskId": 2761, "taskX": 54958, "taskY": 36076, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.195678689228, 18.5941888535266], [121.20117185329, 18.5941888535266], [121.20117185329, 18.5993951989841], [121.195678689228, 18.5993951989841], [121.195678689228, 18.5941888535266]]]]}, "properties": {"taskId": 2847, "taskX": 54831, "taskY": 36214, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 17.8323743264764], [121.486816384489, 17.8323743264764], [121.486816384489, 17.8532901110035], [121.464843728242, 17.8532901110035], [121.464843728242, 17.8323743264764]]]]}, "properties": {"taskId": 2766, "taskX": 13720, "taskY": 9017, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.887817360979, 17.8846591764432], [121.893310525041, 17.8846591764432], [121.893310525041, 17.8898868155249], [121.887817360979, 17.8898868155249], [121.887817360979, 17.8846591764432]]]]}, "properties": {"taskId": 2819, "taskX": 54957, "taskY": 36078, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 17.6230817882545], [121.530761696981, 17.6230817882545], [121.530761696981, 17.6440220248121], [121.508789040735, 17.6440220248121], [121.508789040735, 17.6230817882545]]]]}, "properties": {"taskId": 2810, "taskX": 13722, "taskY": 9007, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 17.602139120297], [121.849365212549, 17.602139120297], [121.849365212549, 17.6126107580436], [121.838378884426, 17.6126107580436], [121.838378884426, 17.602139120297]]]]}, "properties": {"taskId": 2889, "taskX": 27474, "taskY": 18012, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.849365212549, 17.6126107580436], [121.860351540672, 17.6126107580436], [121.860351540672, 17.6230817882545], [121.849365212549, 17.6230817882545], [121.849365212549, 17.6126107580436]]]]}, "properties": {"taskId": 2892, "taskX": 27475, "taskY": 18013, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.893310525041, 17.8794313834418], [121.898803689102, 17.8794313834418], [121.898803689102, 17.8846591764432], [121.893310525041, 17.8846591764432], [121.893310525041, 17.8794313834418]]]]}, "properties": {"taskId": 2762, "taskX": 54958, "taskY": 36077, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 17.8323743264764], [121.508789040735, 17.8323743264764], [121.508789040735, 17.8532901110035], [121.486816384489, 17.8532901110035], [121.486816384489, 17.8323743264764]]]]}, "properties": {"taskId": 2768, "taskX": 13721, "taskY": 9017, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 17.9787330924414], [121.442871071996, 17.9787330924414], [121.442871071996, 17.9996316117937], [121.42089841575, 17.9996316117937], [121.42089841575, 17.9787330924414]]]]}, "properties": {"taskId": 2849, "taskX": 13718, "taskY": 9024, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.1667304070769], [121.442871071996, 18.1667304070769], [121.442871071996, 18.1876065493462], [121.42089841575, 18.1876065493462], [121.42089841575, 18.1667304070769]]]]}, "properties": {"taskId": 2698, "taskX": 13718, "taskY": 9033, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 17.6230817882545], [121.552734353227, 17.6230817882545], [121.552734353227, 17.6440220248121], [121.530761696981, 17.6440220248121], [121.530761696981, 17.6230817882545]]]]}, "properties": {"taskId": 2812, "taskX": 13723, "taskY": 9007, "taskZoom": 14, "taskSplittable": true, "taskStatus": "INVALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 17.8846591764432], [121.887817360979, 17.8846591764432], [121.887817360979, 17.8898868155249], [121.882324196918, 17.8898868155249], [121.882324196918, 17.8846591764432]]]]}, "properties": {"taskId": 2817, "taskX": 54956, "taskY": 36078, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.887817360979, 17.8898868155249], [121.893310525041, 17.8898868155249], [121.893310525041, 17.8951143006479], [121.887817360979, 17.8951143006479], [121.887817360979, 17.8898868155249]]]]}, "properties": {"taskId": 2820, "taskX": 54957, "taskY": 36079, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 17.6126107580436], [121.849365212549, 17.6126107580436], [121.849365212549, 17.6230817882545], [121.838378884426, 17.6230817882545], [121.838378884426, 17.6126107580436]]]]}, "properties": {"taskId": 2890, "taskX": 27474, "taskY": 18013, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.190185525167, 18.5993951989841], [121.195678689228, 18.5993951989841], [121.195678689228, 18.6046013852398], [121.190185525167, 18.6046013852398], [121.190185525167, 18.5993951989841]]]]}, "properties": {"taskId": 2846, "taskX": 54830, "taskY": 36215, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 17.8114560854768], [121.838378884426, 17.8114560854768], [121.838378884426, 17.8323743264764], [121.81640622818, 17.8323743264764], [121.81640622818, 17.8114560854768]]]]}, "properties": {"taskId": 2609, "taskX": 13736, "taskY": 9016, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 17.6335522106155], [121.827392556303, 17.6335522106155], [121.827392556303, 17.6440220248121], [121.81640622818, 17.6440220248121], [121.81640622818, 17.6335522106155]]]]}, "properties": {"taskId": 2678, "taskX": 27472, "taskY": 18015, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 17.8114560854768], [121.860351540672, 17.8114560854768], [121.860351540672, 17.8323743264764], [121.838378884426, 17.8323743264764], [121.838378884426, 17.8114560854768]]]]}, "properties": {"taskId": 2611, "taskX": 13737, "taskY": 9016, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.827392556303, 17.6230817882545], [121.838378884426, 17.6230817882545], [121.838378884426, 17.6335522106155], [121.827392556303, 17.6335522106155], [121.827392556303, 17.6230817882545]]]]}, "properties": {"taskId": 2679, "taskX": 27473, "taskY": 18014, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.2397859676821], [121.67358396258, 18.2397859676821], [121.67358396258, 18.2502199739071], [121.662597634457, 18.2502199739071], [121.662597634457, 18.2397859676821]]]]}, "properties": {"taskId": 2622, "taskX": 27458, "taskY": 18073, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 17.8428325259552], [121.849365212549, 17.8428325259552], [121.849365212549, 17.8532901110035], [121.838378884426, 17.8532901110035], [121.838378884426, 17.8428325259552]]]]}, "properties": {"taskId": 2626, "taskX": 27474, "taskY": 18035, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.6322434410729], [121.734695412764, 17.6322434410729], [121.734695412764, 17.632897827032], [121.734008767257, 17.632897827032], [121.734008767257, 17.6322434410729]]]]}, "properties": {"taskId": 2657, "taskX": 439432, "taskY": 288238, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734695412764, 17.632897827032], [121.735382058272, 17.632897827032], [121.735382058272, 17.6335522106155], [121.734695412764, 17.6335522106155], [121.734695412764, 17.632897827032]]]]}, "properties": {"taskId": 2660, "taskX": 439433, "taskY": 288239, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.644744851257, 18.3571323593422], [121.646118142272, 18.3571323593422], [121.646118142272, 18.3584357612796], [121.644744851257, 18.3584357612796], [121.644744851257, 18.3571323593422]]]]}, "properties": {"taskId": 2683, "taskX": 219651, "taskY": 144674, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.7591497523209], [121.734008767257, 17.7591497523209], [121.734008767257, 17.764381074702], [121.728515603195, 17.764381074702], [121.728515603195, 17.7591497523209]]]]}, "properties": {"taskId": 2669, "taskX": 54928, "taskY": 36054, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.764381074702], [121.739501931318, 17.764381074702], [121.739501931318, 17.7696122440617], [121.734008767257, 17.7696122440617], [121.734008767257, 17.764381074702]]]]}, "properties": {"taskId": 2672, "taskX": 54929, "taskY": 36055, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.091064431255, 18.3336694425994], [122.102050759378, 18.3336694425994], [122.102050759378, 18.3440977989279], [122.091064431255, 18.3440977989279], [122.091064431255, 18.3336694425994]]]]}, "properties": {"taskId": 2871, "taskX": 27497, "taskY": 18082, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 17.6283170754359], [121.821899392241, 17.6283170754359], [121.821899392241, 17.6335522106155], [121.81640622818, 17.6335522106155], [121.81640622818, 17.6283170754359]]]]}, "properties": {"taskId": 2874, "taskX": 54944, "taskY": 36029, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.827392556303, 18.271086106447], [121.838378884426, 18.271086106447], [121.838378884426, 18.2815182321454], [121.827392556303, 18.2815182321454], [121.827392556303, 18.271086106447]]]]}, "properties": {"taskId": 2735, "taskX": 27473, "taskY": 18076, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 18.5629474396796], [121.179199197044, 18.5629474396796], [121.179199197044, 18.5837756851588], [121.157226540798, 18.5837756851588], [121.157226540798, 18.5629474396796]]]]}, "properties": {"taskId": 2745, "taskX": 13706, "taskY": 9052, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 17.9160227007731], [121.530761696981, 17.9160227007731], [121.530761696981, 17.9369286344414], [121.508789040735, 17.9369286344414], [121.508789040735, 17.9160227007731]]]]}, "properties": {"taskId": 2798, "taskX": 13722, "taskY": 9021, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.179199197044, 18.5629474396796], [121.190185525167, 18.5629474396796], [121.190185525167, 18.5733618804414], [121.179199197044, 18.5733618804414], [121.179199197044, 18.5629474396796]]]]}, "properties": {"taskId": 2897, "taskX": 27414, "taskY": 18104, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 18.3336694425994], [121.640624978211, 18.3336694425994], [121.640624978211, 18.3440977989279], [121.629638650088, 18.3440977989279], [121.629638650088, 18.3336694425994]]]]}, "properties": {"taskId": 2647, "taskX": 27455, "taskY": 18082, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 18.3336694425994], [121.629638650088, 18.3336694425994], [121.629638650088, 18.3440977989279], [121.618652321965, 18.3440977989279], [121.618652321965, 18.3336694425994]]]]}, "properties": {"taskId": 2645, "taskX": 27454, "taskY": 18082, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734352090011, 17.632897827032], [121.734695412764, 17.632897827032], [121.734695412764, 17.6332250191207], [121.734352090011, 17.6332250191207], [121.734352090011, 17.632897827032]]]]}, "properties": {"taskId": 2663, "taskX": 878865, "taskY": 576478, "taskZoom": 20, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.646118142272, 18.3558289475659], [121.647491433288, 18.3558289475659], [121.647491433288, 18.3571323593422], [121.646118142272, 18.3571323593422], [121.646118142272, 18.3558289475659]]]]}, "properties": {"taskId": 2690, "taskX": 219652, "taskY": 144673, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.646118142272, 18.3545255259514], [121.647491433288, 18.3545255259514], [121.647491433288, 18.3558289475659], [121.646118142272, 18.3558289475659], [121.646118142272, 18.3545255259514]]]]}, "properties": {"taskId": 2689, "taskX": 219652, "taskY": 144672, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.647491433288, 18.3558289475659], [121.648864724303, 18.3558289475659], [121.648864724303, 18.3571323593422], [121.647491433288, 18.3571323593422], [121.647491433288, 18.3558289475659]]]]}, "properties": {"taskId": 2692, "taskX": 219653, "taskY": 144673, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.632897827032], [121.734352090011, 17.632897827032], [121.734352090011, 17.6332250191207], [121.734008767257, 17.6332250191207], [121.734008767257, 17.632897827032]]]]}, "properties": {"taskId": 2661, "taskX": 878864, "taskY": 576478, "taskZoom": 20, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734352090011, 17.6332250191207], [121.734695412764, 17.6332250191207], [121.734695412764, 17.6335522106155], [121.734352090011, 17.6335522106155], [121.734352090011, 17.6332250191207]]]]}, "properties": {"taskId": 2664, "taskX": 878865, "taskY": 576479, "taskZoom": 20, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.2293513352315], [121.679077126642, 18.2293513352315], [121.679077126642, 18.2345687297157], [121.67358396258, 18.2345687297157], [121.67358396258, 18.2293513352315]]]]}, "properties": {"taskId": 2629, "taskX": 54918, "taskY": 36144, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 18.2293513352315], [121.684570290703, 18.2293513352315], [121.684570290703, 18.2345687297157], [121.679077126642, 18.2345687297157], [121.679077126642, 18.2293513352315]]]]}, "properties": {"taskId": 2631, "taskX": 54919, "taskY": 36144, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.2345687297157], [121.679077126642, 18.2345687297157], [121.679077126642, 18.2397859676821], [121.67358396258, 18.2397859676821], [121.67358396258, 18.2345687297157]]]]}, "properties": {"taskId": 2630, "taskX": 54918, "taskY": 36145, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 18.2345687297157], [121.684570290703, 18.2345687297157], [121.684570290703, 18.2397859676821], [121.679077126642, 18.2397859676821], [121.679077126642, 18.2345687297157]]]]}, "properties": {"taskId": 2632, "taskX": 54919, "taskY": 36145, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 17.6230817882545], [121.860351540672, 17.6230817882545], [121.860351540672, 17.6440220248121], [121.838378884426, 17.6440220248121], [121.838378884426, 17.6230817882545]]]]}, "properties": {"taskId": 2676, "taskX": 13737, "taskY": 9007, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.2684779770181], [121.676330544611, 18.2684779770181], [121.676330544611, 18.271086106447], [121.67358396258, 18.271086106447], [121.67358396258, 18.2684779770181]]]]}, "properties": {"taskId": 2614, "taskX": 109836, "taskY": 72303, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.849365212549, 17.8323743264764], [121.860351540672, 17.8323743264764], [121.860351540672, 17.8428325259552], [121.849365212549, 17.8428325259552], [121.849365212549, 17.8323743264764]]]]}, "properties": {"taskId": 2627, "taskX": 27475, "taskY": 18034, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.6283170754359], [121.736755349288, 17.6283170754359], [121.736755349288, 17.6309346620284], [121.734008767257, 17.6309346620284], [121.734008767257, 17.6283170754359]]]]}, "properties": {"taskId": 2649, "taskX": 109858, "taskY": 72058, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.736755349288, 17.6309346620284], [121.739501931318, 17.6309346620284], [121.739501931318, 17.6335522106155], [121.736755349288, 17.6335522106155], [121.736755349288, 17.6309346620284]]]]}, "properties": {"taskId": 2652, "taskX": 109859, "taskY": 72059, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.643371560242, 18.3584357612796], [121.644744851257, 18.3584357612796], [121.644744851257, 18.3597391533776], [121.643371560242, 18.3597391533776], [121.643371560242, 18.3584357612796]]]]}, "properties": {"taskId": 2682, "taskX": 219650, "taskY": 144675, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 17.7591497523209], [121.750488259441, 17.7591497523209], [121.750488259441, 17.7696122440617], [121.739501931318, 17.7696122440617], [121.739501931318, 17.7591497523209]]]]}, "properties": {"taskId": 2644, "taskX": 27465, "taskY": 18027, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 18.4483466997417], [121.453857400119, 18.4483466997417], [121.453857400119, 18.4587681168231], [121.442871071996, 18.4587681168231], [121.442871071996, 18.4483466997417]]]]}, "properties": {"taskId": 2722, "taskX": 27438, "taskY": 18093, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 20.4270128107534], [121.981201150025, 20.4270128107534], [121.981201150025, 20.4373079470634], [121.970214821902, 20.4373079470634], [121.970214821902, 20.4270128107534]]]]}, "properties": {"taskId": 2737, "taskX": 27486, "taskY": 18284, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.981201150025, 20.4373079470634], [121.992187478148, 20.4373079470634], [121.992187478148, 20.447602394087], [121.981201150025, 20.447602394087], [121.981201150025, 20.4373079470634]]]]}, "properties": {"taskId": 2740, "taskX": 27487, "taskY": 18285, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 17.9369286344414], [121.552734353227, 17.9369286344414], [121.552734353227, 17.957832099161], [121.530761696981, 17.957832099161], [121.530761696981, 17.9369286344414]]]]}, "properties": {"taskId": 2803, "taskX": 13723, "taskY": 9022, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.714782693041, 17.6178463491106], [121.716155984057, 17.6178463491106], [121.716155984057, 17.619155223141], [121.714782693041, 17.619155223141], [121.714782693041, 17.6178463491106]]]]}, "properties": {"taskId": 2773, "taskX": 219702, "taskY": 144108, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.716155984057, 17.619155223141], [121.717529275072, 17.619155223141], [121.717529275072, 17.6204640876755], [121.716155984057, 17.6204640876755], [121.716155984057, 17.619155223141]]]]}, "properties": {"taskId": 2776, "taskX": 219703, "taskY": 144109, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.0414212187671], [121.56372068135, 18.0414212187671], [121.56372068135, 18.0518670704211], [121.552734353227, 18.0518670704211], [121.552734353227, 18.0414212187671]]]]}, "properties": {"taskId": 2905, "taskX": 27448, "taskY": 18054, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 18.0518670704211], [121.574707009473, 18.0518670704211], [121.574707009473, 18.0623123014185], [121.56372068135, 18.0623123014185], [121.56372068135, 18.0518670704211]]]]}, "properties": {"taskId": 2908, "taskX": 27449, "taskY": 18055, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.713409402026, 17.6204640876755], [121.714782693041, 17.6204640876755], [121.714782693041, 17.6217729427135], [121.713409402026, 17.6217729427135], [121.713409402026, 17.6204640876755]]]]}, "properties": {"taskId": 2919, "taskX": 219701, "taskY": 144110, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.453857400119, 18.4483466997417], [121.464843728242, 18.4483466997417], [121.464843728242, 18.4587681168231], [121.453857400119, 18.4587681168231], [121.453857400119, 18.4483466997417]]]]}, "properties": {"taskId": 2724, "taskX": 27439, "taskY": 18093, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.981201150025, 20.4270128107534], [121.992187478148, 20.4270128107534], [121.992187478148, 20.4373079470634], [121.981201150025, 20.4373079470634], [121.981201150025, 20.4270128107534]]]]}, "properties": {"taskId": 2739, "taskX": 27487, "taskY": 18284, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.716155984057, 17.6178463491106], [121.717529275072, 17.6178463491106], [121.717529275072, 17.619155223141], [121.716155984057, 17.619155223141], [121.716155984057, 17.6178463491106]]]]}, "properties": {"taskId": 2775, "taskX": 219703, "taskY": 144108, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 17.957832099161], [121.530761696981, 17.957832099161], [121.530761696981, 17.9787330924414], [121.508789040735, 17.9787330924414], [121.508789040735, 17.957832099161]]]]}, "properties": {"taskId": 2802, "taskX": 13722, "taskY": 9023, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.223144509536, 18.5733618804414], [121.234130837659, 18.5733618804414], [121.234130837659, 18.5837756851588], [121.223144509536, 18.5837756851588], [121.223144509536, 18.5733618804414]]]]}, "properties": {"taskId": 2718, "taskX": 27418, "taskY": 18105, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 18.5004474552763], [121.31103513452, 18.5004474552763], [121.31103513452, 18.5212833222942], [121.289062478274, 18.5212833222942], [121.289062478274, 18.5004474552763]]]]}, "properties": {"taskId": 2838, "taskX": 13712, "taskY": 9049, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.3584357612796], [121.641998269226, 18.3584357612796], [121.641998269226, 18.3597391533776], [121.640624978211, 18.3597391533776], [121.640624978211, 18.3584357612796]]]]}, "properties": {"taskId": 2878, "taskX": 219648, "taskY": 144675, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 17.8951143006479], [121.657104470395, 17.8951143006479], [121.657104470395, 17.9003416317732], [121.651611306334, 17.9003416317732], [121.651611306334, 17.8951143006479]]]]}, "properties": {"taskId": 2901, "taskX": 54914, "taskY": 36080, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.7094445652456], [121.698303200857, 17.7094445652456], [121.698303200857, 17.7120609713899], [121.695556618826, 17.7120609713899], [121.695556618826, 17.7094445652456]]]]}, "properties": {"taskId": 2910, "taskX": 109844, "taskY": 72089, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.234130837659, 18.5629474396796], [121.245117165782, 18.5629474396796], [121.245117165782, 18.5733618804414], [121.234130837659, 18.5733618804414], [121.234130837659, 18.5629474396796]]]]}, "properties": {"taskId": 2719, "taskX": 27419, "taskY": 18104, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 18.4796090526366], [121.31103513452, 18.4796090526366], [121.31103513452, 18.5004474552763], [121.289062478274, 18.5004474552763], [121.289062478274, 18.4796090526366]]]]}, "properties": {"taskId": 2837, "taskX": 13712, "taskY": 9048, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.641998269226, 18.3584357612796], [121.643371560242, 18.3584357612796], [121.643371560242, 18.3597391533776], [121.641998269226, 18.3597391533776], [121.641998269226, 18.3584357612796]]]]}, "properties": {"taskId": 2880, "taskX": 219649, "taskY": 144675, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 17.9003416317732], [121.657104470395, 17.9003416317732], [121.657104470395, 17.9055688088617], [121.651611306334, 17.9055688088617], [121.651611306334, 17.9003416317732]]]]}, "properties": {"taskId": 2902, "taskX": 54914, "taskY": 36081, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.7068281209488], [121.698303200857, 17.7068281209488], [121.698303200857, 17.7094445652456], [121.695556618826, 17.7094445652456], [121.695556618826, 17.7068281209488]]]]}, "properties": {"taskId": 2909, "taskX": 109844, "taskY": 72088, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698303200857, 17.7094445652456], [121.701049782888, 17.7094445652456], [121.701049782888, 17.7120609713899], [121.698303200857, 17.7120609713899], [121.698303200857, 17.7094445652456]]]]}, "properties": {"taskId": 2912, "taskX": 109845, "taskY": 72089, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.7486866486513], [121.772460915687, 17.7486866486513], [121.772460915687, 17.7696122440617], [121.750488259441, 17.7696122440617], [121.750488259441, 17.7486866486513]]]]}, "properties": {"taskId": 2640, "taskX": 13733, "taskY": 9013, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.7591497523209], [121.739501931318, 17.7591497523209], [121.739501931318, 17.764381074702], [121.734008767257, 17.764381074702], [121.734008767257, 17.7591497523209]]]]}, "properties": {"taskId": 2671, "taskX": 54929, "taskY": 36054, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.104087012639], [121.442871071996, 18.104087012639], [121.442871071996, 18.1249706362482], [121.42089841575, 18.1249706362482], [121.42089841575, 18.104087012639]]]]}, "properties": {"taskId": 2701, "taskX": 13718, "taskY": 9030, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 18.1249706362482], [121.464843728242, 18.1249706362482], [121.464843728242, 18.1458517685528], [121.442871071996, 18.1458517685528], [121.442871071996, 18.1249706362482]]]]}, "properties": {"taskId": 2704, "taskX": 13719, "taskY": 9031, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.223144509536, 18.5421166512436], [121.234130837659, 18.5421166512436], [121.234130837659, 18.5525323631785], [121.223144509536, 18.5525323631785], [121.223144509536, 18.5421166512436]]]]}, "properties": {"taskId": 2713, "taskX": 27418, "taskY": 18102, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 17.8742034365596], [121.893310525041, 17.8742034365596], [121.893310525041, 17.8846591764432], [121.882324196918, 17.8846591764432], [121.882324196918, 17.8742034365596]]]]}, "properties": {"taskId": 2757, "taskX": 27478, "taskY": 18038, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.893310525041, 17.8846591764432], [121.904296853164, 17.8846591764432], [121.904296853164, 17.8951143006479], [121.893310525041, 17.8951143006479], [121.893310525041, 17.8846591764432]]]]}, "properties": {"taskId": 2760, "taskX": 27479, "taskY": 18039, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 17.8951143006479], [121.552734353227, 17.8951143006479], [121.552734353227, 17.9160227007731], [121.530761696981, 17.9160227007731], [121.530761696981, 17.8951143006479]]]]}, "properties": {"taskId": 2799, "taskX": 13723, "taskY": 9020, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 18.3440977989279], [122.091064431255, 18.3440977989279], [122.091064431255, 18.3545255259514], [122.080078103132, 18.3545255259514], [122.080078103132, 18.3440977989279]]]]}, "properties": {"taskId": 2870, "taskX": 27496, "taskY": 18083, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 17.6230817882545], [121.821899392241, 17.6230817882545], [121.821899392241, 17.6283170754359], [121.81640622818, 17.6283170754359], [121.81640622818, 17.6230817882545]]]]}, "properties": {"taskId": 2873, "taskX": 54944, "taskY": 36028, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.821899392241, 17.6283170754359], [121.827392556303, 17.6283170754359], [121.827392556303, 17.6335522106155], [121.821899392241, 17.6335522106155], [121.821899392241, 17.6283170754359]]]]}, "properties": {"taskId": 2876, "taskX": 54945, "taskY": 36029, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 17.8114560854768], [121.508789040735, 17.8114560854768], [121.508789040735, 17.8323743264764], [121.486816384489, 17.8323743264764], [121.486816384489, 17.8114560854768]]]]}, "properties": {"taskId": 2767, "taskX": 13721, "taskY": 9016, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 18.1458517685528], [121.464843728242, 18.1458517685528], [121.464843728242, 18.1667304070769], [121.442871071996, 18.1667304070769], [121.442871071996, 18.1458517685528]]]]}, "properties": {"taskId": 2699, "taskX": 13719, "taskY": 9032, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.190185525167, 18.5941888535266], [121.195678689228, 18.5941888535266], [121.195678689228, 18.5993951989841], [121.190185525167, 18.5993951989841], [121.190185525167, 18.5941888535266]]]]}, "properties": {"taskId": 2845, "taskX": 54830, "taskY": 36214, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.898803689102, 17.8742034365596], [121.904296853164, 17.8742034365596], [121.904296853164, 17.8794313834418], [121.898803689102, 17.8794313834418], [121.898803689102, 17.8742034365596]]]]}, "properties": {"taskId": 2763, "taskX": 54959, "taskY": 36076, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.195678689228, 18.5993951989841], [121.20117185329, 18.5993951989841], [121.20117185329, 18.6046013852398], [121.195678689228, 18.6046013852398], [121.195678689228, 18.5993951989841]]]]}, "properties": {"taskId": 2848, "taskX": 54831, "taskY": 36215, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 17.602139120297], [121.552734353227, 17.602139120297], [121.552734353227, 17.6230817882545], [121.530761696981, 17.6230817882545], [121.530761696981, 17.602139120297]]]]}, "properties": {"taskId": 2811, "taskX": 13723, "taskY": 9006, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 17.8898868155249], [121.887817360979, 17.8898868155249], [121.887817360979, 17.8951143006479], [121.882324196918, 17.8951143006479], [121.882324196918, 17.8898868155249]]]]}, "properties": {"taskId": 2818, "taskX": 54956, "taskY": 36079, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.0205276547308], [121.574707009473, 18.0205276547308], [121.574707009473, 18.0414212187671], [121.552734353227, 18.0414212187671], [121.552734353227, 18.0205276547308]]]]}, "properties": {"taskId": 2861, "taskX": 13724, "taskY": 9026, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 17.9996316117937], [121.442871071996, 17.9996316117937], [121.442871071996, 18.0205276547308], [121.42089841575, 18.0205276547308], [121.42089841575, 17.9996316117937]]]]}, "properties": {"taskId": 2850, "taskX": 13718, "taskY": 9025, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.849365212549, 17.602139120297], [121.860351540672, 17.602139120297], [121.860351540672, 17.6126107580436], [121.849365212549, 17.6126107580436], [121.849365212549, 17.602139120297]]]]}, "properties": {"taskId": 2891, "taskX": 27475, "taskY": 18012, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.1249706362482], [121.486816384489, 18.1249706362482], [121.486816384489, 18.1458517685528], [121.464843728242, 18.1458517685528], [121.464843728242, 18.1249706362482]]]]}, "properties": {"taskId": 2634, "taskX": 13720, "taskY": 9031, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.1876065493462], [121.67358396258, 18.1876065493462], [121.67358396258, 18.1980436836125], [121.662597634457, 18.1980436836125], [121.662597634457, 18.1876065493462]]]]}, "properties": {"taskId": 2709, "taskX": 27458, "taskY": 18068, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.1980436836125], [121.684570290703, 18.1980436836125], [121.684570290703, 18.2084801928881], [121.67358396258, 18.2084801928881], [121.67358396258, 18.1980436836125]]]]}, "properties": {"taskId": 2712, "taskX": 27459, "taskY": 18069, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 18.3962301348468], [121.508789040735, 18.3962301348468], [121.508789040735, 18.4066547107354], [121.497802712612, 18.4066547107354], [121.497802712612, 18.3962301348468]]]]}, "properties": {"taskId": 2731, "taskX": 27443, "taskY": 18088, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.827392556303, 18.2867340597168], [121.832885720364, 18.2867340597168], [121.832885720364, 18.2919497303851], [121.827392556303, 18.2919497303851], [121.827392556303, 18.2867340597168]]]]}, "properties": {"taskId": 2770, "taskX": 54946, "taskY": 36155, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.398925759504, 18.4170786554759], [121.42089841575, 18.4170786554759], [121.42089841575, 18.4379246502857], [121.398925759504, 18.4379246502857], [121.398925759504, 18.4170786554759]]]]}, "properties": {"taskId": 2828, "taskX": 13717, "taskY": 9045, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.92626950941, 17.957832099161], [121.937255837533, 17.957832099161], [121.937255837533, 17.9682829048867], [121.92626950941, 17.9682829048867], [121.92626950941, 17.957832099161]]]]}, "properties": {"taskId": 2805, "taskX": 27482, "taskY": 18046, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.937255837533, 17.9682829048867], [121.948242165656, 17.9682829048867], [121.948242165656, 17.9787330924414], [121.937255837533, 17.9787330924414], [121.937255837533, 17.9682829048867]]]]}, "properties": {"taskId": 2808, "taskX": 27483, "taskY": 18047, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 17.7486866486513], [121.750488259441, 17.7486866486513], [121.750488259441, 17.7591497523209], [121.739501931318, 17.7591497523209], [121.739501931318, 17.7486866486513]]]]}, "properties": {"taskId": 2643, "taskX": 27465, "taskY": 18026, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.453857400119, 18.4379246502857], [121.464843728242, 18.4379246502857], [121.464843728242, 18.4483466997417], [121.453857400119, 18.4483466997417], [121.453857400119, 18.4379246502857]]]]}, "properties": {"taskId": 2723, "taskX": 27439, "taskY": 18092, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.714782693041, 17.619155223141], [121.716155984057, 17.619155223141], [121.716155984057, 17.6204640876755], [121.714782693041, 17.6204640876755], [121.714782693041, 17.619155223141]]]]}, "properties": {"taskId": 2774, "taskX": 219702, "taskY": 144109, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 17.9369286344414], [121.530761696981, 17.9369286344414], [121.530761696981, 17.957832099161], [121.508789040735, 17.957832099161], [121.508789040735, 17.9369286344414]]]]}, "properties": {"taskId": 2801, "taskX": 13722, "taskY": 9022, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 17.957832099161], [121.552734353227, 17.957832099161], [121.552734353227, 17.9787330924414], [121.530761696981, 17.9787330924414], [121.530761696981, 17.957832099161]]]]}, "properties": {"taskId": 2804, "taskX": 13723, "taskY": 9023, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 18.3545255259514], [121.508789040735, 18.3545255259514], [121.508789040735, 18.3753790908532], [121.486816384489, 18.3753790908532], [121.486816384489, 18.3545255259514]]]]}, "properties": {"taskId": 2867, "taskX": 13721, "taskY": 9042, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 18.0414212187671], [121.574707009473, 18.0414212187671], [121.574707009473, 18.0518670704211], [121.56372068135, 18.0518670704211], [121.56372068135, 18.0414212187671]]]]}, "properties": {"taskId": 2907, "taskX": 27449, "taskY": 18054, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.712036111011, 17.6217729427135], [121.713409402026, 17.6217729427135], [121.713409402026, 17.6230817882545], [121.712036111011, 17.6230817882545], [121.712036111011, 17.6217729427135]]]]}, "properties": {"taskId": 2918, "taskX": 219700, "taskY": 144111, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 17.8323743264764], [121.596679665719, 17.8323743264764], [121.596679665719, 17.8532901110035], [121.574707009473, 17.8532901110035], [121.574707009473, 17.8323743264764]]]]}, "properties": {"taskId": 2668, "taskX": 13725, "taskY": 9017, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 18.1876065493462], [121.838378884426, 18.1876065493462], [121.838378884426, 18.2084801928881], [121.81640622818, 18.2084801928881], [121.81640622818, 18.1876065493462]]]]}, "properties": {"taskId": 2685, "taskX": 13736, "taskY": 9034, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 18.2084801928881], [121.860351540672, 18.2084801928881], [121.860351540672, 18.2293513352315], [121.838378884426, 18.2293513352315], [121.838378884426, 18.2084801928881]]]]}, "properties": {"taskId": 2688, "taskX": 13737, "taskY": 9035, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.735382058272, 17.6309346620284], [121.736755349288, 17.6309346620284], [121.736755349288, 17.6322434410729], [121.735382058272, 17.6322434410729], [121.735382058272, 17.6309346620284]]]]}, "properties": {"taskId": 2655, "taskX": 219717, "taskY": 144118, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 17.8114560854768], [121.596679665719, 17.8114560854768], [121.596679665719, 17.8323743264764], [121.574707009473, 17.8323743264764], [121.574707009473, 17.8114560854768]]]]}, "properties": {"taskId": 2667, "taskX": 13725, "taskY": 9016, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 18.1876065493462], [121.860351540672, 18.1876065493462], [121.860351540672, 18.2084801928881], [121.838378884426, 18.2084801928881], [121.838378884426, 18.1876065493462]]]]}, "properties": {"taskId": 2687, "taskX": 13737, "taskY": 9034, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.2815182321454], [121.684570290703, 18.2815182321454], [121.684570290703, 18.2919497303851], [121.67358396258, 18.2919497303851], [121.67358396258, 18.2815182321454]]]]}, "properties": {"taskId": 2708, "taskX": 27459, "taskY": 18077, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.0205276547308], [121.794433571933, 18.0205276547308], [121.794433571933, 18.0414212187671], [121.772460915687, 18.0414212187671], [121.772460915687, 18.0205276547308]]]]}, "properties": {"taskId": 2741, "taskX": 13734, "taskY": 9026, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 18.0205276547308], [121.81640622818, 18.0205276547308], [121.81640622818, 18.0414212187671], [121.794433571933, 18.0414212187671], [121.794433571933, 18.0205276547308]]]]}, "properties": {"taskId": 2743, "taskX": 13735, "taskY": 9026, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.9682829048867], [121.915283181287, 17.9682829048867], [121.915283181287, 17.9787330924414], [121.904296853164, 17.9787330924414], [121.904296853164, 17.9682829048867]]]]}, "properties": {"taskId": 2882, "taskX": 27480, "taskY": 18047, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.957832099161], [121.915283181287, 17.957832099161], [121.915283181287, 17.9682829048867], [121.904296853164, 17.9682829048867], [121.904296853164, 17.957832099161]]]]}, "properties": {"taskId": 2881, "taskX": 27480, "taskY": 18046, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.915283181287, 17.9682829048867], [121.92626950941, 17.9682829048867], [121.92626950941, 17.9787330924414], [121.915283181287, 17.9787330924414], [121.915283181287, 17.9682829048867]]]]}, "properties": {"taskId": 2884, "taskX": 27481, "taskY": 18047, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.915283181287, 17.957832099161], [121.92626950941, 17.957832099161], [121.92626950941, 17.9682829048867], [121.915283181287, 17.9682829048867], [121.915283181287, 17.957832099161]]]]}, "properties": {"taskId": 2883, "taskX": 27481, "taskY": 18046, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.898803689102, 17.8532901110035], [121.901550271133, 17.8532901110035], [121.901550271133, 17.8559044112242], [121.898803689102, 17.8559044112242], [121.898803689102, 17.8532901110035]]]]}, "properties": {"taskId": 2793, "taskX": 109918, "taskY": 72144, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.901550271133, 17.8559044112242], [121.904296853164, 17.8559044112242], [121.904296853164, 17.8585186730187], [121.901550271133, 17.8585186730187], [121.901550271133, 17.8559044112242]]]]}, "properties": {"taskId": 2796, "taskX": 109919, "taskY": 72145, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 18.271086106447], [121.81640622818, 18.271086106447], [121.81640622818, 18.2919497303851], [121.794433571933, 18.2919497303851], [121.794433571933, 18.271086106447]]]]}, "properties": {"taskId": 2931, "taskX": 13735, "taskY": 9038, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.497389397627], [121.78344724381, 17.497389397627], [121.78344724381, 17.5078670934123], [121.772460915687, 17.5078670934123], [121.772460915687, 17.497389397627]]]]}, "properties": {"taskId": 2933, "taskX": 27468, "taskY": 18002, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78344724381, 17.5078670934123], [121.794433571933, 17.5078670934123], [121.794433571933, 17.518344184812], [121.78344724381, 17.518344184812], [121.78344724381, 17.5078670934123]]]]}, "properties": {"taskId": 2936, "taskX": 27469, "taskY": 18003, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.5078670934123], [121.777954079749, 17.5078670934123], [121.777954079749, 17.5131057146801], [121.772460915687, 17.5131057146801], [121.772460915687, 17.5078670934123]]]]}, "properties": {"taskId": 2937, "taskX": 54936, "taskY": 36006, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.777954079749, 17.5131057146801], [121.78344724381, 17.5131057146801], [121.78344724381, 17.518344184812], [121.777954079749, 17.518344184812], [121.777954079749, 17.5131057146801]]]]}, "properties": {"taskId": 2940, "taskX": 54937, "taskY": 36007, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.5602465002479], [121.755981423503, 17.5602465002479], [121.755981423503, 17.5654836083839], [121.750488259441, 17.5654836083839], [121.750488259441, 17.5602465002479]]]]}, "properties": {"taskId": 2781, "taskX": 54932, "taskY": 36016, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.755981423503, 17.5654836083839], [121.761474587564, 17.5654836083839], [121.761474587564, 17.5707205649901], [121.755981423503, 17.5707205649901], [121.755981423503, 17.5654836083839]]]]}, "properties": {"taskId": 2784, "taskX": 54933, "taskY": 36017, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.893310525041, 17.8532901110035], [121.898803689102, 17.8532901110035], [121.898803689102, 17.8585186730187], [121.893310525041, 17.8585186730187], [121.893310525041, 17.8532901110035]]]]}, "properties": {"taskId": 2789, "taskX": 54958, "taskY": 36072, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.898803689102, 17.8585186730187], [121.904296853164, 17.8585186730187], [121.904296853164, 17.8637470813091], [121.898803689102, 17.8637470813091], [121.898803689102, 17.8585186730187]]]]}, "properties": {"taskId": 2792, "taskX": 54959, "taskY": 36073, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.893310525041, 17.8585186730187], [121.898803689102, 17.8585186730187], [121.898803689102, 17.8637470813091], [121.893310525041, 17.8637470813091], [121.893310525041, 17.8585186730187]]]]}, "properties": {"taskId": 2790, "taskX": 54958, "taskY": 36073, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.901550271133, 17.8532901110035], [121.904296853164, 17.8532901110035], [121.904296853164, 17.8559044112242], [121.901550271133, 17.8559044112242], [121.901550271133, 17.8532901110035]]]]}, "properties": {"taskId": 2795, "taskX": 109919, "taskY": 72144, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.2919497303851], [121.794433571933, 18.2919497303851], [121.794433571933, 18.3128108432568], [121.772460915687, 18.3128108432568], [121.772460915687, 18.2919497303851]]]]}, "properties": {"taskId": 2930, "taskX": 13734, "taskY": 9039, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 18.4066547107354], [121.497802712612, 18.4066547107354], [121.497802712612, 18.4170786554759], [121.486816384489, 18.4170786554759], [121.486816384489, 18.4066547107354]]]]}, "properties": {"taskId": 2730, "taskX": 27442, "taskY": 18089, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.832885720364, 18.2815182321454], [121.838378884426, 18.2815182321454], [121.838378884426, 18.2867340597168], [121.832885720364, 18.2867340597168], [121.832885720364, 18.2815182321454]]]]}, "properties": {"taskId": 2771, "taskX": 54947, "taskY": 36154, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.92626950941, 17.9682829048867], [121.937255837533, 17.9682829048867], [121.937255837533, 17.9787330924414], [121.92626950941, 17.9787330924414], [121.92626950941, 17.9682829048867]]]]}, "properties": {"taskId": 2806, "taskX": 27482, "taskY": 18047, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.0414212187671], [121.794433571933, 18.0414212187671], [121.794433571933, 18.0623123014185], [121.772460915687, 18.0623123014185], [121.772460915687, 18.0414212187671]]]]}, "properties": {"taskId": 2742, "taskX": 13734, "taskY": 9027, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 18.0414212187671], [121.81640622818, 18.0414212187671], [121.81640622818, 18.0623123014185], [121.794433571933, 18.0623123014185], [121.794433571933, 18.0414212187671]]]]}, "properties": {"taskId": 2744, "taskX": 13735, "taskY": 9027, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 17.8532901110035], [121.893310525041, 17.8532901110035], [121.893310525041, 17.8637470813091], [121.882324196918, 17.8637470813091], [121.882324196918, 17.8532901110035]]]]}, "properties": {"taskId": 2785, "taskX": 27478, "taskY": 18036, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.893310525041, 17.8637470813091], [121.904296853164, 17.8637470813091], [121.904296853164, 17.8742034365596], [121.893310525041, 17.8742034365596], [121.893310525041, 17.8637470813091]]]]}, "properties": {"taskId": 2788, "taskX": 27479, "taskY": 18037, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.5707205649901], [121.761474587564, 17.5707205649901], [121.761474587564, 17.5811940234556], [121.750488259441, 17.5811940234556], [121.750488259441, 17.5707205649901]]]]}, "properties": {"taskId": 2778, "taskX": 27466, "taskY": 18009, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.5602465002479], [121.772460915687, 17.5602465002479], [121.772460915687, 17.5707205649901], [121.761474587564, 17.5707205649901], [121.761474587564, 17.5602465002479]]]]}, "properties": {"taskId": 2779, "taskX": 27467, "taskY": 18008, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.898803689102, 17.8559044112242], [121.901550271133, 17.8559044112242], [121.901550271133, 17.8585186730187], [121.898803689102, 17.8585186730187], [121.898803689102, 17.8559044112242]]]]}, "properties": {"taskId": 2794, "taskX": 109918, "taskY": 72145, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 18.271086106447], [121.794433571933, 18.271086106447], [121.794433571933, 18.2919497303851], [121.772460915687, 18.2919497303851], [121.772460915687, 18.271086106447]]]]}, "properties": {"taskId": 2929, "taskX": 13734, "taskY": 9038, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 18.2919497303851], [121.81640622818, 18.2919497303851], [121.81640622818, 18.3128108432568], [121.794433571933, 18.3128108432568], [121.794433571933, 18.2919497303851]]]]}, "properties": {"taskId": 2932, "taskX": 13735, "taskY": 9039, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 18.5004474552763], [121.267089822028, 18.5004474552763], [121.267089822028, 18.5212833222942], [121.245117165782, 18.5212833222942], [121.245117165782, 18.5004474552763]]]]}, "properties": {"taskId": 2830, "taskX": 13710, "taskY": 9049, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.827392556303, 17.602139120297], [121.838378884426, 17.602139120297], [121.838378884426, 17.6126107580436], [121.827392556303, 17.6126107580436], [121.827392556303, 17.602139120297]]]]}, "properties": {"taskId": 2895, "taskX": 27473, "taskY": 18012, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 18.4796090526366], [121.267089822028, 18.4796090526366], [121.267089822028, 18.5004474552763], [121.245117165782, 18.5004474552763], [121.245117165782, 18.4796090526366]]]]}, "properties": {"taskId": 2829, "taskX": 13710, "taskY": 9048, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.267089822028, 18.5004474552763], [121.289062478274, 18.5004474552763], [121.289062478274, 18.5212833222942], [121.267089822028, 18.5212833222942], [121.267089822028, 18.5004474552763]]]]}, "properties": {"taskId": 2832, "taskX": 13711, "taskY": 9049, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 17.602139120297], [121.827392556303, 17.602139120297], [121.827392556303, 17.6126107580436], [121.81640622818, 17.6126107580436], [121.81640622818, 17.602139120297]]]]}, "properties": {"taskId": 2893, "taskX": 27472, "taskY": 18012, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.827392556303, 17.6126107580436], [121.838378884426, 17.6126107580436], [121.838378884426, 17.6230817882545], [121.827392556303, 17.6230817882545], [121.827392556303, 17.6126107580436]]]]}, "properties": {"taskId": 2896, "taskX": 27473, "taskY": 18013, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.6649598274553], [121.574707009473, 17.6649598274553], [121.574707009473, 17.6858951936713], [121.552734353227, 17.6858951936713], [121.552734353227, 17.6649598274553]]]]}, "properties": {"taskId": 2822, "taskX": 13724, "taskY": 9009, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 17.6649598274553], [121.596679665719, 17.6649598274553], [121.596679665719, 17.6858951936713], [121.574707009473, 17.6858951936713], [121.574707009473, 17.6649598274553]]]]}, "properties": {"taskId": 2824, "taskX": 13725, "taskY": 9009, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 18.2502199739071], [121.92626950941, 18.2502199739071], [121.92626950941, 18.271086106447], [121.904296853164, 18.271086106447], [121.904296853164, 18.2502199739071]]]]}, "properties": {"taskId": 2858, "taskX": 13740, "taskY": 9037, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.8219155128794], [121.56372068135, 17.8219155128794], [121.56372068135, 17.8323743264764], [121.552734353227, 17.8323743264764], [121.552734353227, 17.8219155128794]]]]}, "properties": {"taskId": 2914, "taskX": 27448, "taskY": 18033, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.6858951936713], [121.871337868795, 17.6858951936713], [121.871337868795, 17.6963619623342], [121.860351540672, 17.6963619623342], [121.860351540672, 17.6858951936713]]]]}, "properties": {"taskId": 2813, "taskX": 27476, "taskY": 18020, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.871337868795, 17.6963619623342], [121.882324196918, 17.6963619623342], [121.882324196918, 17.7068281209488], [121.871337868795, 17.7068281209488], [121.871337868795, 17.6963619623342]]]]}, "properties": {"taskId": 2816, "taskX": 27477, "taskY": 18021, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.6440220248121], [121.794433571933, 17.6440220248121], [121.794433571933, 17.6649598274553], [121.772460915687, 17.6649598274553], [121.772460915687, 17.6440220248121]]]]}, "properties": {"taskId": 2853, "taskX": 13734, "taskY": 9008, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.6649598274553], [121.81640622818, 17.6649598274553], [121.81640622818, 17.6858951936713], [121.794433571933, 17.6858951936713], [121.794433571933, 17.6649598274553]]]]}, "properties": {"taskId": 2856, "taskX": 13735, "taskY": 9009, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.6963619623342], [121.871337868795, 17.6963619623342], [121.871337868795, 17.7068281209488], [121.860351540672, 17.7068281209488], [121.860351540672, 17.6963619623342]]]]}, "properties": {"taskId": 2814, "taskX": 27476, "taskY": 18021, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.871337868795, 17.6858951936713], [121.882324196918, 17.6858951936713], [121.882324196918, 17.6963619623342], [121.871337868795, 17.6963619623342], [121.871337868795, 17.6858951936713]]]]}, "properties": {"taskId": 2815, "taskX": 27477, "taskY": 18020, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.6649598274553], [121.794433571933, 17.6649598274553], [121.794433571933, 17.6858951936713], [121.772460915687, 17.6858951936713], [121.772460915687, 17.6649598274553]]]]}, "properties": {"taskId": 2854, "taskX": 13734, "taskY": 9009, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.6440220248121], [121.574707009473, 17.6440220248121], [121.574707009473, 17.6649598274553], [121.552734353227, 17.6649598274553], [121.552734353227, 17.6440220248121]]]]}, "properties": {"taskId": 2821, "taskX": 13724, "taskY": 9008, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 17.6440220248121], [121.596679665719, 17.6440220248121], [121.596679665719, 17.6649598274553], [121.574707009473, 17.6649598274553], [121.574707009473, 17.6440220248121]]]]}, "properties": {"taskId": 2823, "taskX": 13725, "taskY": 9008, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.92626950941, 18.2502199739071], [121.948242165656, 18.2502199739071], [121.948242165656, 18.271086106447], [121.92626950941, 18.271086106447], [121.92626950941, 18.2502199739071]]]]}, "properties": {"taskId": 2860, "taskX": 13741, "taskY": 9037, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.8114560854768], [121.56372068135, 17.8114560854768], [121.56372068135, 17.8219155128794], [121.552734353227, 17.8219155128794], [121.552734353227, 17.8114560854768]]]]}, "properties": {"taskId": 2913, "taskX": 27448, "taskY": 18032, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 17.8219155128794], [121.574707009473, 17.8219155128794], [121.574707009473, 17.8323743264764], [121.56372068135, 17.8323743264764], [121.56372068135, 17.8219155128794]]]]}, "properties": {"taskId": 2916, "taskX": 27449, "taskY": 18033, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.267089822028, 18.4796090526366], [121.289062478274, 18.4796090526366], [121.289062478274, 18.5004474552763], [121.267089822028, 18.5004474552763], [121.267089822028, 18.4796090526366]]]]}, "properties": {"taskId": 2831, "taskX": 13711, "taskY": 9048, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 17.6126107580436], [121.827392556303, 17.6126107580436], [121.827392556303, 17.6230817882545], [121.81640622818, 17.6230817882545], [121.81640622818, 17.6126107580436]]]]}, "properties": {"taskId": 2894, "taskX": 27472, "taskY": 18013, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.113281228305, 18.5525323631785], [121.124267556428, 18.5525323631785], [121.124267556428, 18.5629474396796], [121.113281228305, 18.5629474396796], [121.113281228305, 18.5525323631785]]]]}, "properties": {"taskId": 2886, "taskX": 27408, "taskY": 18103, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.124267556428, 18.5525323631785], [121.135253884552, 18.5525323631785], [121.135253884552, 18.5629474396796], [121.124267556428, 18.5629474396796], [121.124267556428, 18.5525323631785]]]]}, "properties": {"taskId": 2888, "taskX": 27409, "taskY": 18103, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 17.8114560854768], [121.574707009473, 17.8114560854768], [121.574707009473, 17.8219155128794], [121.56372068135, 17.8219155128794], [121.56372068135, 17.8114560854768]]]]}, "properties": {"taskId": 2915, "taskX": 27449, "taskY": 18032, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.3545255259514], [121.486816384489, 18.3545255259514], [121.486816384489, 18.3753790908532], [121.464843728242, 18.3753790908532], [121.464843728242, 18.3545255259514]]]]}, "properties": {"taskId": 2865, "taskX": 13720, "taskY": 9042, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 18.3753790908532], [121.508789040735, 18.3753790908532], [121.508789040735, 18.3962301348468], [121.486816384489, 18.3962301348468], [121.486816384489, 18.3753790908532]]]]}, "properties": {"taskId": 2868, "taskX": 13721, "taskY": 9043, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.0518670704211], [121.56372068135, 18.0518670704211], [121.56372068135, 18.0623123014185], [121.552734353227, 18.0623123014185], [121.552734353227, 18.0518670704211]]]]}, "properties": {"taskId": 2906, "taskX": 27448, "taskY": 18055, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.712036111011, 17.6204640876755], [121.713409402026, 17.6204640876755], [121.713409402026, 17.6217729427135], [121.712036111011, 17.6217729427135], [121.712036111011, 17.6204640876755]]]]}, "properties": {"taskId": 2917, "taskX": 219700, "taskY": 144110, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.713409402026, 17.6217729427135], [121.714782693041, 17.6217729427135], [121.714782693041, 17.6230817882545], [121.713409402026, 17.6230817882545], [121.713409402026, 17.6217729427135]]]]}, "properties": {"taskId": 2920, "taskX": 219701, "taskY": 144111, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.080322243936, 18.5629474396796], [121.091308572059, 18.5629474396796], [121.091308572059, 18.5733618804414], [121.080322243936, 18.5733618804414], [121.080322243936, 18.5629474396796]]]]}, "properties": {"taskId": 2963, "taskX": 27405, "taskY": 18104, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.113281228305, 18.5421166512436], [121.124267556428, 18.5421166512436], [121.124267556428, 18.5525323631785], [121.113281228305, 18.5525323631785], [121.113281228305, 18.5421166512436]]]]}, "properties": {"taskId": 2885, "taskX": 27408, "taskY": 18102, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.124267556428, 18.5421166512436], [121.135253884552, 18.5421166512436], [121.135253884552, 18.5525323631785], [121.124267556428, 18.5525323631785], [121.124267556428, 18.5421166512436]]]]}, "properties": {"taskId": 2887, "taskX": 27409, "taskY": 18102, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 18.0309747467668], [121.585693337596, 18.0309747467668], [121.585693337596, 18.0414212187671], [121.574707009473, 18.0414212187671], [121.574707009473, 18.0309747467668]]]]}, "properties": {"taskId": 2922, "taskX": 27450, "taskY": 18053, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.7696122440617], [121.882324196918, 17.7696122440617], [121.882324196918, 17.7905353905046], [121.860351540672, 17.7905353905046], [121.860351540672, 17.7696122440617]]]]}, "properties": {"taskId": 2973, "taskX": 13738, "taskY": 9014, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 17.7905353905046], [121.904296853164, 17.7905353905046], [121.904296853164, 17.8114560854768], [121.882324196918, 17.8114560854768], [121.882324196918, 17.7905353905046]]]]}, "properties": {"taskId": 2976, "taskX": 13739, "taskY": 9015, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 18.0205276547308], [121.585693337596, 18.0205276547308], [121.585693337596, 18.0309747467668], [121.574707009473, 18.0309747467668], [121.574707009473, 18.0205276547308]]]]}, "properties": {"taskId": 2921, "taskX": 27450, "taskY": 18052, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 18.0309747467668], [121.596679665719, 18.0309747467668], [121.596679665719, 18.0414212187671], [121.585693337596, 18.0414212187671], [121.585693337596, 18.0309747467668]]]]}, "properties": {"taskId": 2924, "taskX": 27451, "taskY": 18053, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.92626950941, 18.2293513352315], [121.937255837533, 18.2293513352315], [121.937255837533, 18.2397859676821], [121.92626950941, 18.2397859676821], [121.92626950941, 18.2293513352315]]]]}, "properties": {"taskId": 2941, "taskX": 27482, "taskY": 18072, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 18.3545255259514], [122.102050759378, 18.3545255259514], [122.102050759378, 18.3753790908532], [122.080078103132, 18.3753790908532], [122.080078103132, 18.3545255259514]]]]}, "properties": {"taskId": 2925, "taskX": 13748, "taskY": 9042, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.102050759378, 18.3753790908532], [122.124023415624, 18.3753790908532], [122.124023415624, 18.3962301348468], [122.102050759378, 18.3962301348468], [122.102050759378, 18.3753790908532]]]]}, "properties": {"taskId": 2928, "taskX": 13749, "taskY": 9043, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.92626950941, 18.2397859676821], [121.937255837533, 18.2397859676821], [121.937255837533, 18.2502199739071], [121.92626950941, 18.2502199739071], [121.92626950941, 18.2397859676821]]]]}, "properties": {"taskId": 2942, "taskX": 27482, "taskY": 18073, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.937255837533, 18.2293513352315], [121.948242165656, 18.2293513352315], [121.948242165656, 18.2397859676821], [121.937255837533, 18.2397859676821], [121.937255837533, 18.2293513352315]]]]}, "properties": {"taskId": 2943, "taskX": 27483, "taskY": 18072, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.069335915813, 18.5629474396796], [121.080322243936, 18.5629474396796], [121.080322243936, 18.5733618804414], [121.069335915813, 18.5733618804414], [121.069335915813, 18.5629474396796]]]]}, "properties": {"taskId": 2961, "taskX": 27404, "taskY": 18104, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.080322243936, 18.5733618804414], [121.091308572059, 18.5733618804414], [121.091308572059, 18.5837756851588], [121.080322243936, 18.5837756851588], [121.080322243936, 18.5733618804414]]]]}, "properties": {"taskId": 2964, "taskX": 27405, "taskY": 18105, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 17.9996316117937], [121.464843728242, 17.9996316117937], [121.464843728242, 18.0205276547308], [121.442871071996, 18.0205276547308], [121.442871071996, 17.9996316117937]]]]}, "properties": {"taskId": 2852, "taskX": 13719, "taskY": 9025, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 18.3753790908532], [122.102050759378, 18.3753790908532], [122.102050759378, 18.3962301348468], [122.080078103132, 18.3962301348468], [122.080078103132, 18.3753790908532]]]]}, "properties": {"taskId": 2926, "taskX": 13748, "taskY": 9043, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.102050759378, 18.3545255259514], [122.124023415624, 18.3545255259514], [122.124023415624, 18.3753790908532], [122.102050759378, 18.3753790908532], [122.102050759378, 18.3545255259514]]]]}, "properties": {"taskId": 2927, "taskX": 13749, "taskY": 9042, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.7905353905046], [121.882324196918, 17.7905353905046], [121.882324196918, 17.8114560854768], [121.860351540672, 17.8114560854768], [121.860351540672, 17.7905353905046]]]]}, "properties": {"taskId": 2974, "taskX": 13738, "taskY": 9015, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.069335915813, 18.5733618804414], [121.080322243936, 18.5733618804414], [121.080322243936, 18.5837756851588], [121.069335915813, 18.5837756851588], [121.069335915813, 18.5733618804414]]]]}, "properties": {"taskId": 2962, "taskX": 27404, "taskY": 18105, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.707916237965, 17.6152285725651], [121.70928952898, 17.6152285725651], [121.70928952898, 17.6165374655852], [121.707916237965, 17.6165374655852], [121.707916237965, 17.6152285725651]]]]}, "properties": {"taskId": 2955, "taskX": 219697, "taskY": 144106, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.1876065493462], [121.882324196918, 18.1876065493462], [121.882324196918, 18.2084801928881], [121.860351540672, 18.2084801928881], [121.860351540672, 18.1876065493462]]]]}, "properties": {"taskId": 2969, "taskX": 13738, "taskY": 9034, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.707916237965, 17.6165374655852], [121.70928952898, 17.6165374655852], [121.70928952898, 17.6178463491106], [121.707916237965, 17.6178463491106], [121.707916237965, 17.6165374655852]]]]}, "properties": {"taskId": 2956, "taskX": 219697, "taskY": 144107, "taskZoom": 18, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 18.1876065493462], [121.904296853164, 18.1876065493462], [121.904296853164, 18.2084801928881], [121.882324196918, 18.2084801928881], [121.882324196918, 18.1876065493462]]]]}, "properties": {"taskId": 2971, "taskX": 13739, "taskY": 9034, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.6165374655852], [121.707916237965, 17.6165374655852], [121.707916237965, 17.6178463491106], [121.706542946949, 17.6178463491106], [121.706542946949, 17.6165374655852]]]]}, "properties": {"taskId": 2954, "taskX": 219696, "taskY": 144107, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 18.2084801928881], [121.882324196918, 18.2084801928881], [121.882324196918, 18.2293513352315], [121.860351540672, 18.2293513352315], [121.860351540672, 18.2084801928881]]]]}, "properties": {"taskId": 2970, "taskX": 13738, "taskY": 9035, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.70928952898, 17.6126107580436], [121.712036111011, 17.6126107580436], [121.712036111011, 17.6152285725651], [121.70928952898, 17.6152285725651], [121.70928952898, 17.6126107580436]]]]}, "properties": {"taskId": 2951, "taskX": 109849, "taskY": 72052, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.6152285725651], [121.707229592457, 17.6152285725651], [121.707229592457, 17.6158830202619], [121.706542946949, 17.6158830202619], [121.706542946949, 17.6152285725651]]]]}, "properties": {"taskId": 2957, "taskX": 439392, "taskY": 288212, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.707229592457, 17.6158830202619], [121.707916237965, 17.6158830202619], [121.707916237965, 17.6165374655852], [121.707229592457, 17.6165374655852], [121.707229592457, 17.6158830202619]]]]}, "properties": {"taskId": 2960, "taskX": 439393, "taskY": 288213, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.124267556428, 18.5941888535266], [121.135253884552, 18.5941888535266], [121.135253884552, 18.6046013852398], [121.124267556428, 18.6046013852398], [121.124267556428, 18.5941888535266]]]]}, "properties": {"taskId": 2948, "taskX": 27409, "taskY": 18107, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.113281228305, 18.5941888535266], [121.124267556428, 18.5941888535266], [121.124267556428, 18.6046013852398], [121.113281228305, 18.6046013852398], [121.113281228305, 18.5941888535266]]]]}, "properties": {"taskId": 2946, "taskX": 27408, "taskY": 18107, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.6126107580436], [121.70928952898, 17.6126107580436], [121.70928952898, 17.6152285725651], [121.706542946949, 17.6152285725651], [121.706542946949, 17.6126107580436]]]]}, "properties": {"taskId": 2949, "taskX": 109848, "taskY": 72052, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.70928952898, 17.6152285725651], [121.712036111011, 17.6152285725651], [121.712036111011, 17.6178463491106], [121.70928952898, 17.6178463491106], [121.70928952898, 17.6152285725651]]]]}, "properties": {"taskId": 2952, "taskX": 109849, "taskY": 72053, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.6158830202619], [121.707229592457, 17.6158830202619], [121.707229592457, 17.6165374655852], [121.706542946949, 17.6165374655852], [121.706542946949, 17.6158830202619]]]]}, "properties": {"taskId": 2958, "taskX": 439392, "taskY": 288213, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.707229592457, 17.6152285725651], [121.707916237965, 17.6152285725651], [121.707916237965, 17.6158830202619], [121.707229592457, 17.6158830202619], [121.707229592457, 17.6152285725651]]]]}, "properties": {"taskId": 2959, "taskX": 439393, "taskY": 288212, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.135253884552, 18.5733618804414], [121.146240212675, 18.5733618804414], [121.146240212675, 18.5837756851588], [121.135253884552, 18.5837756851588], [121.135253884552, 18.5733618804414]]]]}, "properties": {"taskId": 2982, "taskX": 27410, "taskY": 18105, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 18.0832009002027], [121.640624978211, 18.0832009002027], [121.640624978211, 18.104087012639], [121.618652321965, 18.104087012639], [121.618652321965, 18.0832009002027]]]]}, "properties": {"taskId": 2988, "taskX": 13727, "taskY": 9029, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 18.0623123014185], [121.640624978211, 18.0623123014185], [121.640624978211, 18.0832009002027], [121.618652321965, 18.0832009002027], [121.618652321965, 18.0623123014185]]]]}, "properties": {"taskId": 2987, "taskX": 13727, "taskY": 9028, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.92626950941, 17.9369286344414], [121.937255837533, 17.9369286344414], [121.937255837533, 17.9473806755755], [121.92626950941, 17.9473806755755], [121.92626950941, 17.9369286344414]]]]}, "properties": {"taskId": 2965, "taskX": 27482, "taskY": 18044, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.937255837533, 17.9369286344414], [121.948242165656, 17.9369286344414], [121.948242165656, 17.9473806755755], [121.937255837533, 17.9473806755755], [121.937255837533, 17.9369286344414]]]]}, "properties": {"taskId": 2967, "taskX": 27483, "taskY": 18044, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 17.8532901110035], [121.838378884426, 17.8532901110035], [121.838378884426, 17.8742034365596], [121.81640622818, 17.8742034365596], [121.81640622818, 17.8532901110035]]]]}, "properties": {"taskId": 2977, "taskX": 13736, "taskY": 9018, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.957832099161], [121.882324196918, 17.957832099161], [121.882324196918, 17.9787330924414], [121.860351540672, 17.9787330924414], [121.860351540672, 17.957832099161]]]]}, "properties": {"taskId": 2990, "taskX": 13738, "taskY": 9023, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.92626950941, 17.9473806755755], [121.937255837533, 17.9473806755755], [121.937255837533, 17.957832099161], [121.92626950941, 17.957832099161], [121.92626950941, 17.9473806755755]]]]}, "properties": {"taskId": 2966, "taskX": 27482, "taskY": 18045, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.937255837533, 17.9473806755755], [121.948242165656, 17.9473806755755], [121.948242165656, 17.957832099161], [121.937255837533, 17.957832099161], [121.937255837533, 17.9473806755755]]]]}, "properties": {"taskId": 2968, "taskX": 27483, "taskY": 18045, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 17.8742034365596], [121.838378884426, 17.8742034365596], [121.838378884426, 17.8951143006479], [121.81640622818, 17.8951143006479], [121.81640622818, 17.8742034365596]]]]}, "properties": {"taskId": 2978, "taskX": 13736, "taskY": 9019, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.9369286344414], [121.882324196918, 17.9369286344414], [121.882324196918, 17.957832099161], [121.860351540672, 17.957832099161], [121.860351540672, 17.9369286344414]]]]}, "properties": {"taskId": 2989, "taskX": 13738, "taskY": 9022, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 17.9369286344414], [121.904296853164, 17.9369286344414], [121.904296853164, 17.957832099161], [121.882324196918, 17.957832099161], [121.882324196918, 17.9369286344414]]]]}, "properties": {"taskId": 2991, "taskX": 13739, "taskY": 9022, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.865844704733, 17.8898868155249], [121.868591286764, 17.8898868155249], [121.868591286764, 17.8925005773337], [121.865844704733, 17.8925005773337], [121.865844704733, 17.8898868155249]]]]}, "properties": {"taskId": 3045, "taskX": 109906, "taskY": 72158, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.868591286764, 17.8925005773337], [121.871337868795, 17.8925005773337], [121.871337868795, 17.8951143006479], [121.868591286764, 17.8951143006479], [121.868591286764, 17.8925005773337]]]]}, "properties": {"taskId": 3048, "taskX": 109907, "taskY": 72159, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 17.8637470813091], [121.887817360979, 17.8637470813091], [121.887817360979, 17.8689753358357], [121.882324196918, 17.8689753358357], [121.882324196918, 17.8637470813091]]]]}, "properties": {"taskId": 2997, "taskX": 54956, "taskY": 36074, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.887817360979, 17.8689753358357], [121.893310525041, 17.8689753358357], [121.893310525041, 17.8742034365596], [121.887817360979, 17.8742034365596], [121.887817360979, 17.8689753358357]]]]}, "properties": {"taskId": 3000, "taskX": 54957, "taskY": 36075, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.898803689102, 17.8794313834418], [121.904296853164, 17.8794313834418], [121.904296853164, 17.8846591764432], [121.898803689102, 17.8846591764432], [121.898803689102, 17.8794313834418]]]]}, "properties": {"taskId": 2764, "taskX": 54959, "taskY": 36077, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.876831032856, 17.8846591764432], [121.882324196918, 17.8846591764432], [121.882324196918, 17.8898868155249], [121.876831032856, 17.8898868155249], [121.876831032856, 17.8846591764432]]]]}, "properties": {"taskId": 3043, "taskX": 54955, "taskY": 36078, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 17.8689753358357], [121.887817360979, 17.8689753358357], [121.887817360979, 17.8742034365596], [121.882324196918, 17.8742034365596], [121.882324196918, 17.8689753358357]]]]}, "properties": {"taskId": 2998, "taskX": 54956, "taskY": 36075, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 18.1458517685528], [121.728515603195, 18.1458517685528], [121.728515603195, 18.1667304070769], [121.706542946949, 18.1667304070769], [121.706542946949, 18.1458517685528]]]]}, "properties": {"taskId": 3023, "taskX": 13731, "taskY": 9032, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.805419900056, 17.9160227007731], [121.81640622818, 17.9160227007731], [121.81640622818, 17.9264759760701], [121.805419900056, 17.9264759760701], [121.805419900056, 17.9160227007731]]]]}, "properties": {"taskId": 3019, "taskX": 27471, "taskY": 18042, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.156291399692], [121.695556618826, 18.156291399692], [121.695556618826, 18.1667304070769], [121.684570290703, 18.1667304070769], [121.684570290703, 18.156291399692]]]]}, "properties": {"taskId": 3026, "taskX": 27460, "taskY": 18065, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.871337868795, 17.8742034365596], [121.876831032856, 17.8742034365596], [121.876831032856, 17.8794313834418], [121.871337868795, 17.8794313834418], [121.871337868795, 17.8742034365596]]]]}, "properties": {"taskId": 3069, "taskX": 54954, "taskY": 36076, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.876831032856, 17.8794313834418], [121.882324196918, 17.8794313834418], [121.882324196918, 17.8846591764432], [121.876831032856, 17.8846591764432], [121.876831032856, 17.8794313834418]]]]}, "properties": {"taskId": 3072, "taskX": 54955, "taskY": 36077, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.876831032856, 17.8898868155249], [121.882324196918, 17.8898868155249], [121.882324196918, 17.8951143006479], [121.876831032856, 17.8951143006479], [121.876831032856, 17.8898868155249]]]]}, "properties": {"taskId": 3044, "taskX": 54955, "taskY": 36079, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.8898868155249], [121.865844704733, 17.8898868155249], [121.865844704733, 17.8951143006479], [121.860351540672, 17.8951143006479], [121.860351540672, 17.8898868155249]]]]}, "properties": {"taskId": 3038, "taskX": 54952, "taskY": 36079, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.876831032856, 17.8742034365596], [121.882324196918, 17.8742034365596], [121.882324196918, 17.8794313834418], [121.876831032856, 17.8794313834418], [121.876831032856, 17.8742034365596]]]]}, "properties": {"taskId": 3071, "taskX": 54955, "taskY": 36076, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.9160227007731], [121.805419900056, 17.9160227007731], [121.805419900056, 17.9264759760701], [121.794433571933, 17.9264759760701], [121.794433571933, 17.9160227007731]]]]}, "properties": {"taskId": 3017, "taskX": 27470, "taskY": 18042, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 18.1458517685528], [121.706542946949, 18.1458517685528], [121.706542946949, 18.156291399692], [121.695556618826, 18.156291399692], [121.695556618826, 18.1458517685528]]]]}, "properties": {"taskId": 3027, "taskX": 27461, "taskY": 18064, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.525268532919, 18.3962301348468], [121.530761696981, 18.3962301348468], [121.530761696981, 18.4014425016654], [121.525268532919, 18.4014425016654], [121.525268532919, 18.3962301348468]]]]}, "properties": {"taskId": 3015, "taskX": 54891, "taskY": 36176, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.8951143006479], [121.871337868795, 17.8951143006479], [121.871337868795, 17.9055688088617], [121.860351540672, 17.9055688088617], [121.860351540672, 17.8951143006479]]]]}, "properties": {"taskId": 3061, "taskX": 27476, "taskY": 18040, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.871337868795, 17.9055688088617], [121.882324196918, 17.9055688088617], [121.882324196918, 17.9160227007731], [121.871337868795, 17.9160227007731], [121.871337868795, 17.9055688088617]]]]}, "properties": {"taskId": 3064, "taskX": 27477, "taskY": 18041, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.3571323593422], [121.641311623719, 18.3571323593422], [121.641311623719, 18.3577840615408], [121.640624978211, 18.3577840615408], [121.640624978211, 18.3571323593422]]]]}, "properties": {"taskId": 3077, "taskX": 439296, "taskY": 289348, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.641311623719, 18.3577840615408], [121.641998269226, 18.3577840615408], [121.641998269226, 18.3584357612796], [121.641311623719, 18.3584357612796], [121.641311623719, 18.3577840615408]]]]}, "properties": {"taskId": 3080, "taskX": 439297, "taskY": 289349, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 18.1667304070769], [121.717529275072, 18.1667304070769], [121.717529275072, 18.1771687903979], [121.706542946949, 18.1771687903979], [121.706542946949, 18.1667304070769]]]]}, "properties": {"taskId": 3029, "taskX": 27462, "taskY": 18066, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 18.1771687903979], [121.728515603195, 18.1771687903979], [121.728515603195, 18.1876065493462], [121.717529275072, 18.1876065493462], [121.717529275072, 18.1771687903979]]]]}, "properties": {"taskId": 3032, "taskX": 27463, "taskY": 18067, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.868591286764, 17.8846591764432], [121.871337868795, 17.8846591764432], [121.871337868795, 17.8872730152265], [121.868591286764, 17.8872730152265], [121.868591286764, 17.8846591764432]]]]}, "properties": {"taskId": 3055, "taskX": 109907, "taskY": 72156, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 17.9055688088617], [121.893310525041, 17.9055688088617], [121.893310525041, 17.9160227007731], [121.882324196918, 17.9160227007731], [121.882324196918, 17.9055688088617]]]]}, "properties": {"taskId": 3066, "taskX": 27478, "taskY": 18041, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 17.957832099161], [121.893310525041, 17.957832099161], [121.893310525041, 17.9682829048867], [121.882324196918, 17.9682829048867], [121.882324196918, 17.957832099161]]]]}, "properties": {"taskId": 3093, "taskX": 27478, "taskY": 18046, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.893310525041, 17.9682829048867], [121.904296853164, 17.9682829048867], [121.904296853164, 17.9787330924414], [121.893310525041, 17.9787330924414], [121.893310525041, 17.9682829048867]]]]}, "properties": {"taskId": 3096, "taskX": 27479, "taskY": 18047, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.887817360979, 17.8637470813091], [121.893310525041, 17.8637470813091], [121.893310525041, 17.8689753358357], [121.887817360979, 17.8689753358357], [121.887817360979, 17.8637470813091]]]]}, "properties": {"taskId": 2999, "taskX": 54957, "taskY": 36074, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.5602465002479], [121.695556618826, 17.5602465002479], [121.695556618826, 17.5707205649901], [121.684570290703, 17.5707205649901], [121.684570290703, 17.5602465002479]]]]}, "properties": {"taskId": 3001, "taskX": 27460, "taskY": 18008, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.871337868795, 17.8925005773337], [121.874084450825, 17.8925005773337], [121.874084450825, 17.8951143006479], [121.871337868795, 17.8951143006479], [121.871337868795, 17.8925005773337]]]]}, "properties": {"taskId": 3050, "taskX": 109908, "taskY": 72159, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.874084450825, 17.8846591764432], [121.876831032856, 17.8846591764432], [121.876831032856, 17.8872730152265], [121.874084450825, 17.8872730152265], [121.874084450825, 17.8846591764432]]]]}, "properties": {"taskId": 3059, "taskX": 109909, "taskY": 72156, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.835632302395, 18.2867340597168], [121.838378884426, 18.2867340597168], [121.838378884426, 18.2893419146663], [121.835632302395, 18.2893419146663], [121.835632302395, 18.2867340597168]]]]}, "properties": {"taskId": 3075, "taskX": 109895, "taskY": 72310, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.874084450825, 17.8898868155249], [121.876831032856, 17.8898868155249], [121.876831032856, 17.8925005773337], [121.874084450825, 17.8925005773337], [121.874084450825, 17.8898868155249]]]]}, "properties": {"taskId": 3051, "taskX": 109909, "taskY": 72158, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.871337868795, 17.8872730152265], [121.874084450825, 17.8872730152265], [121.874084450825, 17.8898868155249], [121.871337868795, 17.8898868155249], [121.871337868795, 17.8872730152265]]]]}, "properties": {"taskId": 3058, "taskX": 109908, "taskY": 72157, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.832885720364, 18.2867340597168], [121.835632302395, 18.2867340597168], [121.835632302395, 18.2893419146663], [121.832885720364, 18.2893419146663], [121.832885720364, 18.2867340597168]]]]}, "properties": {"taskId": 3073, "taskX": 109894, "taskY": 72310, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.835632302395, 18.2893419146663], [121.838378884426, 18.2893419146663], [121.838378884426, 18.2919497303851], [121.835632302395, 18.2919497303851], [121.835632302395, 18.2893419146663]]]]}, "properties": {"taskId": 3076, "taskX": 109895, "taskY": 72311, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.871337868795, 17.8898868155249], [121.874084450825, 17.8898868155249], [121.874084450825, 17.8925005773337], [121.871337868795, 17.8925005773337], [121.871337868795, 17.8898868155249]]]]}, "properties": {"taskId": 3049, "taskX": 109908, "taskY": 72158, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.874084450825, 17.8925005773337], [121.876831032856, 17.8925005773337], [121.876831032856, 17.8951143006479], [121.874084450825, 17.8951143006479], [121.874084450825, 17.8925005773337]]]]}, "properties": {"taskId": 3052, "taskX": 109909, "taskY": 72159, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.871337868795, 17.8846591764432], [121.874084450825, 17.8846591764432], [121.874084450825, 17.8872730152265], [121.871337868795, 17.8872730152265], [121.871337868795, 17.8846591764432]]]]}, "properties": {"taskId": 3057, "taskX": 109908, "taskY": 72156, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.874084450825, 17.8872730152265], [121.876831032856, 17.8872730152265], [121.876831032856, 17.8898868155249], [121.874084450825, 17.8898868155249], [121.874084450825, 17.8872730152265]]]]}, "properties": {"taskId": 3060, "taskX": 109909, "taskY": 72157, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.832885720364, 18.2893419146663], [121.835632302395, 18.2893419146663], [121.835632302395, 18.2919497303851], [121.832885720364, 18.2919497303851], [121.832885720364, 18.2893419146663]]]]}, "properties": {"taskId": 3074, "taskX": 109894, "taskY": 72311, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.5707205649901], [121.695556618826, 17.5707205649901], [121.695556618826, 17.5811940234556], [121.684570290703, 17.5811940234556], [121.684570290703, 17.5707205649901]]]]}, "properties": {"taskId": 3002, "taskX": 27460, "taskY": 18009, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.5707205649901], [121.706542946949, 17.5707205649901], [121.706542946949, 17.5811940234556], [121.695556618826, 17.5811940234556], [121.695556618826, 17.5707205649901]]]]}, "properties": {"taskId": 3004, "taskX": 27461, "taskY": 18009, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.519775368858, 18.3962301348468], [121.525268532919, 18.3962301348468], [121.525268532919, 18.4014425016654], [121.519775368858, 18.4014425016654], [121.519775368858, 18.3962301348468]]]]}, "properties": {"taskId": 3013, "taskX": 54890, "taskY": 36176, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.525268532919, 18.4014425016654], [121.530761696981, 18.4014425016654], [121.530761696981, 18.4066547107354], [121.525268532919, 18.4066547107354], [121.525268532919, 18.4014425016654]]]]}, "properties": {"taskId": 3016, "taskX": 54891, "taskY": 36177, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.9055688088617], [121.871337868795, 17.9055688088617], [121.871337868795, 17.9160227007731], [121.860351540672, 17.9160227007731], [121.860351540672, 17.9055688088617]]]]}, "properties": {"taskId": 3062, "taskX": 27476, "taskY": 18041, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.641311623719, 18.3571323593422], [121.641998269226, 18.3571323593422], [121.641998269226, 18.3577840615408], [121.641311623719, 18.3577840615408], [121.641311623719, 18.3571323593422]]]]}, "properties": {"taskId": 3079, "taskX": 439297, "taskY": 289348, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 18.1667304070769], [121.728515603195, 18.1667304070769], [121.728515603195, 18.1771687903979], [121.717529275072, 18.1771687903979], [121.717529275072, 18.1667304070769]]]]}, "properties": {"taskId": 3031, "taskX": 27463, "taskY": 18066, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.865844704733, 17.8846591764432], [121.868591286764, 17.8846591764432], [121.868591286764, 17.8872730152265], [121.865844704733, 17.8872730152265], [121.865844704733, 17.8846591764432]]]]}, "properties": {"taskId": 3053, "taskX": 109906, "taskY": 72156, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.868591286764, 17.8872730152265], [121.871337868795, 17.8872730152265], [121.871337868795, 17.8898868155249], [121.868591286764, 17.8898868155249], [121.868591286764, 17.8872730152265]]]]}, "properties": {"taskId": 3056, "taskX": 109907, "taskY": 72157, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 17.8951143006479], [121.893310525041, 17.8951143006479], [121.893310525041, 17.9055688088617], [121.882324196918, 17.9055688088617], [121.882324196918, 17.8951143006479]]]]}, "properties": {"taskId": 3065, "taskX": 27478, "taskY": 18040, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.893310525041, 17.9055688088617], [121.904296853164, 17.9055688088617], [121.904296853164, 17.9160227007731], [121.893310525041, 17.9160227007731], [121.893310525041, 17.9055688088617]]]]}, "properties": {"taskId": 3068, "taskX": 27479, "taskY": 18041, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 17.9682829048867], [121.893310525041, 17.9682829048867], [121.893310525041, 17.9787330924414], [121.882324196918, 17.9787330924414], [121.882324196918, 17.9682829048867]]]]}, "properties": {"taskId": 3094, "taskX": 27478, "taskY": 18047, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.9160227007731], [121.78344724381, 17.9160227007731], [121.78344724381, 17.9264759760701], [121.772460915687, 17.9264759760701], [121.772460915687, 17.9160227007731]]]]}, "properties": {"taskId": 3005, "taskX": 27468, "taskY": 18042, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78344724381, 17.9160227007731], [121.794433571933, 17.9160227007731], [121.794433571933, 17.9264759760701], [121.78344724381, 17.9264759760701], [121.78344724381, 17.9160227007731]]]]}, "properties": {"taskId": 3007, "taskX": 27469, "taskY": 18042, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.9264759760701], [121.78344724381, 17.9264759760701], [121.78344724381, 17.9369286344414], [121.772460915687, 17.9369286344414], [121.772460915687, 17.9264759760701]]]]}, "properties": {"taskId": 3006, "taskX": 27468, "taskY": 18043, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78344724381, 17.9264759760701], [121.794433571933, 17.9264759760701], [121.794433571933, 17.9369286344414], [121.78344724381, 17.9369286344414], [121.78344724381, 17.9264759760701]]]]}, "properties": {"taskId": 3008, "taskX": 27469, "taskY": 18043, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.723022439134, 17.6440220248121], [121.728515603195, 17.6440220248121], [121.728515603195, 17.6492567037506], [121.723022439134, 17.6492567037506], [121.723022439134, 17.6440220248121]]]]}, "properties": {"taskId": 3011, "taskX": 54927, "taskY": 36032, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.9264759760701], [121.805419900056, 17.9264759760701], [121.805419900056, 17.9369286344414], [121.794433571933, 17.9369286344414], [121.794433571933, 17.9264759760701]]]]}, "properties": {"taskId": 3018, "taskX": 27470, "taskY": 18043, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.1458517685528], [121.695556618826, 18.1458517685528], [121.695556618826, 18.156291399692], [121.684570290703, 18.156291399692], [121.684570290703, 18.1458517685528]]]]}, "properties": {"taskId": 3025, "taskX": 27460, "taskY": 18064, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 18.156291399692], [121.706542946949, 18.156291399692], [121.706542946949, 18.1667304070769], [121.695556618826, 18.1667304070769], [121.695556618826, 18.156291399692]]]]}, "properties": {"taskId": 3028, "taskX": 27461, "taskY": 18065, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.8846591764432], [121.865844704733, 17.8846591764432], [121.865844704733, 17.8898868155249], [121.860351540672, 17.8898868155249], [121.860351540672, 17.8846591764432]]]]}, "properties": {"taskId": 3037, "taskX": 54952, "taskY": 36078, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.871337868795, 17.8794313834418], [121.876831032856, 17.8794313834418], [121.876831032856, 17.8846591764432], [121.871337868795, 17.8846591764432], [121.871337868795, 17.8794313834418]]]]}, "properties": {"taskId": 3070, "taskX": 54954, "taskY": 36077, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.871337868795, 17.8951143006479], [121.882324196918, 17.8951143006479], [121.882324196918, 17.9055688088617], [121.871337868795, 17.9055688088617], [121.871337868795, 17.8951143006479]]]]}, "properties": {"taskId": 3063, "taskX": 27477, "taskY": 18040, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.3577840615408], [121.641311623719, 18.3577840615408], [121.641311623719, 18.3584357612796], [121.640624978211, 18.3584357612796], [121.640624978211, 18.3577840615408]]]]}, "properties": {"taskId": 3078, "taskX": 439296, "taskY": 289349, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 18.1771687903979], [121.717529275072, 18.1771687903979], [121.717529275072, 18.1876065493462], [121.706542946949, 18.1876065493462], [121.706542946949, 18.1771687903979]]]]}, "properties": {"taskId": 3030, "taskX": 27462, "taskY": 18067, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.865844704733, 17.8872730152265], [121.868591286764, 17.8872730152265], [121.868591286764, 17.8898868155249], [121.865844704733, 17.8898868155249], [121.865844704733, 17.8872730152265]]]]}, "properties": {"taskId": 3054, "taskX": 109906, "taskY": 72157, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.893310525041, 17.8951143006479], [121.904296853164, 17.8951143006479], [121.904296853164, 17.9055688088617], [121.893310525041, 17.9055688088617], [121.893310525041, 17.8951143006479]]]]}, "properties": {"taskId": 3067, "taskX": 27479, "taskY": 18040, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.893310525041, 17.957832099161], [121.904296853164, 17.957832099161], [121.904296853164, 17.9682829048867], [121.893310525041, 17.9682829048867], [121.893310525041, 17.957832099161]]]]}, "properties": {"taskId": 3095, "taskX": 27479, "taskY": 18046, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.8742034365596], [121.871337868795, 17.8742034365596], [121.871337868795, 17.8846591764432], [121.860351540672, 17.8846591764432], [121.860351540672, 17.8742034365596]]]]}, "properties": {"taskId": 3033, "taskX": 27476, "taskY": 18038, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.865844704733, 17.8925005773337], [121.868591286764, 17.8925005773337], [121.868591286764, 17.8951143006479], [121.865844704733, 17.8951143006479], [121.865844704733, 17.8925005773337]]]]}, "properties": {"taskId": 3046, "taskX": 109906, "taskY": 72159, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.868591286764, 17.8898868155249], [121.871337868795, 17.8898868155249], [121.871337868795, 17.8925005773337], [121.868591286764, 17.8925005773337], [121.868591286764, 17.8898868155249]]]]}, "properties": {"taskId": 3047, "taskX": 109907, "taskY": 72158, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.871337868795, 17.7068281209488], [121.882324196918, 17.7068281209488], [121.882324196918, 17.7172936692013], [121.871337868795, 17.7172936692013], [121.871337868795, 17.7068281209488]]]]}, "properties": {"taskId": 3083, "taskX": 27477, "taskY": 18022, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.104087012639], [121.475830056365, 18.104087012639], [121.475830056365, 18.1145291357018], [121.464843728242, 18.1145291357018], [121.464843728242, 18.104087012639]]]]}, "properties": {"taskId": 3085, "taskX": 27440, "taskY": 18060, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.475830056365, 18.1145291357018], [121.486816384489, 18.1145291357018], [121.486816384489, 18.1249706362482], [121.475830056365, 18.1249706362482], [121.475830056365, 18.1145291357018]]]]}, "properties": {"taskId": 3088, "taskX": 27441, "taskY": 18061, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 18.1145291357018], [121.453857400119, 18.1145291357018], [121.453857400119, 18.1249706362482], [121.442871071996, 18.1249706362482], [121.442871071996, 18.1145291357018]]]]}, "properties": {"taskId": 3090, "taskX": 27438, "taskY": 18061, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.7068281209488], [121.871337868795, 17.7068281209488], [121.871337868795, 17.7172936692013], [121.860351540672, 17.7172936692013], [121.860351540672, 17.7068281209488]]]]}, "properties": {"taskId": 3081, "taskX": 27476, "taskY": 18022, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.871337868795, 17.7172936692013], [121.882324196918, 17.7172936692013], [121.882324196918, 17.7277586067781], [121.871337868795, 17.7277586067781], [121.871337868795, 17.7172936692013]]]]}, "properties": {"taskId": 3084, "taskX": 27477, "taskY": 18023, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.7172936692013], [121.871337868795, 17.7172936692013], [121.871337868795, 17.7277586067781], [121.860351540672, 17.7277586067781], [121.860351540672, 17.7172936692013]]]]}, "properties": {"taskId": 3082, "taskX": 27476, "taskY": 18023, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.1145291357018], [121.475830056365, 18.1145291357018], [121.475830056365, 18.1249706362482], [121.464843728242, 18.1249706362482], [121.464843728242, 18.1145291357018]]]]}, "properties": {"taskId": 3086, "taskX": 27440, "taskY": 18061, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.453857400119, 18.104087012639], [121.464843728242, 18.104087012639], [121.464843728242, 18.1145291357018], [121.453857400119, 18.1145291357018], [121.453857400119, 18.104087012639]]]]}, "properties": {"taskId": 3091, "taskX": 27439, "taskY": 18060, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.475830056365, 18.104087012639], [121.486816384489, 18.104087012639], [121.486816384489, 18.1145291357018], [121.475830056365, 18.1145291357018], [121.475830056365, 18.104087012639]]]]}, "properties": {"taskId": 3087, "taskX": 27441, "taskY": 18060, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 18.104087012639], [121.453857400119, 18.104087012639], [121.453857400119, 18.1145291357018], [121.442871071996, 18.1145291357018], [121.442871071996, 18.104087012639]]]]}, "properties": {"taskId": 3089, "taskX": 27438, "taskY": 18060, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.453857400119, 18.1145291357018], [121.464843728242, 18.1145291357018], [121.464843728242, 18.1249706362482], [121.453857400119, 18.1249706362482], [121.453857400119, 18.1145291357018]]]]}, "properties": {"taskId": 3092, "taskX": 27439, "taskY": 18061, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.8532901110035], [121.772460915687, 17.8532901110035], [121.772460915687, 17.8742034365596], [121.750488259441, 17.8742034365596], [121.750488259441, 17.8532901110035]]]]}, "properties": {"taskId": 3099, "taskX": 13733, "taskY": 9018, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.0414212187671], [121.668090798519, 18.0414212187671], [121.668090798519, 18.0466442221567], [121.662597634457, 18.0466442221567], [121.662597634457, 18.0414212187671]]]]}, "properties": {"taskId": 3297, "taskX": 54916, "taskY": 36108, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.668090798519, 18.0466442221567], [121.67358396258, 18.0466442221567], [121.67358396258, 18.0518670704211], [121.668090798519, 18.0518670704211], [121.668090798519, 18.0466442221567]]]]}, "properties": {"taskId": 3300, "taskX": 54917, "taskY": 36109, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 18.0649235121539], [121.588439919627, 18.0649235121539], [121.588439919627, 18.067534684074], [121.585693337596, 18.067534684074], [121.585693337596, 18.0649235121539]]]]}, "properties": {"taskId": 3326, "taskX": 109804, "taskY": 72225, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.942749001594, 18.2397859676821], [121.948242165656, 18.2397859676821], [121.948242165656, 18.245003049092], [121.942749001594, 18.245003049092], [121.942749001594, 18.2397859676821]]]]}, "properties": {"taskId": 3335, "taskX": 54967, "taskY": 36146, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.8742034365596], [121.750488259441, 17.8742034365596], [121.750488259441, 17.8951143006479], [121.728515603195, 17.8951143006479], [121.728515603195, 17.8742034365596]]]]}, "properties": {"taskId": 3098, "taskX": 13732, "taskY": 9019, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.8742034365596], [121.772460915687, 17.8742034365596], [121.772460915687, 17.8951143006479], [121.750488259441, 17.8951143006479], [121.750488259441, 17.8742034365596]]]]}, "properties": {"taskId": 3100, "taskX": 13733, "taskY": 9019, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.0466442221567], [121.668090798519, 18.0466442221567], [121.668090798519, 18.0518670704211], [121.662597634457, 18.0518670704211], [121.662597634457, 18.0466442221567]]]]}, "properties": {"taskId": 3298, "taskX": 54916, "taskY": 36109, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.588439919627, 18.0623123014185], [121.591186501657, 18.0623123014185], [121.591186501657, 18.0649235121539], [121.588439919627, 18.0649235121539], [121.588439919627, 18.0623123014185]]]]}, "properties": {"taskId": 3327, "taskX": 109805, "taskY": 72224, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 18.0910334838684], [121.588439919627, 18.0910334838684], [121.588439919627, 18.0936442673693], [121.585693337596, 18.0936442673693], [121.585693337596, 18.0910334838684]]]]}, "properties": {"taskId": 3186, "taskX": 109804, "taskY": 72235, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.755981423503, 17.5628650732547], [121.758728005534, 17.5628650732547], [121.758728005534, 17.5654836083839], [121.755981423503, 17.5654836083839], [121.755981423503, 17.5628650732547]]]]}, "properties": {"taskId": 3458, "taskX": 109866, "taskY": 72033, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 18.218916076864], [121.827392556303, 18.218916076864], [121.827392556303, 18.2293513352315], [121.81640622818, 18.2293513352315], [121.81640622818, 18.218916076864]]]]}, "properties": {"taskId": 3382, "taskX": 27472, "taskY": 18071, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.7696122440617], [121.574707009473, 17.7696122440617], [121.574707009473, 17.7905353905046], [121.552734353227, 17.7905353905046], [121.552734353227, 17.7696122440617]]]]}, "properties": {"taskId": 3429, "taskX": 13724, "taskY": 9014, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 17.7905353905046], [121.596679665719, 17.7905353905046], [121.596679665719, 17.8114560854768], [121.574707009473, 17.8114560854768], [121.574707009473, 17.7905353905046]]]]}, "properties": {"taskId": 3432, "taskX": 13725, "taskY": 9015, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.2084801928881], [121.668090798519, 18.2084801928881], [121.668090798519, 18.2136982130578], [121.662597634457, 18.2136982130578], [121.662597634457, 18.2084801928881]]]]}, "properties": {"taskId": 3125, "taskX": 54916, "taskY": 36140, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.668090798519, 18.2136982130578], [121.67358396258, 18.2136982130578], [121.67358396258, 18.218916076864], [121.668090798519, 18.218916076864], [121.668090798519, 18.2136982130578]]]]}, "properties": {"taskId": 3128, "taskX": 54917, "taskY": 36141, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.271086106447], [121.618652321965, 18.271086106447], [121.618652321965, 18.2919497303851], [121.596679665719, 18.2919497303851], [121.596679665719, 18.271086106447]]]]}, "properties": {"taskId": 3129, "taskX": 13726, "taskY": 9038, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.0518670704211], [121.607665993842, 18.0518670704211], [121.607665993842, 18.0623123014185], [121.596679665719, 18.0623123014185], [121.596679665719, 18.0518670704211]]]]}, "properties": {"taskId": 3426, "taskX": 27452, "taskY": 18055, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.1197499638089], [121.679077126642, 18.1197499638089], [121.679077126642, 18.1249706362482], [121.67358396258, 18.1249706362482], [121.67358396258, 18.1197499638089]]]]}, "properties": {"taskId": 3386, "taskX": 54918, "taskY": 36123, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 17.7905353905046], [121.574707009473, 17.7905353905046], [121.574707009473, 17.800996044581], [121.56372068135, 17.800996044581], [121.56372068135, 17.7905353905046]]]]}, "properties": {"taskId": 3435, "taskX": 27449, "taskY": 18030, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.7905353905046], [121.558227517288, 17.7905353905046], [121.558227517288, 17.7957657941708], [121.552734353227, 17.7957657941708], [121.552734353227, 17.7905353905046]]]]}, "properties": {"taskId": 3437, "taskX": 54896, "taskY": 36060, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.558227517288, 17.7957657941708], [121.56372068135, 17.7957657941708], [121.56372068135, 17.800996044581], [121.558227517288, 17.800996044581], [121.558227517288, 17.7957657941708]]]]}, "properties": {"taskId": 3440, "taskX": 54897, "taskY": 36061, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.080322243936, 18.5993951989841], [121.083068825967, 18.5993951989841], [121.083068825967, 18.6019983120146], [121.080322243936, 18.6019983120146], [121.080322243936, 18.5993951989841]]]]}, "properties": {"taskId": 3469, "taskX": 109620, "taskY": 72430, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.668090798519, 18.2084801928881], [121.67358396258, 18.2084801928881], [121.67358396258, 18.2136982130578], [121.668090798519, 18.2136982130578], [121.668090798519, 18.2084801928881]]]]}, "properties": {"taskId": 3127, "taskX": 54917, "taskY": 36140, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.800996044581], [121.56372068135, 17.800996044581], [121.56372068135, 17.8114560854768], [121.552734353227, 17.8114560854768], [121.552734353227, 17.800996044581]]]]}, "properties": {"taskId": 3434, "taskX": 27448, "taskY": 18031, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.2919497303851], [121.618652321965, 18.2919497303851], [121.618652321965, 18.3128108432568], [121.596679665719, 18.3128108432568], [121.596679665719, 18.2919497303851]]]]}, "properties": {"taskId": 3130, "taskX": 13726, "taskY": 9039, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.7957657941708], [121.558227517288, 17.7957657941708], [121.558227517288, 17.800996044581], [121.552734353227, 17.800996044581], [121.552734353227, 17.7957657941708]]]]}, "properties": {"taskId": 3438, "taskX": 54896, "taskY": 36061, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 18.1145291357018], [121.684570290703, 18.1145291357018], [121.684570290703, 18.1197499638089], [121.679077126642, 18.1197499638089], [121.679077126642, 18.1145291357018]]]]}, "properties": {"taskId": 3387, "taskX": 54919, "taskY": 36122, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.0414212187671], [121.607665993842, 18.0414212187671], [121.607665993842, 18.0518670704211], [121.596679665719, 18.0518670704211], [121.596679665719, 18.0414212187671]]]]}, "properties": {"taskId": 3425, "taskX": 27452, "taskY": 18054, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.080322243936, 18.6019983120146], [121.083068825967, 18.6019983120146], [121.083068825967, 18.6046013852398], [121.080322243936, 18.6046013852398], [121.080322243936, 18.6019983120146]]]]}, "properties": {"taskId": 3470, "taskX": 109620, "taskY": 72431, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.2867340597168], [121.665344216488, 18.2867340597168], [121.665344216488, 18.2893419146663], [121.662597634457, 18.2893419146663], [121.662597634457, 18.2867340597168]]]]}, "properties": {"taskId": 3209, "taskX": 109832, "taskY": 72310, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.665344216488, 18.2867340597168], [121.668090798519, 18.2867340597168], [121.668090798519, 18.2893419146663], [121.665344216488, 18.2893419146663], [121.665344216488, 18.2867340597168]]]]}, "properties": {"taskId": 3211, "taskX": 109833, "taskY": 72310, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.598052956734, 18.0662291029662], [121.59942624775, 18.0662291029662], [121.59942624775, 18.067534684074], [121.598052956734, 18.067534684074], [121.598052956734, 18.0662291029662]]]]}, "properties": {"taskId": 3240, "taskX": 219617, "taskY": 144451, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.0662291029662], [121.597366311227, 18.0662291029662], [121.597366311227, 18.0668818947332], [121.596679665719, 18.0668818947332], [121.596679665719, 18.0662291029662]]]]}, "properties": {"taskId": 3241, "taskX": 439232, "taskY": 288902, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.597366311227, 18.0662291029662], [121.598052956734, 18.0662291029662], [121.598052956734, 18.0668818947332], [121.597366311227, 18.0668818947332], [121.597366311227, 18.0662291029662]]]]}, "properties": {"taskId": 3243, "taskX": 439233, "taskY": 288902, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.271086106447], [121.750488259441, 18.271086106447], [121.750488259441, 18.2919497303851], [121.728515603195, 18.2919497303851], [121.728515603195, 18.271086106447]]]]}, "properties": {"taskId": 3441, "taskX": 13732, "taskY": 9038, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 18.2919497303851], [121.772460915687, 18.2919497303851], [121.772460915687, 18.3128108432568], [121.750488259441, 18.3128108432568], [121.750488259441, 18.2919497303851]]]]}, "properties": {"taskId": 3444, "taskX": 13733, "taskY": 9039, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.0832009002027], [121.574707009473, 18.0832009002027], [121.574707009473, 18.104087012639], [121.552734353227, 18.104087012639], [121.552734353227, 18.0832009002027]]]]}, "properties": {"taskId": 3146, "taskX": 13724, "taskY": 9029, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 18.104087012639], [121.659851052426, 18.104087012639], [121.659851052426, 18.1066976017487], [121.657104470395, 18.1066976017487], [121.657104470395, 18.104087012639]]]]}, "properties": {"taskId": 3229, "taskX": 109830, "taskY": 72240, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.659851052426, 18.1066976017487], [121.662597634457, 18.1066976017487], [121.662597634457, 18.1093081519656], [121.659851052426, 18.1093081519656], [121.659851052426, 18.1066976017487]]]]}, "properties": {"taskId": 3232, "taskX": 109831, "taskY": 72241, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 17.638787193754], [121.679077126642, 17.638787193754], [121.679077126642, 17.6440220248121], [121.67358396258, 17.6440220248121], [121.67358396258, 17.638787193754]]]]}, "properties": {"taskId": 3350, "taskX": 54918, "taskY": 36031, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 18.0518670704211], [121.849365212549, 18.0518670704211], [121.849365212549, 18.0623123014185], [121.838378884426, 18.0623123014185], [121.838378884426, 18.0518670704211]]]]}, "properties": {"taskId": 3354, "taskX": 27474, "taskY": 18055, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.59942624775, 18.0623123014185], [121.60217282978, 18.0623123014185], [121.60217282978, 18.0649235121539], [121.59942624775, 18.0649235121539], [121.59942624775, 18.0623123014185]]]]}, "properties": {"taskId": 3183, "taskX": 109809, "taskY": 72224, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 18.1066976017487], [121.659851052426, 18.1066976017487], [121.659851052426, 18.1093081519656], [121.657104470395, 18.1093081519656], [121.657104470395, 18.1066976017487]]]]}, "properties": {"taskId": 3230, "taskX": 109830, "taskY": 72241, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 17.6335522106155], [121.679077126642, 17.6335522106155], [121.679077126642, 17.638787193754], [121.67358396258, 17.638787193754], [121.67358396258, 17.6335522106155]]]]}, "properties": {"taskId": 3349, "taskX": 54918, "taskY": 36030, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 17.638787193754], [121.684570290703, 17.638787193754], [121.684570290703, 17.6440220248121], [121.679077126642, 17.6440220248121], [121.679077126642, 17.638787193754]]]]}, "properties": {"taskId": 3352, "taskX": 54919, "taskY": 36031, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 18.0414212187671], [121.849365212549, 18.0414212187671], [121.849365212549, 18.0518670704211], [121.838378884426, 18.0518670704211], [121.838378884426, 18.0414212187671]]]]}, "properties": {"taskId": 3353, "taskX": 27474, "taskY": 18054, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.849365212549, 18.0518670704211], [121.860351540672, 18.0518670704211], [121.860351540672, 18.0623123014185], [121.849365212549, 18.0623123014185], [121.849365212549, 18.0518670704211]]]]}, "properties": {"taskId": 3356, "taskX": 27475, "taskY": 18055, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.0623123014185], [121.574707009473, 18.0623123014185], [121.574707009473, 18.0832009002027], [121.552734353227, 18.0832009002027], [121.552734353227, 18.0623123014185]]]]}, "properties": {"taskId": 3145, "taskX": 13724, "taskY": 9028, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.0623123014185], [121.59942624775, 18.0623123014185], [121.59942624775, 18.0649235121539], [121.596679665719, 18.0649235121539], [121.596679665719, 18.0623123014185]]]]}, "properties": {"taskId": 3181, "taskX": 109808, "taskY": 72224, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.59942624775, 18.0649235121539], [121.60217282978, 18.0649235121539], [121.60217282978, 18.067534684074], [121.59942624775, 18.067534684074], [121.59942624775, 18.0649235121539]]]]}, "properties": {"taskId": 3184, "taskX": 109809, "taskY": 72225, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.659851052426, 18.104087012639], [121.662597634457, 18.104087012639], [121.662597634457, 18.1066976017487], [121.659851052426, 18.1066976017487], [121.659851052426, 18.104087012639]]]]}, "properties": {"taskId": 3231, "taskX": 109831, "taskY": 72240, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 17.6335522106155], [121.684570290703, 17.6335522106155], [121.684570290703, 17.638787193754], [121.679077126642, 17.638787193754], [121.679077126642, 17.6335522106155]]]]}, "properties": {"taskId": 3351, "taskX": 54919, "taskY": 36030, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.849365212549, 18.0414212187671], [121.860351540672, 18.0414212187671], [121.860351540672, 18.0518670704211], [121.849365212549, 18.0518670704211], [121.849365212549, 18.0414212187671]]]]}, "properties": {"taskId": 3355, "taskX": 27475, "taskY": 18054, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 18.4118667620183], [121.503295876673, 18.4118667620183], [121.503295876673, 18.4170786554759], [121.497802712612, 18.4170786554759], [121.497802712612, 18.4118667620183]]]]}, "properties": {"taskId": 3234, "taskX": 54886, "taskY": 36179, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.354980447012, 17.8742034365596], [121.365966775135, 17.8742034365596], [121.365966775135, 17.8846591764432], [121.354980447012, 17.8846591764432], [121.354980447012, 17.8742034365596]]]]}, "properties": {"taskId": 3357, "taskX": 27430, "taskY": 18038, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.365966775135, 17.8846591764432], [121.376953103258, 17.8846591764432], [121.376953103258, 17.8951143006479], [121.365966775135, 17.8951143006479], [121.365966775135, 17.8846591764432]]]]}, "properties": {"taskId": 3360, "taskX": 27431, "taskY": 18039, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.354980447012, 17.8637470813091], [121.365966775135, 17.8637470813091], [121.365966775135, 17.8742034365596], [121.354980447012, 17.8742034365596], [121.354980447012, 17.8637470813091]]]]}, "properties": {"taskId": 3410, "taskX": 27430, "taskY": 18037, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.146240212675, 18.5629474396796], [121.151733376736, 18.5629474396796], [121.151733376736, 18.568154739547], [121.146240212675, 18.568154739547], [121.146240212675, 18.5629474396796]]]]}, "properties": {"taskId": 3473, "taskX": 54822, "taskY": 36208, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.151733376736, 18.568154739547], [121.157226540798, 18.568154739547], [121.157226540798, 18.5733618804414], [121.151733376736, 18.5733618804414], [121.151733376736, 18.568154739547]]]]}, "properties": {"taskId": 3476, "taskX": 54823, "taskY": 36209, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 18.4066547107354], [121.503295876673, 18.4066547107354], [121.503295876673, 18.4118667620183], [121.497802712612, 18.4118667620183], [121.497802712612, 18.4066547107354]]]]}, "properties": {"taskId": 3233, "taskX": 54886, "taskY": 36178, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.503295876673, 18.4066547107354], [121.508789040735, 18.4066547107354], [121.508789040735, 18.4118667620183], [121.503295876673, 18.4118667620183], [121.503295876673, 18.4066547107354]]]]}, "properties": {"taskId": 3235, "taskX": 54887, "taskY": 36178, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 18.067534684074], [121.591186501657, 18.067534684074], [121.591186501657, 18.0727569114491], [121.585693337596, 18.0727569114491], [121.585693337596, 18.067534684074]]]]}, "properties": {"taskId": 3254, "taskX": 54902, "taskY": 36113, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.591186501657, 18.067534684074], [121.596679665719, 18.067534684074], [121.596679665719, 18.0727569114491], [121.591186501657, 18.0727569114491], [121.591186501657, 18.067534684074]]]]}, "properties": {"taskId": 3256, "taskX": 54903, "taskY": 36113, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.365966775135, 17.8742034365596], [121.376953103258, 17.8742034365596], [121.376953103258, 17.8846591764432], [121.365966775135, 17.8846591764432], [121.365966775135, 17.8742034365596]]]]}, "properties": {"taskId": 3359, "taskX": 27431, "taskY": 18038, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.354980447012, 17.8532901110035], [121.365966775135, 17.8532901110035], [121.365966775135, 17.8637470813091], [121.354980447012, 17.8637470813091], [121.354980447012, 17.8532901110035]]]]}, "properties": {"taskId": 3409, "taskX": 27430, "taskY": 18036, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.365966775135, 17.8637470813091], [121.376953103258, 17.8637470813091], [121.376953103258, 17.8742034365596], [121.365966775135, 17.8742034365596], [121.365966775135, 17.8637470813091]]]]}, "properties": {"taskId": 3412, "taskX": 27431, "taskY": 18037, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.146240212675, 18.568154739547], [121.151733376736, 18.568154739547], [121.151733376736, 18.5733618804414], [121.146240212675, 18.5733618804414], [121.146240212675, 18.568154739547]]]]}, "properties": {"taskId": 3474, "taskX": 54822, "taskY": 36209, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.6492567037506], [121.687316872734, 17.6492567037506], [121.687316872734, 17.6518739861627], [121.684570290703, 17.6518739861627], [121.684570290703, 17.6492567037506]]]]}, "properties": {"taskId": 3101, "taskX": 109840, "taskY": 72066, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.687316872734, 17.6518739861627], [121.690063454765, 17.6518739861627], [121.690063454765, 17.6544912305301], [121.687316872734, 17.6544912305301], [121.687316872734, 17.6518739861627]]]]}, "properties": {"taskId": 3104, "taskX": 109841, "taskY": 72067, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.6518739861627], [121.687316872734, 17.6518739861627], [121.687316872734, 17.6544912305301], [121.684570290703, 17.6544912305301], [121.684570290703, 17.6518739861627]]]]}, "properties": {"taskId": 3102, "taskX": 109840, "taskY": 72067, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.687316872734, 17.6492567037506], [121.690063454765, 17.6492567037506], [121.690063454765, 17.6518739861627], [121.687316872734, 17.6518739861627], [121.687316872734, 17.6492567037506]]]]}, "properties": {"taskId": 3103, "taskX": 109841, "taskY": 72066, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.2136982130578], [121.668090798519, 18.2136982130578], [121.668090798519, 18.218916076864], [121.662597634457, 18.218916076864], [121.662597634457, 18.2136982130578]]]]}, "properties": {"taskId": 3126, "taskX": 54916, "taskY": 36141, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 18.271086106447], [121.640624978211, 18.271086106447], [121.640624978211, 18.2919497303851], [121.618652321965, 18.2919497303851], [121.618652321965, 18.271086106447]]]]}, "properties": {"taskId": 3131, "taskX": 13727, "taskY": 9038, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 18.0414212187671], [121.618652321965, 18.0414212187671], [121.618652321965, 18.0518670704211], [121.607665993842, 18.0518670704211], [121.607665993842, 18.0414212187671]]]]}, "properties": {"taskId": 3427, "taskX": 27453, "taskY": 18054, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.067534684074], [121.60217282978, 18.067534684074], [121.60217282978, 18.0727569114491], [121.596679665719, 18.0727569114491], [121.596679665719, 18.067534684074]]]]}, "properties": {"taskId": 3170, "taskX": 54904, "taskY": 36113, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.1145291357018], [121.679077126642, 18.1145291357018], [121.679077126642, 18.1197499638089], [121.67358396258, 18.1197499638089], [121.67358396258, 18.1145291357018]]]]}, "properties": {"taskId": 3385, "taskX": 54918, "taskY": 36122, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 18.1197499638089], [121.684570290703, 18.1197499638089], [121.684570290703, 18.1249706362482], [121.679077126642, 18.1249706362482], [121.679077126642, 18.1197499638089]]]]}, "properties": {"taskId": 3388, "taskX": 54919, "taskY": 36123, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 17.800996044581], [121.574707009473, 17.800996044581], [121.574707009473, 17.8114560854768], [121.56372068135, 17.8114560854768], [121.56372068135, 17.800996044581]]]]}, "properties": {"taskId": 3436, "taskX": 27449, "taskY": 18031, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.558227517288, 17.7905353905046], [121.56372068135, 17.7905353905046], [121.56372068135, 17.7957657941708], [121.558227517288, 17.7957657941708], [121.558227517288, 17.7905353905046]]]]}, "properties": {"taskId": 3439, "taskX": 54897, "taskY": 36060, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 17.8637470813091], [121.849365212549, 17.8637470813091], [121.849365212549, 17.8742034365596], [121.838378884426, 17.8742034365596], [121.838378884426, 17.8637470813091]]]]}, "properties": {"taskId": 3106, "taskX": 27474, "taskY": 18037, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 17.8532901110035], [121.849365212549, 17.8532901110035], [121.849365212549, 17.8637470813091], [121.838378884426, 17.8637470813091], [121.838378884426, 17.8532901110035]]]]}, "properties": {"taskId": 3105, "taskX": 27474, "taskY": 18036, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.849365212549, 17.8637470813091], [121.860351540672, 17.8637470813091], [121.860351540672, 17.8742034365596], [121.849365212549, 17.8742034365596], [121.849365212549, 17.8637470813091]]]]}, "properties": {"taskId": 3108, "taskX": 27475, "taskY": 18037, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.849365212549, 17.8532901110035], [121.860351540672, 17.8532901110035], [121.860351540672, 17.8637470813091], [121.849365212549, 17.8637470813091], [121.849365212549, 17.8532901110035]]]]}, "properties": {"taskId": 3107, "taskX": 27475, "taskY": 18036, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.775207497718, 17.5131057146801], [121.777954079749, 17.5131057146801], [121.777954079749, 17.5157249686405], [121.775207497718, 17.5157249686405], [121.775207497718, 17.5131057146801]]]]}, "properties": {"taskId": 3203, "taskX": 109873, "taskY": 72014, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.638787193754], [121.687316872734, 17.638787193754], [121.687316872734, 17.6414046282956], [121.684570290703, 17.6414046282956], [121.684570290703, 17.638787193754]]]]}, "properties": {"taskId": 3321, "taskX": 109840, "taskY": 72062, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.687316872734, 17.6414046282956], [121.690063454765, 17.6414046282956], [121.690063454765, 17.6440220248121], [121.687316872734, 17.6440220248121], [121.687316872734, 17.6414046282956]]]]}, "properties": {"taskId": 3324, "taskX": 109841, "taskY": 72063, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.354980447012, 17.8898868155249], [121.360473611074, 17.8898868155249], [121.360473611074, 17.8951143006479], [121.354980447012, 17.8951143006479], [121.354980447012, 17.8898868155249]]]]}, "properties": {"taskId": 3362, "taskX": 54860, "taskY": 36079, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.871337868795, 17.8532901110035], [121.882324196918, 17.8532901110035], [121.882324196918, 17.8637470813091], [121.871337868795, 17.8637470813091], [121.871337868795, 17.8532901110035]]]]}, "properties": {"taskId": 3123, "taskX": 27477, "taskY": 18036, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.0414212187671], [121.750488259441, 18.0414212187671], [121.750488259441, 18.0623123014185], [121.728515603195, 18.0623123014185], [121.728515603195, 18.0414212187671]]]]}, "properties": {"taskId": 3162, "taskX": 13732, "taskY": 9027, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.107788064244, 18.5629474396796], [121.113281228305, 18.5629474396796], [121.113281228305, 18.568154739547], [121.107788064244, 18.568154739547], [121.107788064244, 18.5629474396796]]]]}, "properties": {"taskId": 3495, "taskX": 54815, "taskY": 36208, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.176452615013, 18.6124103660366], [121.179199197044, 18.6124103660366], [121.179199197044, 18.6150132799934], [121.176452615013, 18.6150132799934], [121.176452615013, 18.6124103660366]]]]}, "properties": {"taskId": 3768, "taskX": 109655, "taskY": 72435, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.146240212675, 18.5837756851588], [121.151733376736, 18.5837756851588], [121.151733376736, 18.5889823489055], [121.146240212675, 18.5889823489055], [121.146240212675, 18.5837756851588]]]]}, "properties": {"taskId": 3745, "taskX": 54822, "taskY": 36212, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.151733376736, 18.5889823489055], [121.157226540798, 18.5889823489055], [121.157226540798, 18.5941888535266], [121.151733376736, 18.5941888535266], [121.151733376736, 18.5889823489055]]]]}, "properties": {"taskId": 3748, "taskX": 54823, "taskY": 36213, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.176452615013, 18.6046013852398], [121.179199197044, 18.6046013852398], [121.179199197044, 18.6072044186551], [121.176452615013, 18.6072044186551], [121.176452615013, 18.6046013852398]]]]}, "properties": {"taskId": 3783, "taskX": 109655, "taskY": 72432, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.173706032982, 18.6098074122556], [121.176452615013, 18.6098074122556], [121.176452615013, 18.6124103660366], [121.173706032982, 18.6124103660366], [121.173706032982, 18.6098074122556]]]]}, "properties": {"taskId": 3765, "taskX": 109654, "taskY": 72434, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.102294900182, 18.568154739547], [121.107788064244, 18.568154739547], [121.107788064244, 18.5733618804414], [121.102294900182, 18.5733618804414], [121.102294900182, 18.568154739547]]]]}, "properties": {"taskId": 3494, "taskX": 54814, "taskY": 36209, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.146240212675, 18.5889823489055], [121.151733376736, 18.5889823489055], [121.151733376736, 18.5941888535266], [121.146240212675, 18.5941888535266], [121.146240212675, 18.5889823489055]]]]}, "properties": {"taskId": 3746, "taskX": 54822, "taskY": 36213, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.173706032982, 18.6072044186551], [121.176452615013, 18.6072044186551], [121.176452615013, 18.6098074122556], [121.173706032982, 18.6098074122556], [121.173706032982, 18.6072044186551]]]]}, "properties": {"taskId": 3782, "taskX": 109654, "taskY": 72433, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 18.2084801928881], [121.893310525041, 18.2084801928881], [121.893310525041, 18.218916076864], [121.882324196918, 18.218916076864], [121.882324196918, 18.2084801928881]]]]}, "properties": {"taskId": 3109, "taskX": 27478, "taskY": 18070, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.7277586067781], [121.761474587564, 17.7277586067781], [121.761474587564, 17.7382229333659], [121.750488259441, 17.7382229333659], [121.750488259441, 17.7277586067781]]]]}, "properties": {"taskId": 3133, "taskX": 27466, "taskY": 18024, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.7382229333659], [121.772460915687, 17.7382229333659], [121.772460915687, 17.7486866486513], [121.761474587564, 17.7486866486513], [121.761474587564, 17.7382229333659]]]]}, "properties": {"taskId": 3136, "taskX": 27467, "taskY": 18025, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.2815182321454], [121.668090798519, 18.2815182321454], [121.668090798519, 18.2867340597168], [121.662597634457, 18.2867340597168], [121.662597634457, 18.2815182321454]]]]}, "properties": {"taskId": 3205, "taskX": 54916, "taskY": 36154, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.580200173534, 18.0727569114491], [121.585693337596, 18.0727569114491], [121.585693337596, 18.0779789835049], [121.580200173534, 18.0779789835049], [121.580200173534, 18.0727569114491]]]]}, "properties": {"taskId": 3247, "taskX": 54901, "taskY": 36114, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.104087012639], [121.679077126642, 18.104087012639], [121.679077126642, 18.1093081519656], [121.67358396258, 18.1093081519656], [121.67358396258, 18.104087012639]]]]}, "properties": {"taskId": 3389, "taskX": 54918, "taskY": 36120, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 18.2084801928881], [121.761474587564, 18.2084801928881], [121.761474587564, 18.218916076864], [121.750488259441, 18.218916076864], [121.750488259441, 18.2084801928881]]]]}, "properties": {"taskId": 3257, "taskX": 27466, "taskY": 18070, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 18.1093081519656], [121.684570290703, 18.1093081519656], [121.684570290703, 18.1145291357018], [121.679077126642, 18.1145291357018], [121.679077126642, 18.1093081519656]]]]}, "properties": {"taskId": 3392, "taskX": 54919, "taskY": 36121, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.1093081519656], [121.668090798519, 18.1093081519656], [121.668090798519, 18.1145291357018], [121.662597634457, 18.1145291357018], [121.662597634457, 18.1093081519656]]]]}, "properties": {"taskId": 3402, "taskX": 54916, "taskY": 36121, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.107788064244, 18.5837756851588], [121.110534646275, 18.5837756851588], [121.110534646275, 18.5863790369205], [121.107788064244, 18.5863790369205], [121.107788064244, 18.5837756851588]]]]}, "properties": {"taskId": 3277, "taskX": 109630, "taskY": 72424, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.110534646275, 18.5863790369205], [121.113281228305, 18.5863790369205], [121.113281228305, 18.5889823489055], [121.110534646275, 18.5889823489055], [121.110534646275, 18.5863790369205]]]]}, "properties": {"taskId": 3280, "taskX": 109631, "taskY": 72425, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.646118142272, 18.3388836994076], [121.651611306334, 18.3388836994076], [121.651611306334, 18.3440977989279], [121.646118142272, 18.3440977989279], [121.646118142272, 18.3388836994076]]]]}, "properties": {"taskId": 3556, "taskX": 54913, "taskY": 36165, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.635131814149, 17.8794313834418], [121.640624978211, 17.8794313834418], [121.640624978211, 17.8846591764432], [121.635131814149, 17.8846591764432], [121.635131814149, 17.8794313834418]]]]}, "properties": {"taskId": 3316, "taskX": 54911, "taskY": 36077, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.138000466582, 18.568154739547], [121.140747048613, 18.568154739547], [121.140747048613, 18.5707583298682], [121.138000466582, 18.5707583298682], [121.138000466582, 18.568154739547]]]]}, "properties": {"taskId": 3343, "taskX": 109641, "taskY": 72418, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.168212868921, 18.6098074122556], [121.170959450951, 18.6098074122556], [121.170959450951, 18.6124103660366], [121.168212868921, 18.6124103660366], [121.168212868921, 18.6098074122556]]]]}, "properties": {"taskId": 3565, "taskX": 109652, "taskY": 72434, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 18.5733618804414], [121.206665017351, 18.5733618804414], [121.206665017351, 18.5785688623248], [121.20117185329, 18.5785688623248], [121.20117185329, 18.5733618804414]]]]}, "properties": {"taskId": 3545, "taskX": 54832, "taskY": 36210, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.206665017351, 18.5785688623248], [121.212158181413, 18.5785688623248], [121.212158181413, 18.5837756851588], [121.206665017351, 18.5837756851588], [121.206665017351, 18.5785688623248]]]]}, "properties": {"taskId": 3548, "taskX": 54833, "taskY": 36211, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.170959450951, 18.6124103660366], [121.173706032982, 18.6124103660366], [121.173706032982, 18.6150132799934], [121.170959450951, 18.6150132799934], [121.170959450951, 18.6124103660366]]]]}, "properties": {"taskId": 3568, "taskX": 109653, "taskY": 72435, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.3336694425994], [121.646118142272, 18.3336694425994], [121.646118142272, 18.3388836994076], [121.640624978211, 18.3388836994076], [121.640624978211, 18.3336694425994]]]]}, "properties": {"taskId": 3553, "taskX": 54912, "taskY": 36164, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.893310525041, 18.2084801928881], [121.904296853164, 18.2084801928881], [121.904296853164, 18.218916076864], [121.893310525041, 18.218916076864], [121.893310525041, 18.2084801928881]]]]}, "properties": {"taskId": 3111, "taskX": 27479, "taskY": 18070, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.1093081519656], [121.679077126642, 18.1093081519656], [121.679077126642, 18.1145291357018], [121.67358396258, 18.1145291357018], [121.67358396258, 18.1093081519656]]]]}, "properties": {"taskId": 3390, "taskX": 54918, "taskY": 36121, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.7277586067781], [121.772460915687, 17.7277586067781], [121.772460915687, 17.7382229333659], [121.761474587564, 17.7382229333659], [121.761474587564, 17.7277586067781]]]]}, "properties": {"taskId": 3135, "taskX": 27467, "taskY": 18024, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 18.0832009002027], [121.585693337596, 18.0832009002027], [121.585693337596, 18.0936442673693], [121.574707009473, 18.0936442673693], [121.574707009473, 18.0832009002027]]]]}, "properties": {"taskId": 3153, "taskX": 27450, "taskY": 18058, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 18.0936442673693], [121.596679665719, 18.0936442673693], [121.596679665719, 18.104087012639], [121.585693337596, 18.104087012639], [121.585693337596, 18.0936442673693]]]]}, "properties": {"taskId": 3156, "taskX": 27451, "taskY": 18059, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.110534646275, 18.5837756851588], [121.113281228305, 18.5837756851588], [121.113281228305, 18.5863790369205], [121.110534646275, 18.5863790369205], [121.110534646275, 18.5837756851588]]]]}, "properties": {"taskId": 3279, "taskX": 109631, "taskY": 72424, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 18.0727569114491], [121.580200173534, 18.0727569114491], [121.580200173534, 18.0779789835049], [121.574707009473, 18.0779789835049], [121.574707009473, 18.0727569114491]]]]}, "properties": {"taskId": 3245, "taskX": 54900, "taskY": 36114, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.580200173534, 18.0779789835049], [121.585693337596, 18.0779789835049], [121.585693337596, 18.0832009002027], [121.580200173534, 18.0832009002027], [121.580200173534, 18.0779789835049]]]]}, "properties": {"taskId": 3248, "taskX": 54901, "taskY": 36115, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 17.8794313834418], [121.635131814149, 17.8794313834418], [121.635131814149, 17.8846591764432], [121.629638650088, 17.8846591764432], [121.629638650088, 17.8794313834418]]]]}, "properties": {"taskId": 3314, "taskX": 54910, "taskY": 36077, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.135253884552, 18.568154739547], [121.138000466582, 18.568154739547], [121.138000466582, 18.5707583298682], [121.135253884552, 18.5707583298682], [121.135253884552, 18.568154739547]]]]}, "properties": {"taskId": 3341, "taskX": 109640, "taskY": 72418, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.138000466582, 18.5707583298682], [121.140747048613, 18.5707583298682], [121.140747048613, 18.5733618804414], [121.138000466582, 18.5733618804414], [121.138000466582, 18.5707583298682]]]]}, "properties": {"taskId": 3344, "taskX": 109641, "taskY": 72419, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.668090798519, 18.1093081519656], [121.67358396258, 18.1093081519656], [121.67358396258, 18.1145291357018], [121.668090798519, 18.1145291357018], [121.668090798519, 18.1093081519656]]]]}, "properties": {"taskId": 3404, "taskX": 54917, "taskY": 36121, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.206665017351, 18.5733618804414], [121.212158181413, 18.5733618804414], [121.212158181413, 18.5785688623248], [121.206665017351, 18.5785688623248], [121.206665017351, 18.5733618804414]]]]}, "properties": {"taskId": 3547, "taskX": 54833, "taskY": 36210, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.168212868921, 18.6124103660366], [121.170959450951, 18.6124103660366], [121.170959450951, 18.6150132799934], [121.168212868921, 18.6150132799934], [121.168212868921, 18.6124103660366]]]]}, "properties": {"taskId": 3566, "taskX": 109652, "taskY": 72435, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.591186501657, 18.0623123014185], [121.593933083688, 18.0623123014185], [121.593933083688, 18.0649235121539], [121.591186501657, 18.0649235121539], [121.591186501657, 18.0623123014185]]]]}, "properties": {"taskId": 3281, "taskX": 109806, "taskY": 72224, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.593933083688, 18.0649235121539], [121.596679665719, 18.0649235121539], [121.596679665719, 18.067534684074], [121.593933083688, 18.067534684074], [121.593933083688, 18.0649235121539]]]]}, "properties": {"taskId": 3284, "taskX": 109807, "taskY": 72225, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 18.0414212187671], [121.580200173534, 18.0414212187671], [121.580200173534, 18.0466442221567], [121.574707009473, 18.0466442221567], [121.574707009473, 18.0414212187671]]]]}, "properties": {"taskId": 3369, "taskX": 54900, "taskY": 36108, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.580200173534, 18.0466442221567], [121.585693337596, 18.0466442221567], [121.585693337596, 18.0518670704211], [121.580200173534, 18.0518670704211], [121.580200173534, 18.0466442221567]]]]}, "properties": {"taskId": 3372, "taskX": 54901, "taskY": 36109, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 18.0623123014185], [121.508789040735, 18.0623123014185], [121.508789040735, 18.0832009002027], [121.486816384489, 18.0832009002027], [121.486816384489, 18.0623123014185]]]]}, "properties": {"taskId": 3307, "taskX": 13721, "taskY": 9028, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.912536599256, 17.9473806755755], [121.915283181287, 17.9473806755755], [121.915283181287, 17.9499935893792], [121.912536599256, 17.9499935893792], [121.912536599256, 17.9473806755755]]]]}, "properties": {"taskId": 3399, "taskX": 109923, "taskY": 72180, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 18.0518670704211], [121.629638650088, 18.0518670704211], [121.629638650088, 18.0623123014185], [121.618652321965, 18.0623123014185], [121.618652321965, 18.0518670704211]]]]}, "properties": {"taskId": 3462, "taskX": 27454, "taskY": 18055, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.9369286344414], [121.640624978211, 17.9369286344414], [121.640624978211, 17.957832099161], [121.618652321965, 17.957832099161], [121.618652321965, 17.9369286344414]]]]}, "properties": {"taskId": 3423, "taskX": 13727, "taskY": 9022, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.9499935893792], [121.907043435194, 17.9499935893792], [121.907043435194, 17.9526064645813], [121.904296853164, 17.9526064645813], [121.904296853164, 17.9499935893792]]]]}, "properties": {"taskId": 3446, "taskX": 109920, "taskY": 72181, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.6466393832987], [121.687316872734, 17.6466393832987], [121.687316872734, 17.6492567037506], [121.684570290703, 17.6492567037506], [121.684570290703, 17.6466393832987]]]]}, "properties": {"taskId": 3330, "taskX": 109840, "taskY": 72065, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.957832099161], [121.706542946949, 17.957832099161], [121.706542946949, 17.9787330924414], [121.684570290703, 17.9787330924414], [121.684570290703, 17.957832099161]]]]}, "properties": {"taskId": 3114, "taskX": 13730, "taskY": 9023, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.957832099161], [121.728515603195, 17.957832099161], [121.728515603195, 17.9787330924414], [121.706542946949, 17.9787330924414], [121.706542946949, 17.957832099161]]]]}, "properties": {"taskId": 3116, "taskX": 13731, "taskY": 9023, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.9369286344414], [121.915283181287, 17.9369286344414], [121.915283181287, 17.9473806755755], [121.904296853164, 17.9473806755755], [121.904296853164, 17.9369286344414]]]]}, "properties": {"taskId": 3141, "taskX": 27480, "taskY": 18044, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.915283181287, 17.9473806755755], [121.92626950941, 17.9473806755755], [121.92626950941, 17.957832099161], [121.915283181287, 17.957832099161], [121.915283181287, 17.9473806755755]]]]}, "properties": {"taskId": 3144, "taskX": 27481, "taskY": 18045, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.8846591764432], [121.607665993842, 17.8846591764432], [121.607665993842, 17.8951143006479], [121.596679665719, 17.8951143006479], [121.596679665719, 17.8846591764432]]]]}, "properties": {"taskId": 3190, "taskX": 27452, "taskY": 18039, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 18.2136982130578], [121.766967751626, 18.2136982130578], [121.766967751626, 18.218916076864], [121.761474587564, 18.218916076864], [121.761474587564, 18.2136982130578]]]]}, "properties": {"taskId": 3262, "taskX": 54934, "taskY": 36141, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 18.218916076864], [121.766967751626, 18.218916076864], [121.766967751626, 18.2241337842681], [121.761474587564, 18.2241337842681], [121.761474587564, 18.218916076864]]]]}, "properties": {"taskId": 3265, "taskX": 54934, "taskY": 36142, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.766967751626, 18.2241337842681], [121.772460915687, 18.2241337842681], [121.772460915687, 18.2293513352315], [121.766967751626, 18.2293513352315], [121.766967751626, 18.2241337842681]]]]}, "properties": {"taskId": 3268, "taskX": 54935, "taskY": 36143, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.124267556428, 18.5785688623248], [121.12976072049, 18.5785688623248], [121.12976072049, 18.5837756851588], [121.124267556428, 18.5837756851588], [121.124267556428, 18.5785688623248]]]]}, "properties": {"taskId": 3526, "taskX": 54818, "taskY": 36211, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 18.1249706362482], [121.497802712612, 18.1249706362482], [121.497802712612, 18.1354115139683], [121.486816384489, 18.1354115139683], [121.486816384489, 18.1249706362482]]]]}, "properties": {"taskId": 3117, "taskX": 27442, "taskY": 18062, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 18.1249706362482], [121.508789040735, 18.1249706362482], [121.508789040735, 18.1354115139683], [121.497802712612, 18.1354115139683], [121.497802712612, 18.1249706362482]]]]}, "properties": {"taskId": 3119, "taskX": 27443, "taskY": 18062, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.736755349288, 17.7486866486513], [121.739501931318, 17.7486866486513], [121.739501931318, 17.7513024819199], [121.736755349288, 17.7513024819199], [121.736755349288, 17.7486866486513]]]]}, "properties": {"taskId": 3455, "taskX": 109859, "taskY": 72104, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.0570897635212], [121.646118142272, 18.0570897635212], [121.646118142272, 18.0623123014185], [121.640624978211, 18.0623123014185], [121.640624978211, 18.0570897635212]]]]}, "properties": {"taskId": 3198, "taskX": 54912, "taskY": 36111, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 18.0623123014185], [121.585693337596, 18.0623123014185], [121.585693337596, 18.0727569114491], [121.574707009473, 18.0727569114491], [121.574707009473, 18.0623123014185]]]]}, "properties": {"taskId": 3221, "taskX": 27450, "taskY": 18056, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 18.0727569114491], [121.596679665719, 18.0727569114491], [121.596679665719, 18.0832009002027], [121.585693337596, 18.0832009002027], [121.585693337596, 18.0727569114491]]]]}, "properties": {"taskId": 3224, "taskX": 27451, "taskY": 18057, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.898803689102, 18.218916076864], [121.904296853164, 18.218916076864], [121.904296853164, 18.2241337842681], [121.898803689102, 18.2241337842681], [121.898803689102, 18.218916076864]]]]}, "properties": {"taskId": 3303, "taskX": 54959, "taskY": 36142, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.135253884552, 18.5629474396796], [121.140747048613, 18.5629474396796], [121.140747048613, 18.568154739547], [121.135253884552, 18.568154739547], [121.135253884552, 18.5629474396796]]]]}, "properties": {"taskId": 3337, "taskX": 54820, "taskY": 36208, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.140747048613, 18.568154739547], [121.146240212675, 18.568154739547], [121.146240212675, 18.5733618804414], [121.140747048613, 18.5733618804414], [121.140747048613, 18.568154739547]]]]}, "properties": {"taskId": 3340, "taskX": 54821, "taskY": 36209, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.519775368858, 18.4040486259214], [121.522521950888, 18.4040486259214], [121.522521950888, 18.4066547107354], [121.519775368858, 18.4066547107354], [121.519775368858, 18.4040486259214]]]]}, "properties": {"taskId": 3406, "taskX": 109780, "taskY": 72355, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.907043435194, 17.9526064645813], [121.909790017225, 17.9526064645813], [121.909790017225, 17.9552193011769], [121.907043435194, 17.9552193011769], [121.907043435194, 17.9526064645813]]]]}, "properties": {"taskId": 3167, "taskX": 109921, "taskY": 72182, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 18.1876065493462], [121.772460915687, 18.1876065493462], [121.772460915687, 18.2084801928881], [121.750488259441, 18.2084801928881], [121.750488259441, 18.1876065493462]]]]}, "properties": {"taskId": 3251, "taskX": 13733, "taskY": 9034, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.755981423503, 18.218916076864], [121.761474587564, 18.218916076864], [121.761474587564, 18.2241337842681], [121.755981423503, 18.2241337842681], [121.755981423503, 18.218916076864]]]]}, "properties": {"taskId": 3291, "taskX": 54933, "taskY": 36142, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 18.0518670704211], [121.585693337596, 18.0518670704211], [121.585693337596, 18.0623123014185], [121.574707009473, 18.0623123014185], [121.574707009473, 18.0518670704211]]]]}, "properties": {"taskId": 3366, "taskX": 27450, "taskY": 18055, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.195678689228, 18.5629474396796], [121.20117185329, 18.5629474396796], [121.20117185329, 18.568154739547], [121.195678689228, 18.568154739547], [121.195678689228, 18.5629474396796]]]]}, "properties": {"taskId": 3395, "taskX": 54831, "taskY": 36208, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.668090798519, 18.1145291357018], [121.67358396258, 18.1145291357018], [121.67358396258, 18.1197499638089], [121.668090798519, 18.1197499638089], [121.668090798519, 18.1145291357018]]]]}, "properties": {"taskId": 3419, "taskX": 54917, "taskY": 36122, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.1145291357018], [121.668090798519, 18.1145291357018], [121.668090798519, 18.1197499638089], [121.662597634457, 18.1197499638089], [121.662597634457, 18.1145291357018]]]]}, "properties": {"taskId": 3417, "taskX": 54916, "taskY": 36122, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.9526064645813], [121.907043435194, 17.9526064645813], [121.907043435194, 17.9552193011769], [121.904296853164, 17.9552193011769], [121.904296853164, 17.9526064645813]]]]}, "properties": {"taskId": 3165, "taskX": 109920, "taskY": 72182, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.907043435194, 17.9552193011769], [121.909790017225, 17.9552193011769], [121.909790017225, 17.957832099161], [121.907043435194, 17.957832099161], [121.907043435194, 17.9552193011769]]]]}, "properties": {"taskId": 3168, "taskX": 109921, "taskY": 72183, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.668090798519, 18.1197499638089], [121.67358396258, 18.1197499638089], [121.67358396258, 18.1249706362482], [121.668090798519, 18.1249706362482], [121.668090798519, 18.1197499638089]]]]}, "properties": {"taskId": 3420, "taskX": 54917, "taskY": 36123, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.1876065493462], [121.750488259441, 18.1876065493462], [121.750488259441, 18.2084801928881], [121.728515603195, 18.2084801928881], [121.728515603195, 18.1876065493462]]]]}, "properties": {"taskId": 3249, "taskX": 13732, "taskY": 9034, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 18.218916076864], [121.755981423503, 18.218916076864], [121.755981423503, 18.2241337842681], [121.750488259441, 18.2241337842681], [121.750488259441, 18.218916076864]]]]}, "properties": {"taskId": 3289, "taskX": 54932, "taskY": 36142, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.755981423503, 18.2241337842681], [121.761474587564, 18.2241337842681], [121.761474587564, 18.2293513352315], [121.755981423503, 18.2293513352315], [121.755981423503, 18.2241337842681]]]]}, "properties": {"taskId": 3292, "taskX": 54933, "taskY": 36143, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.190185525167, 18.5629474396796], [121.195678689228, 18.5629474396796], [121.195678689228, 18.568154739547], [121.190185525167, 18.568154739547], [121.190185525167, 18.5629474396796]]]]}, "properties": {"taskId": 3393, "taskX": 54830, "taskY": 36208, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.195678689228, 18.568154739547], [121.20117185329, 18.568154739547], [121.20117185329, 18.5733618804414], [121.195678689228, 18.5733618804414], [121.195678689228, 18.568154739547]]]]}, "properties": {"taskId": 3396, "taskX": 54831, "taskY": 36209, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 18.218916076864], [121.893310525041, 18.218916076864], [121.893310525041, 18.2293513352315], [121.882324196918, 18.2293513352315], [121.882324196918, 18.218916076864]]]]}, "properties": {"taskId": 3110, "taskX": 27478, "taskY": 18071, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.7382229333659], [121.761474587564, 17.7382229333659], [121.761474587564, 17.7486866486513], [121.750488259441, 17.7486866486513], [121.750488259441, 17.7382229333659]]]]}, "properties": {"taskId": 3134, "taskX": 27466, "taskY": 18025, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.909790017225, 17.9526064645813], [121.915283181287, 17.9526064645813], [121.915283181287, 17.957832099161], [121.909790017225, 17.957832099161], [121.909790017225, 17.9526064645813]]]]}, "properties": {"taskId": 3152, "taskX": 54961, "taskY": 36091, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 18.0936442673693], [121.585693337596, 18.0936442673693], [121.585693337596, 18.104087012639], [121.574707009473, 18.104087012639], [121.574707009473, 18.0936442673693]]]]}, "properties": {"taskId": 3154, "taskX": 27450, "taskY": 18059, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.668090798519, 18.2815182321454], [121.67358396258, 18.2815182321454], [121.67358396258, 18.2867340597168], [121.668090798519, 18.2867340597168], [121.668090798519, 18.2815182321454]]]]}, "properties": {"taskId": 3207, "taskX": 54917, "taskY": 36154, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 18.0779789835049], [121.580200173534, 18.0779789835049], [121.580200173534, 18.0832009002027], [121.574707009473, 18.0832009002027], [121.574707009473, 18.0779789835049]]]]}, "properties": {"taskId": 3246, "taskX": 54900, "taskY": 36115, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.107788064244, 18.5863790369205], [121.110534646275, 18.5863790369205], [121.110534646275, 18.5889823489055], [121.107788064244, 18.5889823489055], [121.107788064244, 18.5863790369205]]]]}, "properties": {"taskId": 3278, "taskX": 109630, "taskY": 72425, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.3388836994076], [121.646118142272, 18.3388836994076], [121.646118142272, 18.3440977989279], [121.640624978211, 18.3440977989279], [121.640624978211, 18.3388836994076]]]]}, "properties": {"taskId": 3554, "taskX": 54912, "taskY": 36165, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.170959450951, 18.6098074122556], [121.173706032982, 18.6098074122556], [121.173706032982, 18.6124103660366], [121.170959450951, 18.6124103660366], [121.170959450951, 18.6098074122556]]]]}, "properties": {"taskId": 3567, "taskX": 109653, "taskY": 72434, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.635131814149, 17.8742034365596], [121.640624978211, 17.8742034365596], [121.640624978211, 17.8794313834418], [121.635131814149, 17.8794313834418], [121.635131814149, 17.8742034365596]]]]}, "properties": {"taskId": 3315, "taskX": 54911, "taskY": 36076, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.135253884552, 18.5707583298682], [121.138000466582, 18.5707583298682], [121.138000466582, 18.5733618804414], [121.135253884552, 18.5733618804414], [121.135253884552, 18.5707583298682]]]]}, "properties": {"taskId": 3342, "taskX": 109640, "taskY": 72419, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 18.104087012639], [121.684570290703, 18.104087012639], [121.684570290703, 18.1093081519656], [121.679077126642, 18.1093081519656], [121.679077126642, 18.104087012639]]]]}, "properties": {"taskId": 3391, "taskX": 54919, "taskY": 36120, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.668090798519, 18.104087012639], [121.67358396258, 18.104087012639], [121.67358396258, 18.1093081519656], [121.668090798519, 18.1093081519656], [121.668090798519, 18.104087012639]]]]}, "properties": {"taskId": 3403, "taskX": 54917, "taskY": 36120, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 18.5785688623248], [121.206665017351, 18.5785688623248], [121.206665017351, 18.5837756851588], [121.20117185329, 18.5837756851588], [121.20117185329, 18.5785688623248]]]]}, "properties": {"taskId": 3546, "taskX": 54832, "taskY": 36211, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.593933083688, 18.0623123014185], [121.596679665719, 18.0623123014185], [121.596679665719, 18.0649235121539], [121.593933083688, 18.0649235121539], [121.593933083688, 18.0623123014185]]]]}, "properties": {"taskId": 3283, "taskX": 109807, "taskY": 72224, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.0832009002027], [121.486816384489, 18.0832009002027], [121.486816384489, 18.104087012639], [121.464843728242, 18.104087012639], [121.464843728242, 18.0832009002027]]]]}, "properties": {"taskId": 3306, "taskX": 13720, "taskY": 9029, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.580200173534, 18.0414212187671], [121.585693337596, 18.0414212187671], [121.585693337596, 18.0466442221567], [121.580200173534, 18.0466442221567], [121.580200173534, 18.0414212187671]]]]}, "properties": {"taskId": 3371, "taskX": 54901, "taskY": 36108, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.909790017225, 17.9499935893792], [121.912536599256, 17.9499935893792], [121.912536599256, 17.9526064645813], [121.909790017225, 17.9526064645813], [121.909790017225, 17.9499935893792]]]]}, "properties": {"taskId": 3398, "taskX": 109922, "taskY": 72181, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.9369286344414], [121.618652321965, 17.9369286344414], [121.618652321965, 17.957832099161], [121.596679665719, 17.957832099161], [121.596679665719, 17.9369286344414]]]]}, "properties": {"taskId": 3421, "taskX": 13726, "taskY": 9022, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.957832099161], [121.640624978211, 17.957832099161], [121.640624978211, 17.9787330924414], [121.618652321965, 17.9787330924414], [121.618652321965, 17.957832099161]]]]}, "properties": {"taskId": 3424, "taskX": 13727, "taskY": 9023, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.9473806755755], [121.907043435194, 17.9473806755755], [121.907043435194, 17.9499935893792], [121.904296853164, 17.9499935893792], [121.904296853164, 17.9473806755755]]]]}, "properties": {"taskId": 3445, "taskX": 109920, "taskY": 72180, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.907043435194, 17.9499935893792], [121.909790017225, 17.9499935893792], [121.909790017225, 17.9526064645813], [121.907043435194, 17.9526064645813], [121.907043435194, 17.9499935893792]]]]}, "properties": {"taskId": 3448, "taskX": 109921, "taskY": 72181, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 18.0414212187671], [121.640624978211, 18.0414212187671], [121.640624978211, 18.0518670704211], [121.629638650088, 18.0518670704211], [121.629638650088, 18.0414212187671]]]]}, "properties": {"taskId": 3463, "taskX": 27455, "taskY": 18054, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.9369286344414], [121.706542946949, 17.9369286344414], [121.706542946949, 17.957832099161], [121.684570290703, 17.957832099161], [121.684570290703, 17.9369286344414]]]]}, "properties": {"taskId": 3113, "taskX": 13730, "taskY": 9022, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.9369286344414], [121.728515603195, 17.9369286344414], [121.728515603195, 17.957832099161], [121.706542946949, 17.957832099161], [121.706542946949, 17.9369286344414]]]]}, "properties": {"taskId": 3115, "taskX": 13731, "taskY": 9022, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.915283181287, 17.9369286344414], [121.92626950941, 17.9369286344414], [121.92626950941, 17.9473806755755], [121.915283181287, 17.9473806755755], [121.915283181287, 17.9369286344414]]]]}, "properties": {"taskId": 3143, "taskX": 27481, "taskY": 18044, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 17.8742034365596], [121.618652321965, 17.8742034365596], [121.618652321965, 17.8846591764432], [121.607665993842, 17.8846591764432], [121.607665993842, 17.8742034365596]]]]}, "properties": {"taskId": 3191, "taskX": 27453, "taskY": 18038, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 18.2084801928881], [121.766967751626, 18.2084801928881], [121.766967751626, 18.2136982130578], [121.761474587564, 18.2136982130578], [121.761474587564, 18.2084801928881]]]]}, "properties": {"taskId": 3261, "taskX": 54934, "taskY": 36140, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.766967751626, 18.2136982130578], [121.772460915687, 18.2136982130578], [121.772460915687, 18.218916076864], [121.766967751626, 18.218916076864], [121.766967751626, 18.2136982130578]]]]}, "properties": {"taskId": 3264, "taskX": 54935, "taskY": 36141, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.766967751626, 18.218916076864], [121.772460915687, 18.218916076864], [121.772460915687, 18.2241337842681], [121.766967751626, 18.2241337842681], [121.766967751626, 18.218916076864]]]]}, "properties": {"taskId": 3267, "taskX": 54935, "taskY": 36142, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.124267556428, 18.5733618804414], [121.12976072049, 18.5733618804414], [121.12976072049, 18.5785688623248], [121.124267556428, 18.5785688623248], [121.124267556428, 18.5733618804414]]]]}, "properties": {"taskId": 3525, "taskX": 54818, "taskY": 36210, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.6440220248121], [121.687316872734, 17.6440220248121], [121.687316872734, 17.6466393832987], [121.684570290703, 17.6466393832987], [121.684570290703, 17.6440220248121]]]]}, "properties": {"taskId": 3329, "taskX": 109840, "taskY": 72064, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.687316872734, 17.6466393832987], [121.690063454765, 17.6466393832987], [121.690063454765, 17.6492567037506], [121.687316872734, 17.6492567037506], [121.687316872734, 17.6466393832987]]]]}, "properties": {"taskId": 3332, "taskX": 109841, "taskY": 72065, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.12976072049, 18.5785688623248], [121.135253884552, 18.5785688623248], [121.135253884552, 18.5837756851588], [121.12976072049, 18.5837756851588], [121.12976072049, 18.5785688623248]]]]}, "properties": {"taskId": 3528, "taskX": 54819, "taskY": 36211, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.0205276547308], [121.618652321965, 18.0205276547308], [121.618652321965, 18.0414212187671], [121.596679665719, 18.0414212187671], [121.596679665719, 18.0205276547308]]]]}, "properties": {"taskId": 3373, "taskX": 13726, "taskY": 9026, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 18.1354115139683], [121.497802712612, 18.1354115139683], [121.497802712612, 18.1458517685528], [121.486816384489, 18.1458517685528], [121.486816384489, 18.1354115139683]]]]}, "properties": {"taskId": 3118, "taskX": 27442, "taskY": 18063, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 18.1354115139683], [121.508789040735, 18.1354115139683], [121.508789040735, 18.1458517685528], [121.497802712612, 18.1458517685528], [121.497802712612, 18.1354115139683]]]]}, "properties": {"taskId": 3120, "taskX": 27443, "taskY": 18063, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.646118142272, 18.0518670704211], [121.651611306334, 18.0518670704211], [121.651611306334, 18.0570897635212], [121.646118142272, 18.0570897635212], [121.646118142272, 18.0518670704211]]]]}, "properties": {"taskId": 3199, "taskX": 54913, "taskY": 36110, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.893310525041, 18.2241337842681], [121.898803689102, 18.2241337842681], [121.898803689102, 18.2293513352315], [121.893310525041, 18.2293513352315], [121.893310525041, 18.2241337842681]]]]}, "properties": {"taskId": 3302, "taskX": 54958, "taskY": 36143, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.519775368858, 18.4014425016654], [121.522521950888, 18.4014425016654], [121.522521950888, 18.4040486259214], [121.519775368858, 18.4040486259214], [121.519775368858, 18.4014425016654]]]]}, "properties": {"taskId": 3405, "taskX": 109780, "taskY": 72354, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.522521950888, 18.4040486259214], [121.525268532919, 18.4040486259214], [121.525268532919, 18.4066547107354], [121.522521950888, 18.4066547107354], [121.522521950888, 18.4040486259214]]]]}, "properties": {"taskId": 3408, "taskX": 109781, "taskY": 72355, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.7539182769576], [121.734008767257, 17.7539182769576], [121.734008767257, 17.7591497523209], [121.728515603195, 17.7591497523209], [121.728515603195, 17.7539182769576]]]]}, "properties": {"taskId": 3450, "taskX": 54928, "taskY": 36053, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.7486866486513], [121.736755349288, 17.7486866486513], [121.736755349288, 17.7513024819199], [121.734008767257, 17.7513024819199], [121.734008767257, 17.7486866486513]]]]}, "properties": {"taskId": 3453, "taskX": 109858, "taskY": 72104, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.736755349288, 17.7513024819199], [121.739501931318, 17.7513024819199], [121.739501931318, 17.7539182769576], [121.736755349288, 17.7539182769576], [121.736755349288, 17.7513024819199]]]]}, "properties": {"taskId": 3456, "taskX": 109859, "taskY": 72105, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.871337868795, 17.8637470813091], [121.882324196918, 17.8637470813091], [121.882324196918, 17.8742034365596], [121.871337868795, 17.8742034365596], [121.871337868795, 17.8637470813091]]]]}, "properties": {"taskId": 3124, "taskX": 27477, "taskY": 18037, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.0727569114491], [121.607665993842, 18.0727569114491], [121.607665993842, 18.0832009002027], [121.596679665719, 18.0832009002027], [121.596679665719, 18.0727569114491]]]]}, "properties": {"taskId": 3158, "taskX": 27452, "taskY": 18057, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.102294900182, 18.5629474396796], [121.107788064244, 18.5629474396796], [121.107788064244, 18.568154739547], [121.102294900182, 18.568154739547], [121.102294900182, 18.5629474396796]]]]}, "properties": {"taskId": 3493, "taskX": 54814, "taskY": 36208, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.107788064244, 18.568154739547], [121.113281228305, 18.568154739547], [121.113281228305, 18.5733618804414], [121.107788064244, 18.5733618804414], [121.107788064244, 18.568154739547]]]]}, "properties": {"taskId": 3496, "taskX": 54815, "taskY": 36209, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.151733376736, 18.5837756851588], [121.157226540798, 18.5837756851588], [121.157226540798, 18.5889823489055], [121.151733376736, 18.5889823489055], [121.151733376736, 18.5837756851588]]]]}, "properties": {"taskId": 3747, "taskX": 54823, "taskY": 36212, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.904296853164, 17.9552193011769], [121.907043435194, 17.9552193011769], [121.907043435194, 17.957832099161], [121.904296853164, 17.957832099161], [121.904296853164, 17.9552193011769]]]]}, "properties": {"taskId": 3166, "taskX": 109920, "taskY": 72183, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.2084801928881], [121.750488259441, 18.2084801928881], [121.750488259441, 18.2293513352315], [121.728515603195, 18.2293513352315], [121.728515603195, 18.2084801928881]]]]}, "properties": {"taskId": 3250, "taskX": 13732, "taskY": 9035, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 18.2241337842681], [121.755981423503, 18.2241337842681], [121.755981423503, 18.2293513352315], [121.750488259441, 18.2293513352315], [121.750488259441, 18.2241337842681]]]]}, "properties": {"taskId": 3290, "taskX": 54932, "taskY": 36143, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 18.0414212187671], [121.596679665719, 18.0414212187671], [121.596679665719, 18.0518670704211], [121.585693337596, 18.0518670704211], [121.585693337596, 18.0414212187671]]]]}, "properties": {"taskId": 3367, "taskX": 27451, "taskY": 18054, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.190185525167, 18.568154739547], [121.195678689228, 18.568154739547], [121.195678689228, 18.5733618804414], [121.190185525167, 18.5733618804414], [121.190185525167, 18.568154739547]]]]}, "properties": {"taskId": 3394, "taskX": 54830, "taskY": 36209, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.1197499638089], [121.668090798519, 18.1197499638089], [121.668090798519, 18.1249706362482], [121.662597634457, 18.1249706362482], [121.662597634457, 18.1197499638089]]]]}, "properties": {"taskId": 3418, "taskX": 54916, "taskY": 36123, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.668090798519, 18.0414212187671], [121.67358396258, 18.0414212187671], [121.67358396258, 18.0466442221567], [121.668090798519, 18.0466442221567], [121.668090798519, 18.0414212187671]]]]}, "properties": {"taskId": 3299, "taskX": 54917, "taskY": 36108, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 18.0623123014185], [121.588439919627, 18.0623123014185], [121.588439919627, 18.0649235121539], [121.585693337596, 18.0649235121539], [121.585693337596, 18.0623123014185]]]]}, "properties": {"taskId": 3325, "taskX": 109804, "taskY": 72224, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.588439919627, 18.0649235121539], [121.591186501657, 18.0649235121539], [121.591186501657, 18.067534684074], [121.588439919627, 18.067534684074], [121.588439919627, 18.0649235121539]]]]}, "properties": {"taskId": 3328, "taskX": 109805, "taskY": 72225, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.937255837533, 18.2397859676821], [121.942749001594, 18.2397859676821], [121.942749001594, 18.245003049092], [121.937255837533, 18.245003049092], [121.937255837533, 18.2397859676821]]]]}, "properties": {"taskId": 3333, "taskX": 54966, "taskY": 36146, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.942749001594, 18.245003049092], [121.948242165656, 18.245003049092], [121.948242165656, 18.2502199739071], [121.942749001594, 18.2502199739071], [121.942749001594, 18.245003049092]]]]}, "properties": {"taskId": 3336, "taskX": 54967, "taskY": 36147, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.591186501657, 18.0649235121539], [121.593933083688, 18.0649235121539], [121.593933083688, 18.067534684074], [121.591186501657, 18.067534684074], [121.591186501657, 18.0649235121539]]]]}, "properties": {"taskId": 3282, "taskX": 109806, "taskY": 72225, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.0623123014185], [121.486816384489, 18.0623123014185], [121.486816384489, 18.0832009002027], [121.464843728242, 18.0832009002027], [121.464843728242, 18.0623123014185]]]]}, "properties": {"taskId": 3305, "taskX": 13720, "taskY": 9028, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 18.0466442221567], [121.580200173534, 18.0466442221567], [121.580200173534, 18.0518670704211], [121.574707009473, 18.0518670704211], [121.574707009473, 18.0466442221567]]]]}, "properties": {"taskId": 3370, "taskX": 54900, "taskY": 36109, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.909790017225, 17.9473806755755], [121.912536599256, 17.9473806755755], [121.912536599256, 17.9499935893792], [121.909790017225, 17.9499935893792], [121.909790017225, 17.9473806755755]]]]}, "properties": {"taskId": 3397, "taskX": 109922, "taskY": 72180, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.912536599256, 17.9499935893792], [121.915283181287, 17.9499935893792], [121.915283181287, 17.9526064645813], [121.912536599256, 17.9526064645813], [121.912536599256, 17.9499935893792]]]]}, "properties": {"taskId": 3400, "taskX": 109923, "taskY": 72181, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.907043435194, 17.9473806755755], [121.909790017225, 17.9473806755755], [121.909790017225, 17.9499935893792], [121.907043435194, 17.9499935893792], [121.907043435194, 17.9473806755755]]]]}, "properties": {"taskId": 3447, "taskX": 109921, "taskY": 72180, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 18.0414212187671], [121.629638650088, 18.0414212187671], [121.629638650088, 18.0518670704211], [121.618652321965, 18.0518670704211], [121.618652321965, 18.0414212187671]]]]}, "properties": {"taskId": 3461, "taskX": 27454, "taskY": 18054, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 18.0518670704211], [121.640624978211, 18.0518670704211], [121.640624978211, 18.0623123014185], [121.629638650088, 18.0623123014185], [121.629638650088, 18.0518670704211]]]]}, "properties": {"taskId": 3464, "taskX": 27455, "taskY": 18055, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.5157249686405], [121.775207497718, 17.5157249686405], [121.775207497718, 17.518344184812], [121.772460915687, 17.518344184812], [121.772460915687, 17.5157249686405]]]]}, "properties": {"taskId": 3202, "taskX": 109872, "taskY": 72015, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.104087012639], [121.657104470395, 18.104087012639], [121.657104470395, 18.1093081519656], [121.651611306334, 18.1093081519656], [121.651611306334, 18.104087012639]]]]}, "properties": {"taskId": 3225, "taskX": 54914, "taskY": 36120, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 18.1093081519656], [121.662597634457, 18.1093081519656], [121.662597634457, 18.1145291357018], [121.657104470395, 18.1145291357018], [121.657104470395, 18.1093081519656]]]]}, "properties": {"taskId": 3228, "taskX": 54915, "taskY": 36121, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.687316872734, 17.638787193754], [121.690063454765, 17.638787193754], [121.690063454765, 17.6414046282956], [121.687316872734, 17.6414046282956], [121.687316872734, 17.638787193754]]]]}, "properties": {"taskId": 3323, "taskX": 109841, "taskY": 72062, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.360473611074, 17.8846591764432], [121.365966775135, 17.8846591764432], [121.365966775135, 17.8898868155249], [121.360473611074, 17.8898868155249], [121.360473611074, 17.8846591764432]]]]}, "properties": {"taskId": 3363, "taskX": 54861, "taskY": 36078, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 18.3962301348468], [121.354980447012, 18.3962301348468], [121.354980447012, 18.4170786554759], [121.333007790766, 18.4170786554759], [121.333007790766, 18.3962301348468]]]]}, "properties": {"taskId": 3413, "taskX": 13714, "taskY": 9044, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.5131057146801], [121.775207497718, 17.5131057146801], [121.775207497718, 17.5157249686405], [121.772460915687, 17.5157249686405], [121.772460915687, 17.5131057146801]]]]}, "properties": {"taskId": 3201, "taskX": 109872, "taskY": 72014, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.775207497718, 17.5157249686405], [121.777954079749, 17.5157249686405], [121.777954079749, 17.518344184812], [121.775207497718, 17.518344184812], [121.775207497718, 17.5157249686405]]]]}, "properties": {"taskId": 3204, "taskX": 109873, "taskY": 72015, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.1093081519656], [121.657104470395, 18.1093081519656], [121.657104470395, 18.1145291357018], [121.651611306334, 18.1145291357018], [121.651611306334, 18.1093081519656]]]]}, "properties": {"taskId": 3226, "taskX": 54914, "taskY": 36121, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.6414046282956], [121.687316872734, 17.6414046282956], [121.687316872734, 17.6440220248121], [121.684570290703, 17.6440220248121], [121.684570290703, 17.6414046282956]]]]}, "properties": {"taskId": 3322, "taskX": 109840, "taskY": 72063, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.354980447012, 17.8846591764432], [121.360473611074, 17.8846591764432], [121.360473611074, 17.8898868155249], [121.354980447012, 17.8898868155249], [121.354980447012, 17.8846591764432]]]]}, "properties": {"taskId": 3361, "taskX": 54860, "taskY": 36078, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.360473611074, 17.8898868155249], [121.365966775135, 17.8898868155249], [121.365966775135, 17.8951143006479], [121.360473611074, 17.8951143006479], [121.360473611074, 17.8898868155249]]]]}, "properties": {"taskId": 3364, "taskX": 54861, "taskY": 36079, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.058105446886, 18.3336694425994], [122.069091775009, 18.3336694425994], [122.069091775009, 18.3440977989279], [122.058105446886, 18.3440977989279], [122.058105446886, 18.3336694425994]]]]}, "properties": {"taskId": 3137, "taskX": 27494, "taskY": 18082, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.069091775009, 18.3440977989279], [122.080078103132, 18.3440977989279], [122.080078103132, 18.3545255259514], [122.069091775009, 18.3545255259514], [122.069091775009, 18.3440977989279]]]]}, "properties": {"taskId": 3140, "taskX": 27495, "taskY": 18083, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.1249706362482], [121.431884743873, 18.1249706362482], [121.431884743873, 18.1354115139683], [121.42089841575, 18.1354115139683], [121.42089841575, 18.1249706362482]]]]}, "properties": {"taskId": 3193, "taskX": 27436, "taskY": 18062, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.431884743873, 18.1354115139683], [121.442871071996, 18.1354115139683], [121.442871071996, 18.1458517685528], [121.431884743873, 18.1458517685528], [121.431884743873, 18.1354115139683]]]]}, "properties": {"taskId": 3196, "taskX": 27437, "taskY": 18063, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.102294900182, 18.5889823489055], [121.105041482213, 18.5889823489055], [121.105041482213, 18.5915856211092], [121.102294900182, 18.5915856211092], [121.102294900182, 18.5889823489055]]]]}, "properties": {"taskId": 3273, "taskX": 109628, "taskY": 72426, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.105041482213, 18.5915856211092], [121.107788064244, 18.5915856211092], [121.107788064244, 18.5941888535266], [121.105041482213, 18.5941888535266], [121.105041482213, 18.5915856211092]]]]}, "properties": {"taskId": 3276, "taskX": 109629, "taskY": 72427, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.0414212187671], [121.684570290703, 18.0414212187671], [121.684570290703, 18.0518670704211], [121.67358396258, 18.0518670704211], [121.67358396258, 18.0414212187671]]]]}, "properties": {"taskId": 3295, "taskX": 27459, "taskY": 18054, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.690063454765, 17.6335522106155], [121.695556618826, 17.6335522106155], [121.695556618826, 17.638787193754], [121.690063454765, 17.638787193754], [121.690063454765, 17.6335522106155]]]]}, "properties": {"taskId": 3319, "taskX": 54921, "taskY": 36030, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 18.0832009002027], [121.591186501657, 18.0832009002027], [121.591186501657, 18.0884226615038], [121.585693337596, 18.0884226615038], [121.585693337596, 18.0832009002027]]]]}, "properties": {"taskId": 3177, "taskX": 54902, "taskY": 36116, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.591186501657, 18.0884226615038], [121.596679665719, 18.0884226615038], [121.596679665719, 18.0936442673693], [121.591186501657, 18.0936442673693], [121.591186501657, 18.0884226615038]]]]}, "properties": {"taskId": 3180, "taskX": 54903, "taskY": 36117, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.8742034365596], [121.607665993842, 17.8742034365596], [121.607665993842, 17.8846591764432], [121.596679665719, 17.8846591764432], [121.596679665719, 17.8742034365596]]]]}, "properties": {"taskId": 3189, "taskX": 27452, "taskY": 18038, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 17.8846591764432], [121.618652321965, 17.8846591764432], [121.618652321965, 17.8951143006479], [121.607665993842, 17.8951143006479], [121.607665993842, 17.8846591764432]]]]}, "properties": {"taskId": 3192, "taskX": 27453, "taskY": 18039, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.766967751626, 18.2084801928881], [121.772460915687, 18.2084801928881], [121.772460915687, 18.2136982130578], [121.766967751626, 18.2136982130578], [121.766967751626, 18.2084801928881]]]]}, "properties": {"taskId": 3263, "taskX": 54935, "taskY": 36140, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 18.2241337842681], [121.766967751626, 18.2241337842681], [121.766967751626, 18.2293513352315], [121.761474587564, 18.2293513352315], [121.761474587564, 18.2241337842681]]]]}, "properties": {"taskId": 3266, "taskX": 54934, "taskY": 36143, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.687316872734, 17.6440220248121], [121.690063454765, 17.6440220248121], [121.690063454765, 17.6466393832987], [121.687316872734, 17.6466393832987], [121.687316872734, 17.6440220248121]]]]}, "properties": {"taskId": 3331, "taskX": 109841, "taskY": 72064, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.12976072049, 18.5733618804414], [121.135253884552, 18.5733618804414], [121.135253884552, 18.5785688623248], [121.12976072049, 18.5785688623248], [121.12976072049, 18.5733618804414]]]]}, "properties": {"taskId": 3527, "taskX": 54819, "taskY": 36210, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.058105446886, 18.3440977989279], [122.069091775009, 18.3440977989279], [122.069091775009, 18.3545255259514], [122.058105446886, 18.3545255259514], [122.058105446886, 18.3440977989279]]]]}, "properties": {"taskId": 3138, "taskX": 27494, "taskY": 18083, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.431884743873, 18.1249706362482], [121.442871071996, 18.1249706362482], [121.442871071996, 18.1354115139683], [121.431884743873, 18.1354115139683], [121.431884743873, 18.1249706362482]]]]}, "properties": {"taskId": 3195, "taskX": 27437, "taskY": 18062, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.105041482213, 18.5889823489055], [121.107788064244, 18.5889823489055], [121.107788064244, 18.5915856211092], [121.105041482213, 18.5915856211092], [121.105041482213, 18.5889823489055]]]]}, "properties": {"taskId": 3275, "taskX": 109629, "taskY": 72426, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.0518670704211], [121.67358396258, 18.0518670704211], [121.67358396258, 18.0623123014185], [121.662597634457, 18.0623123014185], [121.662597634457, 18.0518670704211]]]]}, "properties": {"taskId": 3294, "taskX": 27458, "taskY": 18055, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.8742034365596], [121.629638650088, 17.8742034365596], [121.629638650088, 17.8846591764432], [121.618652321965, 17.8846591764432], [121.618652321965, 17.8742034365596]]]]}, "properties": {"taskId": 3309, "taskX": 27454, "taskY": 18038, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.6335522106155], [121.690063454765, 17.6335522106155], [121.690063454765, 17.638787193754], [121.684570290703, 17.638787193754], [121.684570290703, 17.6335522106155]]]]}, "properties": {"taskId": 3317, "taskX": 54920, "taskY": 36030, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.690063454765, 17.638787193754], [121.695556618826, 17.638787193754], [121.695556618826, 17.6440220248121], [121.690063454765, 17.6440220248121], [121.690063454765, 17.638787193754]]]]}, "properties": {"taskId": 3320, "taskX": 54921, "taskY": 36031, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.069091775009, 18.3336694425994], [122.080078103132, 18.3336694425994], [122.080078103132, 18.3440977989279], [122.069091775009, 18.3440977989279], [122.069091775009, 18.3336694425994]]]]}, "properties": {"taskId": 3139, "taskX": 27495, "taskY": 18082, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 18.1354115139683], [121.431884743873, 18.1354115139683], [121.431884743873, 18.1458517685528], [121.42089841575, 18.1458517685528], [121.42089841575, 18.1354115139683]]]]}, "properties": {"taskId": 3194, "taskX": 27436, "taskY": 18063, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.102294900182, 18.5837756851588], [121.107788064244, 18.5837756851588], [121.107788064244, 18.5889823489055], [121.102294900182, 18.5889823489055], [121.102294900182, 18.5837756851588]]]]}, "properties": {"taskId": 3269, "taskX": 54814, "taskY": 36212, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.107788064244, 18.5889823489055], [121.113281228305, 18.5889823489055], [121.113281228305, 18.5941888535266], [121.107788064244, 18.5941888535266], [121.107788064244, 18.5889823489055]]]]}, "properties": {"taskId": 3272, "taskX": 54815, "taskY": 36213, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.102294900182, 18.5915856211092], [121.105041482213, 18.5915856211092], [121.105041482213, 18.5941888535266], [121.102294900182, 18.5941888535266], [121.102294900182, 18.5915856211092]]]]}, "properties": {"taskId": 3274, "taskX": 109628, "taskY": 72427, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.0518670704211], [121.684570290703, 18.0518670704211], [121.684570290703, 18.0623123014185], [121.67358396258, 18.0623123014185], [121.67358396258, 18.0518670704211]]]]}, "properties": {"taskId": 3296, "taskX": 27459, "taskY": 18055, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.8846591764432], [121.629638650088, 17.8846591764432], [121.629638650088, 17.8951143006479], [121.618652321965, 17.8951143006479], [121.618652321965, 17.8846591764432]]]]}, "properties": {"taskId": 3310, "taskX": 27454, "taskY": 18039, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 18.1667304070769], [121.640624978211, 18.1667304070769], [121.640624978211, 18.1876065493462], [121.618652321965, 18.1876065493462], [121.618652321965, 18.1667304070769]]]]}, "properties": {"taskId": 3176, "taskX": 13727, "taskY": 9033, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.588439919627, 18.0884226615038], [121.591186501657, 18.0884226615038], [121.591186501657, 18.0910334838684], [121.588439919627, 18.0910334838684], [121.588439919627, 18.0884226615038]]]]}, "properties": {"taskId": 3187, "taskX": 109805, "taskY": 72234, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.091308572059, 18.5629474396796], [121.102294900182, 18.5629474396796], [121.102294900182, 18.5733618804414], [121.091308572059, 18.5733618804414], [121.091308572059, 18.5629474396796]]]]}, "properties": {"taskId": 3285, "taskX": 27406, "taskY": 18104, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.102294900182, 18.5733618804414], [121.113281228305, 18.5733618804414], [121.113281228305, 18.5837756851588], [121.102294900182, 18.5837756851588], [121.102294900182, 18.5733618804414]]]]}, "properties": {"taskId": 3288, "taskX": 27407, "taskY": 18105, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.827392556303, 18.2084801928881], [121.838378884426, 18.2084801928881], [121.838378884426, 18.218916076864], [121.827392556303, 18.218916076864], [121.827392556303, 18.2084801928881]]]]}, "properties": {"taskId": 3383, "taskX": 27473, "taskY": 18070, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 17.7696122440617], [121.596679665719, 17.7696122440617], [121.596679665719, 17.7905353905046], [121.574707009473, 17.7905353905046], [121.574707009473, 17.7696122440617]]]]}, "properties": {"taskId": 3431, "taskX": 13725, "taskY": 9014, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.755981423503, 17.5602465002479], [121.758728005534, 17.5602465002479], [121.758728005534, 17.5628650732547], [121.755981423503, 17.5628650732547], [121.755981423503, 17.5602465002479]]]]}, "properties": {"taskId": 3457, "taskX": 109866, "taskY": 72032, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.758728005534, 17.5628650732547], [121.761474587564, 17.5628650732547], [121.761474587564, 17.5654836083839], [121.758728005534, 17.5654836083839], [121.758728005534, 17.5628650732547]]]]}, "properties": {"taskId": 3460, "taskX": 109867, "taskY": 72033, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.1667304070769], [121.618652321965, 18.1667304070769], [121.618652321965, 18.1876065493462], [121.596679665719, 18.1876065493462], [121.596679665719, 18.1667304070769]]]]}, "properties": {"taskId": 3174, "taskX": 13726, "taskY": 9033, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 18.0884226615038], [121.588439919627, 18.0884226615038], [121.588439919627, 18.0910334838684], [121.585693337596, 18.0910334838684], [121.585693337596, 18.0884226615038]]]]}, "properties": {"taskId": 3185, "taskX": 109804, "taskY": 72234, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.588439919627, 18.0910334838684], [121.591186501657, 18.0910334838684], [121.591186501657, 18.0936442673693], [121.588439919627, 18.0936442673693], [121.588439919627, 18.0910334838684]]]]}, "properties": {"taskId": 3188, "taskX": 109805, "taskY": 72235, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.091308572059, 18.5733618804414], [121.102294900182, 18.5733618804414], [121.102294900182, 18.5837756851588], [121.091308572059, 18.5837756851588], [121.091308572059, 18.5733618804414]]]]}, "properties": {"taskId": 3286, "taskX": 27406, "taskY": 18105, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 18.2084801928881], [121.827392556303, 18.2084801928881], [121.827392556303, 18.218916076864], [121.81640622818, 18.218916076864], [121.81640622818, 18.2084801928881]]]]}, "properties": {"taskId": 3381, "taskX": 27472, "taskY": 18070, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.827392556303, 18.218916076864], [121.838378884426, 18.218916076864], [121.838378884426, 18.2293513352315], [121.827392556303, 18.2293513352315], [121.827392556303, 18.218916076864]]]]}, "properties": {"taskId": 3384, "taskX": 27473, "taskY": 18071, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.758728005534, 17.5602465002479], [121.761474587564, 17.5602465002479], [121.761474587564, 17.5628650732547], [121.758728005534, 17.5628650732547], [121.758728005534, 17.5602465002479]]]]}, "properties": {"taskId": 3459, "taskX": 109867, "taskY": 72032, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.0518670704211], [121.646118142272, 18.0518670704211], [121.646118142272, 18.0570897635212], [121.640624978211, 18.0570897635212], [121.640624978211, 18.0518670704211]]]]}, "properties": {"taskId": 3197, "taskX": 54912, "taskY": 36110, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.646118142272, 18.0570897635212], [121.651611306334, 18.0570897635212], [121.651611306334, 18.0623123014185], [121.646118142272, 18.0623123014185], [121.646118142272, 18.0570897635212]]]]}, "properties": {"taskId": 3200, "taskX": 54913, "taskY": 36111, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.893310525041, 18.218916076864], [121.898803689102, 18.218916076864], [121.898803689102, 18.2241337842681], [121.893310525041, 18.2241337842681], [121.893310525041, 18.218916076864]]]]}, "properties": {"taskId": 3301, "taskX": 54958, "taskY": 36142, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.898803689102, 18.2241337842681], [121.904296853164, 18.2241337842681], [121.904296853164, 18.2293513352315], [121.898803689102, 18.2293513352315], [121.898803689102, 18.2241337842681]]]]}, "properties": {"taskId": 3304, "taskX": 54959, "taskY": 36143, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.140747048613, 18.5629474396796], [121.146240212675, 18.5629474396796], [121.146240212675, 18.568154739547], [121.140747048613, 18.568154739547], [121.140747048613, 18.5629474396796]]]]}, "properties": {"taskId": 3339, "taskX": 54821, "taskY": 36208, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.522521950888, 18.4014425016654], [121.525268532919, 18.4014425016654], [121.525268532919, 18.4040486259214], [121.522521950888, 18.4040486259214], [121.522521950888, 18.4014425016654]]]]}, "properties": {"taskId": 3407, "taskX": 109781, "taskY": 72354, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.7486866486513], [121.734008767257, 17.7486866486513], [121.734008767257, 17.7539182769576], [121.728515603195, 17.7539182769576], [121.728515603195, 17.7486866486513]]]]}, "properties": {"taskId": 3449, "taskX": 54928, "taskY": 36052, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.7539182769576], [121.739501931318, 17.7539182769576], [121.739501931318, 17.7591497523209], [121.734008767257, 17.7591497523209], [121.734008767257, 17.7539182769576]]]]}, "properties": {"taskId": 3452, "taskX": 54929, "taskY": 36053, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.734008767257, 17.7513024819199], [121.736755349288, 17.7513024819199], [121.736755349288, 17.7539182769576], [121.734008767257, 17.7539182769576], [121.734008767257, 17.7513024819199]]]]}, "properties": {"taskId": 3454, "taskX": 109858, "taskY": 72105, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.2893419146663], [121.665344216488, 18.2893419146663], [121.665344216488, 18.2919497303851], [121.662597634457, 18.2919497303851], [121.662597634457, 18.2893419146663]]]]}, "properties": {"taskId": 3210, "taskX": 109832, "taskY": 72311, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.665344216488, 18.2893419146663], [121.668090798519, 18.2893419146663], [121.668090798519, 18.2919497303851], [121.665344216488, 18.2919497303851], [121.665344216488, 18.2893419146663]]]]}, "properties": {"taskId": 3212, "taskX": 109833, "taskY": 72311, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.0649235121539], [121.598052956734, 18.0649235121539], [121.598052956734, 18.0662291029662], [121.596679665719, 18.0662291029662], [121.596679665719, 18.0649235121539]]]]}, "properties": {"taskId": 3237, "taskX": 219616, "taskY": 144450, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.598052956734, 18.0649235121539], [121.59942624775, 18.0649235121539], [121.59942624775, 18.0662291029662], [121.598052956734, 18.0662291029662], [121.598052956734, 18.0649235121539]]]]}, "properties": {"taskId": 3239, "taskX": 219617, "taskY": 144450, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.0668818947332], [121.597366311227, 18.0668818947332], [121.597366311227, 18.067534684074], [121.596679665719, 18.067534684074], [121.596679665719, 18.0668818947332]]]]}, "properties": {"taskId": 3242, "taskX": 439232, "taskY": 288903, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.597366311227, 18.0668818947332], [121.598052956734, 18.0668818947332], [121.598052956734, 18.067534684074], [121.597366311227, 18.067534684074], [121.597366311227, 18.0668818947332]]]]}, "properties": {"taskId": 3244, "taskX": 439233, "taskY": 288903, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.2919497303851], [121.750488259441, 18.2919497303851], [121.750488259441, 18.3128108432568], [121.728515603195, 18.3128108432568], [121.728515603195, 18.2919497303851]]]]}, "properties": {"taskId": 3442, "taskX": 13732, "taskY": 9039, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.1145291357018], [121.662597634457, 18.1145291357018], [121.662597634457, 18.1249706362482], [121.651611306334, 18.1249706362482], [121.651611306334, 18.1145291357018]]]]}, "properties": {"taskId": 3220, "taskX": 27457, "taskY": 18061, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.937255837533, 18.2476115310763], [121.940002419564, 18.2476115310763], [121.940002419564, 18.2502199739071], [121.937255837533, 18.2502199739071], [121.937255837533, 18.2476115310763]]]]}, "properties": {"taskId": 3346, "taskX": 109932, "taskY": 72295, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.1145291357018], [121.651611306334, 18.1145291357018], [121.651611306334, 18.1249706362482], [121.640624978211, 18.1249706362482], [121.640624978211, 18.1145291357018]]]]}, "properties": {"taskId": 3218, "taskX": 27456, "taskY": 18061, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.937255837533, 18.245003049092], [121.940002419564, 18.245003049092], [121.940002419564, 18.2476115310763], [121.937255837533, 18.2476115310763], [121.937255837533, 18.245003049092]]]]}, "properties": {"taskId": 3345, "taskX": 109932, "taskY": 72294, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.940002419564, 18.2476115310763], [121.942749001594, 18.2476115310763], [121.942749001594, 18.2502199739071], [121.940002419564, 18.2502199739071], [121.940002419564, 18.2476115310763]]]]}, "properties": {"taskId": 3348, "taskX": 109933, "taskY": 72295, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.940002419564, 18.245003049092], [121.942749001594, 18.245003049092], [121.942749001594, 18.2476115310763], [121.940002419564, 18.2476115310763], [121.940002419564, 18.245003049092]]]]}, "properties": {"taskId": 3347, "taskX": 109933, "taskY": 72294, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.151733376736, 18.5629474396796], [121.157226540798, 18.5629474396796], [121.157226540798, 18.568154739547], [121.151733376736, 18.568154739547], [121.151733376736, 18.5629474396796]]]]}, "properties": {"taskId": 3475, "taskX": 54823, "taskY": 36208, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 18.271086106447], [121.772460915687, 18.271086106447], [121.772460915687, 18.2919497303851], [121.750488259441, 18.2919497303851], [121.750488259441, 18.271086106447]]]]}, "properties": {"taskId": 3443, "taskX": 13733, "taskY": 9038, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.096801736121, 18.5837756851588], [121.102294900182, 18.5837756851588], [121.102294900182, 18.5889823489055], [121.096801736121, 18.5889823489055], [121.096801736121, 18.5837756851588]]]]}, "properties": {"taskId": 3499, "taskX": 54813, "taskY": 36212, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.118774392367, 18.5707583298682], [121.121520974398, 18.5707583298682], [121.121520974398, 18.5733618804414], [121.118774392367, 18.5733618804414], [121.118774392367, 18.5707583298682]]]]}, "properties": {"taskId": 3534, "taskX": 109634, "taskY": 72419, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.121520974398, 18.5707583298682], [121.122894265413, 18.5707583298682], [121.122894265413, 18.5720601101236], [121.121520974398, 18.5720601101236], [121.121520974398, 18.5707583298682]]]]}, "properties": {"taskId": 3537, "taskX": 219270, "taskY": 144838, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.122894265413, 18.5720601101236], [121.124267556428, 18.5720601101236], [121.124267556428, 18.5733618804414], [121.122894265413, 18.5733618804414], [121.122894265413, 18.5720601101236]]]]}, "properties": {"taskId": 3540, "taskX": 219271, "taskY": 144839, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.646118142272, 18.3336694425994], [121.648864724303, 18.3336694425994], [121.648864724303, 18.336276590662], [121.646118142272, 18.336276590662], [121.646118142272, 18.3336694425994]]]]}, "properties": {"taskId": 3557, "taskX": 109826, "taskY": 72328, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.648864724303, 18.336276590662], [121.651611306334, 18.336276590662], [121.651611306334, 18.3388836994076], [121.648864724303, 18.3388836994076], [121.648864724303, 18.336276590662]]]]}, "properties": {"taskId": 3560, "taskX": 109827, "taskY": 72329, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.091308572059, 18.5837756851588], [121.096801736121, 18.5837756851588], [121.096801736121, 18.5889823489055], [121.091308572059, 18.5889823489055], [121.091308572059, 18.5837756851588]]]]}, "properties": {"taskId": 3497, "taskX": 54812, "taskY": 36212, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.096801736121, 18.5889823489055], [121.102294900182, 18.5889823489055], [121.102294900182, 18.5941888535266], [121.096801736121, 18.5941888535266], [121.096801736121, 18.5889823489055]]]]}, "properties": {"taskId": 3500, "taskX": 54813, "taskY": 36213, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.118774392367, 18.568154739547], [121.121520974398, 18.568154739547], [121.121520974398, 18.5707583298682], [121.118774392367, 18.5707583298682], [121.118774392367, 18.568154739547]]]]}, "properties": {"taskId": 3533, "taskX": 109634, "taskY": 72418, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.122894265413, 18.5707583298682], [121.124267556428, 18.5707583298682], [121.124267556428, 18.5720601101236], [121.122894265413, 18.5720601101236], [121.122894265413, 18.5707583298682]]]]}, "properties": {"taskId": 3539, "taskX": 219271, "taskY": 144838, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.648864724303, 18.3336694425994], [121.651611306334, 18.3336694425994], [121.651611306334, 18.336276590662], [121.648864724303, 18.336276590662], [121.648864724303, 18.3336694425994]]]]}, "properties": {"taskId": 3559, "taskX": 109827, "taskY": 72328, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.091308572059, 18.5889823489055], [121.096801736121, 18.5889823489055], [121.096801736121, 18.5941888535266], [121.091308572059, 18.5941888535266], [121.091308572059, 18.5889823489055]]]]}, "properties": {"taskId": 3498, "taskX": 54812, "taskY": 36213, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.121520974398, 18.568154739547], [121.124267556428, 18.568154739547], [121.124267556428, 18.5707583298682], [121.121520974398, 18.5707583298682], [121.121520974398, 18.568154739547]]]]}, "properties": {"taskId": 3535, "taskX": 109635, "taskY": 72418, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.121520974398, 18.5720601101236], [121.122894265413, 18.5720601101236], [121.122894265413, 18.5733618804414], [121.121520974398, 18.5733618804414], [121.121520974398, 18.5720601101236]]]]}, "properties": {"taskId": 3538, "taskX": 219270, "taskY": 144839, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.646118142272, 18.336276590662], [121.648864724303, 18.336276590662], [121.648864724303, 18.3388836994076], [121.646118142272, 18.3388836994076], [121.646118142272, 18.336276590662]]]]}, "properties": {"taskId": 3558, "taskX": 109826, "taskY": 72329, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.113281228305, 18.5785688623248], [121.118774392367, 18.5785688623248], [121.118774392367, 18.5837756851588], [121.113281228305, 18.5837756851588], [121.113281228305, 18.5785688623248]]]]}, "properties": {"taskId": 3514, "taskX": 54816, "taskY": 36211, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.118774392367, 18.5785688623248], [121.124267556428, 18.5785688623248], [121.124267556428, 18.5837756851588], [121.118774392367, 18.5837756851588], [121.118774392367, 18.5785688623248]]]]}, "properties": {"taskId": 3516, "taskX": 54817, "taskY": 36211, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.124267556428, 18.5629474396796], [121.12976072049, 18.5629474396796], [121.12976072049, 18.568154739547], [121.124267556428, 18.568154739547], [121.124267556428, 18.5629474396796]]]]}, "properties": {"taskId": 3521, "taskX": 54818, "taskY": 36208, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.12976072049, 18.5629474396796], [121.135253884552, 18.5629474396796], [121.135253884552, 18.568154739547], [121.12976072049, 18.568154739547], [121.12976072049, 18.5629474396796]]]]}, "properties": {"taskId": 3523, "taskX": 54819, "taskY": 36208, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.7068281209488], [121.772460915687, 17.7068281209488], [121.772460915687, 17.7277586067781], [121.750488259441, 17.7277586067781], [121.750488259441, 17.7068281209488]]]]}, "properties": {"taskId": 3488, "taskX": 13733, "taskY": 9011, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 17.9160227007731], [121.893310525041, 17.9160227007731], [121.893310525041, 17.9264759760701], [121.882324196918, 17.9264759760701], [121.882324196918, 17.9160227007731]]]]}, "properties": {"taskId": 3465, "taskX": 27478, "taskY": 18042, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.893310525041, 17.9264759760701], [121.904296853164, 17.9264759760701], [121.904296853164, 17.9369286344414], [121.893310525041, 17.9369286344414], [121.893310525041, 17.9264759760701]]]]}, "properties": {"taskId": 3468, "taskX": 27479, "taskY": 18043, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.047363259567, 18.6072044186551], [121.050109841598, 18.6072044186551], [121.050109841598, 18.6098074122556], [121.047363259567, 18.6098074122556], [121.047363259567, 18.6072044186551]]]]}, "properties": {"taskId": 3478, "taskX": 109608, "taskY": 72433, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.882324196918, 17.9264759760701], [121.893310525041, 17.9264759760701], [121.893310525041, 17.9369286344414], [121.882324196918, 17.9369286344414], [121.882324196918, 17.9264759760701]]]]}, "properties": {"taskId": 3466, "taskX": 27478, "taskY": 18043, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 18.0694930375387], [121.60835263935, 18.0694930375387], [121.60835263935, 18.070145817174], [121.607665993842, 18.070145817174], [121.607665993842, 18.0694930375387]]]]}, "properties": {"taskId": 3718, "taskX": 439248, "taskY": 288907, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.050109841598, 18.6046013852398], [121.052856423629, 18.6046013852398], [121.052856423629, 18.6072044186551], [121.050109841598, 18.6072044186551], [121.050109841598, 18.6046013852398]]]]}, "properties": {"taskId": 3479, "taskX": 109609, "taskY": 72432, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.893310525041, 17.9160227007731], [121.904296853164, 17.9160227007731], [121.904296853164, 17.9264759760701], [121.893310525041, 17.9264759760701], [121.893310525041, 17.9160227007731]]]]}, "properties": {"taskId": 3467, "taskX": 27479, "taskY": 18042, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.047363259567, 18.6046013852398], [121.050109841598, 18.6046013852398], [121.050109841598, 18.6072044186551], [121.047363259567, 18.6072044186551], [121.047363259567, 18.6046013852398]]]]}, "properties": {"taskId": 3477, "taskX": 109608, "taskY": 72432, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.050109841598, 18.6072044186551], [121.052856423629, 18.6072044186551], [121.052856423629, 18.6098074122556], [121.050109841598, 18.6098074122556], [121.050109841598, 18.6072044186551]]]]}, "properties": {"taskId": 3480, "taskX": 109609, "taskY": 72433, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.135253884552, 18.5837756851588], [121.146240212675, 18.5837756851588], [121.146240212675, 18.5941888535266], [121.135253884552, 18.5941888535266], [121.135253884552, 18.5837756851588]]]]}, "properties": {"taskId": 3481, "taskX": 27410, "taskY": 18106, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.113281228305, 18.5733618804414], [121.118774392367, 18.5733618804414], [121.118774392367, 18.5785688623248], [121.113281228305, 18.5785688623248], [121.113281228305, 18.5733618804414]]]]}, "properties": {"taskId": 3513, "taskX": 54816, "taskY": 36210, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.118774392367, 18.5733618804414], [121.124267556428, 18.5733618804414], [121.124267556428, 18.5785688623248], [121.118774392367, 18.5785688623248], [121.118774392367, 18.5733618804414]]]]}, "properties": {"taskId": 3515, "taskX": 54817, "taskY": 36210, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.124267556428, 18.568154739547], [121.12976072049, 18.568154739547], [121.12976072049, 18.5733618804414], [121.124267556428, 18.5733618804414], [121.124267556428, 18.568154739547]]]]}, "properties": {"taskId": 3522, "taskX": 54818, "taskY": 36209, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.12976072049, 18.568154739547], [121.135253884552, 18.568154739547], [121.135253884552, 18.5733618804414], [121.12976072049, 18.5733618804414], [121.12976072049, 18.568154739547]]]]}, "properties": {"taskId": 3524, "taskX": 54819, "taskY": 36209, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.135253884552, 18.5941888535266], [121.140747048613, 18.5941888535266], [121.140747048613, 18.5993951989841], [121.135253884552, 18.5993951989841], [121.135253884552, 18.5941888535266]]]]}, "properties": {"taskId": 3489, "taskX": 54820, "taskY": 36214, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.140747048613, 18.5993951989841], [121.146240212675, 18.5993951989841], [121.146240212675, 18.6046013852398], [121.140747048613, 18.6046013852398], [121.140747048613, 18.5993951989841]]]]}, "properties": {"taskId": 3492, "taskX": 54821, "taskY": 36215, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 18.5941888535266], [121.168212868921, 18.5941888535266], [121.168212868921, 18.6046013852398], [121.157226540798, 18.6046013852398], [121.157226540798, 18.5941888535266]]]]}, "properties": {"taskId": 3530, "taskX": 27412, "taskY": 18107, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.195678689228, 18.5733618804414], [121.20117185329, 18.5733618804414], [121.20117185329, 18.5785688623248], [121.195678689228, 18.5785688623248], [121.195678689228, 18.5733618804414]]]]}, "properties": {"taskId": 3551, "taskX": 54831, "taskY": 36210, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.135253884552, 18.5993951989841], [121.140747048613, 18.5993951989841], [121.140747048613, 18.6046013852398], [121.135253884552, 18.6046013852398], [121.135253884552, 18.5993951989841]]]]}, "properties": {"taskId": 3490, "taskX": 54820, "taskY": 36215, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.190185525167, 18.5785688623248], [121.195678689228, 18.5785688623248], [121.195678689228, 18.5837756851588], [121.190185525167, 18.5837756851588], [121.190185525167, 18.5785688623248]]]]}, "properties": {"taskId": 3550, "taskX": 54830, "taskY": 36211, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.140747048613, 18.5941888535266], [121.146240212675, 18.5941888535266], [121.146240212675, 18.5993951989841], [121.140747048613, 18.5993951989841], [121.140747048613, 18.5941888535266]]]]}, "properties": {"taskId": 3491, "taskX": 54821, "taskY": 36214, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.168212868921, 18.5837756851588], [121.179199197044, 18.5837756851588], [121.179199197044, 18.5941888535266], [121.168212868921, 18.5941888535266], [121.168212868921, 18.5837756851588]]]]}, "properties": {"taskId": 3531, "taskX": 27413, "taskY": 18106, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.190185525167, 18.5733618804414], [121.195678689228, 18.5733618804414], [121.195678689228, 18.5785688623248], [121.190185525167, 18.5785688623248], [121.190185525167, 18.5733618804414]]]]}, "properties": {"taskId": 3549, "taskX": 54830, "taskY": 36210, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.195678689228, 18.5785688623248], [121.20117185329, 18.5785688623248], [121.20117185329, 18.5837756851588], [121.195678689228, 18.5837756851588], [121.195678689228, 18.5785688623248]]]]}, "properties": {"taskId": 3552, "taskX": 54831, "taskY": 36211, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.124267556428, 18.5837756851588], [121.12976072049, 18.5837756851588], [121.12976072049, 18.5889823489055], [121.124267556428, 18.5889823489055], [121.124267556428, 18.5837756851588]]]]}, "properties": {"taskId": 3501, "taskX": 54818, "taskY": 36212, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.12976072049, 18.5837756851588], [121.135253884552, 18.5837756851588], [121.135253884552, 18.5889823489055], [121.12976072049, 18.5889823489055], [121.12976072049, 18.5837756851588]]]]}, "properties": {"taskId": 3503, "taskX": 54819, "taskY": 36212, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.124267556428, 18.5889823489055], [121.12976072049, 18.5889823489055], [121.12976072049, 18.5941888535266], [121.124267556428, 18.5941888535266], [121.124267556428, 18.5889823489055]]]]}, "properties": {"taskId": 3502, "taskX": 54818, "taskY": 36213, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.12976072049, 18.5889823489055], [121.135253884552, 18.5889823489055], [121.135253884552, 18.5941888535266], [121.12976072049, 18.5941888535266], [121.12976072049, 18.5889823489055]]]]}, "properties": {"taskId": 3504, "taskX": 54819, "taskY": 36213, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.113281228305, 18.5837756851588], [121.118774392367, 18.5837756851588], [121.118774392367, 18.5889823489055], [121.113281228305, 18.5889823489055], [121.113281228305, 18.5837756851588]]]]}, "properties": {"taskId": 3509, "taskX": 54816, "taskY": 36212, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.118774392367, 18.5889823489055], [121.124267556428, 18.5889823489055], [121.124267556428, 18.5941888535266], [121.118774392367, 18.5941888535266], [121.118774392367, 18.5889823489055]]]]}, "properties": {"taskId": 3512, "taskX": 54817, "taskY": 36213, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.113281228305, 18.5889823489055], [121.118774392367, 18.5889823489055], [121.118774392367, 18.5941888535266], [121.113281228305, 18.5941888535266], [121.113281228305, 18.5889823489055]]]]}, "properties": {"taskId": 3510, "taskX": 54816, "taskY": 36213, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.118774392367, 18.5837756851588], [121.124267556428, 18.5837756851588], [121.124267556428, 18.5889823489055], [121.118774392367, 18.5889823489055], [121.118774392367, 18.5837756851588]]]]}, "properties": {"taskId": 3511, "taskX": 54817, "taskY": 36212, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.113281228305, 18.5629474396796], [121.118774392367, 18.5629474396796], [121.118774392367, 18.568154739547], [121.113281228305, 18.568154739547], [121.113281228305, 18.5629474396796]]]]}, "properties": {"taskId": 3517, "taskX": 54816, "taskY": 36208, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.118774392367, 18.5629474396796], [121.124267556428, 18.5629474396796], [121.124267556428, 18.568154739547], [121.118774392367, 18.568154739547], [121.118774392367, 18.5629474396796]]]]}, "properties": {"taskId": 3519, "taskX": 54817, "taskY": 36208, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.20117185329, 18.5629474396796], [121.212158181413, 18.5629474396796], [121.212158181413, 18.5733618804414], [121.20117185329, 18.5733618804414], [121.20117185329, 18.5629474396796]]]]}, "properties": {"taskId": 3541, "taskX": 27416, "taskY": 18104, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.606979348334, 18.0688402554769], [121.607665993842, 18.0688402554769], [121.607665993842, 18.0694930375387], [121.606979348334, 18.0694930375387], [121.606979348334, 18.0688402554769]]]]}, "properties": {"taskId": 3615, "taskX": 439247, "taskY": 288906, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 17.8846591764432], [121.849365212549, 17.8846591764432], [121.849365212549, 17.8951143006479], [121.838378884426, 17.8951143006479], [121.838378884426, 17.8846591764432]]]]}, "properties": {"taskId": 3694, "taskX": 27474, "taskY": 18039, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.9369286344414], [121.574707009473, 17.9369286344414], [121.574707009473, 17.957832099161], [121.552734353227, 17.957832099161], [121.552734353227, 17.9369286344414]]]]}, "properties": {"taskId": 3597, "taskX": 13724, "taskY": 9022, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 17.957832099161], [121.596679665719, 17.957832099161], [121.596679665719, 17.9787330924414], [121.574707009473, 17.9787330924414], [121.574707009473, 17.957832099161]]]]}, "properties": {"taskId": 3600, "taskX": 13725, "taskY": 9023, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.113281228305, 18.568154739547], [121.118774392367, 18.568154739547], [121.118774392367, 18.5733618804414], [121.113281228305, 18.5733618804414], [121.113281228305, 18.568154739547]]]]}, "properties": {"taskId": 3518, "taskX": 54816, "taskY": 36209, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.957832099161], [121.574707009473, 17.957832099161], [121.574707009473, 17.9787330924414], [121.552734353227, 17.9787330924414], [121.552734353227, 17.957832099161]]]]}, "properties": {"taskId": 3598, "taskX": 13724, "taskY": 9023, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.606292702827, 18.0694930375387], [121.606979348334, 18.0694930375387], [121.606979348334, 18.070145817174], [121.606292702827, 18.070145817174], [121.606292702827, 18.0694930375387]]]]}, "properties": {"taskId": 3614, "taskX": 439246, "taskY": 288907, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 17.8742034365596], [121.849365212549, 17.8742034365596], [121.849365212549, 17.8846591764432], [121.838378884426, 17.8846591764432], [121.838378884426, 17.8742034365596]]]]}, "properties": {"taskId": 3693, "taskX": 27474, "taskY": 18038, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.849365212549, 17.8846591764432], [121.860351540672, 17.8846591764432], [121.860351540672, 17.8951143006479], [121.849365212549, 17.8951143006479], [121.849365212549, 17.8846591764432]]]]}, "properties": {"taskId": 3696, "taskX": 27475, "taskY": 18039, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 17.9369286344414], [121.596679665719, 17.9369286344414], [121.596679665719, 17.957832099161], [121.574707009473, 17.957832099161], [121.574707009473, 17.9369286344414]]]]}, "properties": {"taskId": 3599, "taskX": 13725, "taskY": 9022, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.606292702827, 18.0688402554769], [121.606979348334, 18.0688402554769], [121.606979348334, 18.0694930375387], [121.606292702827, 18.0694930375387], [121.606292702827, 18.0688402554769]]]]}, "properties": {"taskId": 3613, "taskX": 439246, "taskY": 288906, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.606979348334, 18.0694930375387], [121.607665993842, 18.0694930375387], [121.607665993842, 18.070145817174], [121.606979348334, 18.070145817174], [121.606979348334, 18.0694930375387]]]]}, "properties": {"taskId": 3616, "taskX": 439247, "taskY": 288907, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.849365212549, 17.8742034365596], [121.860351540672, 17.8742034365596], [121.860351540672, 17.8846591764432], [121.849365212549, 17.8846591764432], [121.849365212549, 17.8742034365596]]]]}, "properties": {"taskId": 3695, "taskX": 27475, "taskY": 18038, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.104087012639], [121.668090798519, 18.104087012639], [121.668090798519, 18.1093081519656], [121.662597634457, 18.1093081519656], [121.662597634457, 18.104087012639]]]]}, "properties": {"taskId": 3401, "taskX": 54916, "taskY": 36120, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.1771687903979], [121.695556618826, 18.1771687903979], [121.695556618826, 18.1876065493462], [121.684570290703, 18.1876065493462], [121.684570290703, 18.1771687903979]]]]}, "properties": {"taskId": 3570, "taskX": 27460, "taskY": 18067, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 18.1771687903979], [121.706542946949, 18.1771687903979], [121.706542946949, 18.1876065493462], [121.695556618826, 18.1876065493462], [121.695556618826, 18.1771687903979]]]]}, "properties": {"taskId": 3572, "taskX": 27461, "taskY": 18067, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.865844704733, 17.8532901110035], [121.871337868795, 17.8532901110035], [121.871337868795, 17.8585186730187], [121.865844704733, 17.8585186730187], [121.865844704733, 17.8532901110035]]]]}, "properties": {"taskId": 3575, "taskX": 54953, "taskY": 36072, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.777954079749, 17.5104864229357], [121.78070066178, 17.5104864229357], [121.78070066178, 17.5131057146801], [121.777954079749, 17.5131057146801], [121.777954079749, 17.5104864229357]]]]}, "properties": {"taskId": 3686, "taskX": 109874, "taskY": 72013, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 18.3128108432568], [122.091064431255, 18.3128108432568], [122.091064431255, 18.3232404572731], [122.080078103132, 18.3232404572731], [122.080078103132, 18.3128108432568]]]]}, "properties": {"taskId": 3625, "taskX": 27496, "taskY": 18080, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.091064431255, 18.3232404572731], [122.102050759378, 18.3232404572731], [122.102050759378, 18.3336694425994], [122.091064431255, 18.3336694425994], [122.091064431255, 18.3232404572731]]]]}, "properties": {"taskId": 3628, "taskX": 27497, "taskY": 18081, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.8532901110035], [121.865844704733, 17.8532901110035], [121.865844704733, 17.8585186730187], [121.860351540672, 17.8585186730187], [121.860351540672, 17.8532901110035]]]]}, "properties": {"taskId": 3573, "taskX": 54952, "taskY": 36072, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.865844704733, 17.8585186730187], [121.871337868795, 17.8585186730187], [121.871337868795, 17.8637470813091], [121.865844704733, 17.8637470813091], [121.865844704733, 17.8585186730187]]]]}, "properties": {"taskId": 3576, "taskX": 54953, "taskY": 36073, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.6440220248121], [121.720275857103, 17.6440220248121], [121.720275857103, 17.6466393832987], [121.717529275072, 17.6466393832987], [121.717529275072, 17.6440220248121]]]]}, "properties": {"taskId": 3665, "taskX": 109852, "taskY": 72064, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.720275857103, 17.6466393832987], [121.723022439134, 17.6466393832987], [121.723022439134, 17.6492567037506], [121.720275857103, 17.6492567037506], [121.720275857103, 17.6466393832987]]]]}, "properties": {"taskId": 3668, "taskX": 109853, "taskY": 72065, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.1667304070769], [121.695556618826, 18.1667304070769], [121.695556618826, 18.1771687903979], [121.684570290703, 18.1771687903979], [121.684570290703, 18.1667304070769]]]]}, "properties": {"taskId": 3569, "taskX": 27460, "taskY": 18066, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 18.1667304070769], [121.706542946949, 18.1667304070769], [121.706542946949, 18.1771687903979], [121.695556618826, 18.1771687903979], [121.695556618826, 18.1667304070769]]]]}, "properties": {"taskId": 3571, "taskX": 27461, "taskY": 18066, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.8585186730187], [121.865844704733, 17.8585186730187], [121.865844704733, 17.8637470813091], [121.860351540672, 17.8637470813091], [121.860351540672, 17.8585186730187]]]]}, "properties": {"taskId": 3574, "taskX": 54952, "taskY": 36073, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78070066178, 17.5078670934123], [121.78344724381, 17.5078670934123], [121.78344724381, 17.5104864229357], [121.78070066178, 17.5104864229357], [121.78070066178, 17.5078670934123]]]]}, "properties": {"taskId": 3687, "taskX": 109875, "taskY": 72012, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.8637470813091], [121.865844704733, 17.8637470813091], [121.865844704733, 17.8689753358357], [121.860351540672, 17.8689753358357], [121.860351540672, 17.8637470813091]]]]}, "properties": {"taskId": 3577, "taskX": 54952, "taskY": 36074, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.865844704733, 17.8637470813091], [121.871337868795, 17.8637470813091], [121.871337868795, 17.8689753358357], [121.865844704733, 17.8689753358357], [121.865844704733, 17.8637470813091]]]]}, "properties": {"taskId": 3579, "taskX": 54953, "taskY": 36074, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.60217282978, 18.067534684074], [121.604919411811, 18.067534684074], [121.604919411811, 18.070145817174], [121.60217282978, 18.070145817174], [121.60217282978, 18.067534684074]]]]}, "properties": {"taskId": 3581, "taskX": 109810, "taskY": 72226, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.8689753358357], [121.865844704733, 17.8689753358357], [121.865844704733, 17.8742034365596], [121.860351540672, 17.8742034365596], [121.860351540672, 17.8689753358357]]]]}, "properties": {"taskId": 3578, "taskX": 54952, "taskY": 36075, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.865844704733, 17.8689753358357], [121.871337868795, 17.8689753358357], [121.871337868795, 17.8742034365596], [121.865844704733, 17.8742034365596], [121.865844704733, 17.8689753358357]]]]}, "properties": {"taskId": 3580, "taskX": 54953, "taskY": 36075, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.60217282978, 18.070145817174], [121.604919411811, 18.070145817174], [121.604919411811, 18.0727569114491], [121.60217282978, 18.0727569114491], [121.60217282978, 18.070145817174]]]]}, "properties": {"taskId": 3582, "taskX": 109810, "taskY": 72227, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.604919411811, 18.070145817174], [121.607665993842, 18.070145817174], [121.607665993842, 18.0727569114491], [121.604919411811, 18.0727569114491], [121.604919411811, 18.070145817174]]]]}, "properties": {"taskId": 3584, "taskX": 109811, "taskY": 72227, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.635131814149, 17.8925005773337], [121.63787839618, 17.8925005773337], [121.63787839618, 17.8951143006479], [121.635131814149, 17.8951143006479], [121.635131814149, 17.8925005773337]]]]}, "properties": {"taskId": 3654, "taskX": 109822, "taskY": 72159, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.63787839618, 17.8925005773337], [121.640624978211, 17.8925005773337], [121.640624978211, 17.8951143006479], [121.63787839618, 17.8951143006479], [121.63787839618, 17.8925005773337]]]]}, "properties": {"taskId": 3656, "taskX": 109823, "taskY": 72159, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.788940407872, 17.5026283210481], [121.794433571933, 17.5026283210481], [121.794433571933, 17.5078670934123], [121.788940407872, 17.5078670934123], [121.788940407872, 17.5026283210481]]]]}, "properties": {"taskId": 3704, "taskX": 54939, "taskY": 36005, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.610412575873, 18.067534684074], [121.613159157903, 18.067534684074], [121.613159157903, 18.070145817174], [121.610412575873, 18.070145817174], [121.610412575873, 18.067534684074]]]]}, "properties": {"taskId": 3711, "taskX": 109813, "taskY": 72226, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.162719704859, 18.6046013852398], [121.16546628689, 18.6046013852398], [121.16546628689, 18.6072044186551], [121.162719704859, 18.6072044186551], [121.162719704859, 18.6046013852398]]]]}, "properties": {"taskId": 3777, "taskX": 109650, "taskY": 72432, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.2502199739071], [121.750488259441, 18.2502199739071], [121.750488259441, 18.271086106447], [121.728515603195, 18.271086106447], [121.728515603195, 18.2502199739071]]]]}, "properties": {"taskId": 3770, "taskX": 13732, "taskY": 9037, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.179199197044, 18.5837756851588], [121.184692361105, 18.5837756851588], [121.184692361105, 18.5889823489055], [121.179199197044, 18.5889823489055], [121.179199197044, 18.5837756851588]]]]}, "properties": {"taskId": 3741, "taskX": 54828, "taskY": 36212, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.184692361105, 18.5889823489055], [121.190185525167, 18.5889823489055], [121.190185525167, 18.5941888535266], [121.184692361105, 18.5941888535266], [121.184692361105, 18.5889823489055]]]]}, "properties": {"taskId": 3744, "taskX": 54829, "taskY": 36213, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.63787839618, 17.8898868155249], [121.640624978211, 17.8898868155249], [121.640624978211, 17.8925005773337], [121.63787839618, 17.8925005773337], [121.63787839618, 17.8898868155249]]]]}, "properties": {"taskId": 3655, "taskX": 109823, "taskY": 72158, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 18.1458517685528], [121.497802712612, 18.1458517685528], [121.497802712612, 18.156291399692], [121.486816384489, 18.156291399692], [121.486816384489, 18.1458517685528]]]]}, "properties": {"taskId": 3933, "taskX": 27442, "taskY": 18064, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.184692361105, 18.5837756851588], [121.190185525167, 18.5837756851588], [121.190185525167, 18.5889823489055], [121.184692361105, 18.5889823489055], [121.184692361105, 18.5837756851588]]]]}, "properties": {"taskId": 3743, "taskX": 54829, "taskY": 36212, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.2293513352315], [121.750488259441, 18.2293513352315], [121.750488259441, 18.2502199739071], [121.728515603195, 18.2502199739071], [121.728515603195, 18.2293513352315]]]]}, "properties": {"taskId": 3769, "taskX": 13732, "taskY": 9036, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 18.2502199739071], [121.772460915687, 18.2502199739071], [121.772460915687, 18.271086106447], [121.750488259441, 18.271086106447], [121.750488259441, 18.2502199739071]]]]}, "properties": {"taskId": 3772, "taskX": 13733, "taskY": 9037, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.16546628689, 18.6046013852398], [121.168212868921, 18.6046013852398], [121.168212868921, 18.6072044186551], [121.16546628689, 18.6072044186551], [121.16546628689, 18.6046013852398]]]]}, "properties": {"taskId": 3779, "taskX": 109651, "taskY": 72432, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 18.156291399692], [121.508789040735, 18.156291399692], [121.508789040735, 18.1667304070769], [121.497802712612, 18.1667304070769], [121.497802712612, 18.156291399692]]]]}, "properties": {"taskId": 3936, "taskX": 27443, "taskY": 18065, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.518344184812], [121.772460915687, 17.518344184812], [121.772460915687, 17.5288206715107], [121.761474587564, 17.5288206715107], [121.761474587564, 17.518344184812]]]]}, "properties": {"taskId": 3595, "taskX": 27467, "taskY": 18004, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 17.8532901110035], [121.750488259441, 17.8532901110035], [121.750488259441, 17.8637470813091], [121.739501931318, 17.8637470813091], [121.739501931318, 17.8532901110035]]]]}, "properties": {"taskId": 3867, "taskX": 27465, "taskY": 18036, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.613159157903, 18.1458517685528], [121.615905739934, 18.1458517685528], [121.615905739934, 18.1484617347976], [121.613159157903, 18.1484617347976], [121.613159157903, 18.1458517685528]]]]}, "properties": {"taskId": 3637, "taskX": 109814, "taskY": 72256, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.146240212675, 18.5941888535266], [121.151733376736, 18.5941888535266], [121.151733376736, 18.5993951989841], [121.146240212675, 18.5993951989841], [121.146240212675, 18.5941888535266]]]]}, "properties": {"taskId": 3733, "taskX": 54822, "taskY": 36214, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.151733376736, 18.5993951989841], [121.157226540798, 18.5993951989841], [121.157226540798, 18.6046013852398], [121.151733376736, 18.6046013852398], [121.151733376736, 18.5993951989841]]]]}, "properties": {"taskId": 3736, "taskX": 54823, "taskY": 36215, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.9264759760701], [121.871337868795, 17.9264759760701], [121.871337868795, 17.9369286344414], [121.860351540672, 17.9369286344414], [121.860351540672, 17.9264759760701]]]]}, "properties": {"taskId": 3826, "taskX": 27476, "taskY": 18043, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.179199197044, 18.5993951989841], [121.184692361105, 18.5993951989841], [121.184692361105, 18.6046013852398], [121.179199197044, 18.6046013852398], [121.179199197044, 18.5993951989841]]]]}, "properties": {"taskId": 3754, "taskX": 54828, "taskY": 36215, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.168212868921, 18.5993951989841], [121.173706032982, 18.5993951989841], [121.173706032982, 18.6046013852398], [121.168212868921, 18.6046013852398], [121.168212868921, 18.5993951989841]]]]}, "properties": {"taskId": 3758, "taskX": 54826, "taskY": 36215, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.1667304070769], [121.574707009473, 18.1667304070769], [121.574707009473, 18.1876065493462], [121.552734353227, 18.1876065493462], [121.552734353227, 18.1667304070769]]]]}, "properties": {"taskId": 3850, "taskX": 13724, "taskY": 9033, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.228637673597, 18.5629474396796], [121.231384255628, 18.5629474396796], [121.231384255628, 18.5655511094825], [121.228637673597, 18.5655511094825], [121.228637673597, 18.5629474396796]]]]}, "properties": {"taskId": 3861, "taskX": 109674, "taskY": 72416, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.231384255628, 18.5655511094825], [121.234130837659, 18.5655511094825], [121.234130837659, 18.568154739547], [121.231384255628, 18.568154739547], [121.231384255628, 18.5655511094825]]]]}, "properties": {"taskId": 3864, "taskX": 109675, "taskY": 72417, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.069091775009, 18.3128108432568], [122.080078103132, 18.3128108432568], [122.080078103132, 18.3232404572731], [122.069091775009, 18.3232404572731], [122.069091775009, 18.3128108432568]]]]}, "properties": {"taskId": 3911, "taskX": 27495, "taskY": 18080, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.058105446886, 18.318025728832], [122.063598610948, 18.318025728832], [122.063598610948, 18.3232404572731], [122.058105446886, 18.3232404572731], [122.058105446886, 18.318025728832]]]]}, "properties": {"taskId": 3914, "taskX": 54988, "taskY": 36161, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 18.0205276547308], [121.750488259441, 18.0205276547308], [121.750488259441, 18.0309747467668], [121.739501931318, 18.0309747467668], [121.739501931318, 18.0205276547308]]]]}, "properties": {"taskId": 3931, "taskX": 27465, "taskY": 18052, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.613159157903, 17.8532901110035], [121.618652321965, 17.8532901110035], [121.618652321965, 17.8585186730187], [121.613159157903, 17.8585186730187], [121.613159157903, 17.8532901110035]]]]}, "properties": {"taskId": 3623, "taskX": 54907, "taskY": 36072, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.173706032982, 18.605902906924], [121.175079323998, 18.605902906924], [121.175079323998, 18.6072044186551], [121.173706032982, 18.6072044186551], [121.173706032982, 18.605902906924]]]]}, "properties": {"taskId": 3814, "taskX": 219308, "taskY": 144865, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.937255837533, 20.4115688145028], [121.942749001594, 20.4115688145028], [121.942749001594, 20.4167169854434], [121.937255837533, 20.4167169854434], [121.937255837533, 20.4115688145028]]]]}, "properties": {"taskId": 3722, "taskX": 54966, "taskY": 36565, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.5392965531931], [121.750488259441, 17.5392965531931], [121.750488259441, 17.5602465002479], [121.728515603195, 17.5602465002479], [121.728515603195, 17.5392965531931]]]]}, "properties": {"taskId": 3590, "taskX": 13732, "taskY": 9003, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.635131814149, 17.8846591764432], [121.63787839618, 17.8846591764432], [121.63787839618, 17.8872730152265], [121.635131814149, 17.8872730152265], [121.635131814149, 17.8846591764432]]]]}, "properties": {"taskId": 3649, "taskX": 109822, "taskY": 72156, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.63787839618, 17.8872730152265], [121.640624978211, 17.8872730152265], [121.640624978211, 17.8898868155249], [121.63787839618, 17.8898868155249], [121.63787839618, 17.8872730152265]]]]}, "properties": {"taskId": 3652, "taskX": 109823, "taskY": 72157, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 18.6046013852398], [121.162719704859, 18.6046013852398], [121.162719704859, 18.6098074122556], [121.157226540798, 18.6098074122556], [121.157226540798, 18.6046013852398]]]]}, "properties": {"taskId": 3761, "taskX": 54824, "taskY": 36216, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.797180153964, 17.6492567037506], [121.799926735995, 17.6492567037506], [121.799926735995, 17.6518739861627], [121.797180153964, 17.6518739861627], [121.797180153964, 17.6492567037506]]]]}, "properties": {"taskId": 3691, "taskX": 109881, "taskY": 72066, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.6858951936713], [121.772460915687, 17.6858951936713], [121.772460915687, 17.6963619623342], [121.761474587564, 17.6963619623342], [121.761474587564, 17.6858951936713]]]]}, "properties": {"taskId": 3699, "taskX": 27467, "taskY": 18020, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.0832009002027], [121.607665993842, 18.0832009002027], [121.607665993842, 18.0936442673693], [121.596679665719, 18.0936442673693], [121.596679665719, 18.0832009002027]]]]}, "properties": {"taskId": 3705, "taskX": 27452, "taskY": 18058, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 18.0936442673693], [121.618652321965, 18.0936442673693], [121.618652321965, 18.104087012639], [121.607665993842, 18.104087012639], [121.607665993842, 18.0936442673693]]]]}, "properties": {"taskId": 3708, "taskX": 27453, "taskY": 18059, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 18.067534684074], [121.609039284857, 18.067534684074], [121.609039284857, 18.0688402554769], [121.607665993842, 18.0688402554769], [121.607665993842, 18.067534684074]]]]}, "properties": {"taskId": 3713, "taskX": 219624, "taskY": 144452, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.609039284857, 18.0688402554769], [121.610412575873, 18.0688402554769], [121.610412575873, 18.070145817174], [121.609039284857, 18.070145817174], [121.609039284857, 18.0688402554769]]]]}, "properties": {"taskId": 3716, "taskX": 219625, "taskY": 144453, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.146240212675, 18.5733618804414], [121.151733376736, 18.5733618804414], [121.151733376736, 18.5785688623248], [121.146240212675, 18.5785688623248], [121.146240212675, 18.5733618804414]]]]}, "properties": {"taskId": 3737, "taskX": 54822, "taskY": 36210, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.151733376736, 18.5785688623248], [121.157226540798, 18.5785688623248], [121.157226540798, 18.5837756851588], [121.151733376736, 18.5837756851588], [121.151733376736, 18.5785688623248]]]]}, "properties": {"taskId": 3740, "taskX": 54823, "taskY": 36211, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 18.0414212187671], [121.772460915687, 18.0414212187671], [121.772460915687, 18.0623123014185], [121.750488259441, 18.0623123014185], [121.750488259441, 18.0414212187671]]]]}, "properties": {"taskId": 3164, "taskX": 13733, "taskY": 9027, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 18.1667304070769], [121.596679665719, 18.1667304070769], [121.596679665719, 18.1771687903979], [121.585693337596, 18.1771687903979], [121.585693337596, 18.1667304070769]]]]}, "properties": {"taskId": 3855, "taskX": 27451, "taskY": 18066, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.162719704859, 18.5837756851588], [121.168212868921, 18.5837756851588], [121.168212868921, 18.5889823489055], [121.162719704859, 18.5889823489055], [121.162719704859, 18.5837756851588]]]]}, "properties": {"taskId": 3751, "taskX": 54825, "taskY": 36212, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.368713357166, 17.8585186730187], [121.371459939197, 17.8585186730187], [121.371459939197, 17.8611328963819], [121.368713357166, 17.8611328963819], [121.368713357166, 17.8585186730187]]]]}, "properties": {"taskId": 3811, "taskX": 109725, "taskY": 72146, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.9996316117937], [121.56372068135, 17.9996316117937], [121.56372068135, 18.0100799429696], [121.552734353227, 18.0100799429696], [121.552734353227, 17.9996316117937]]]]}, "properties": {"taskId": 3837, "taskX": 27448, "taskY": 18050, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 18.0100799429696], [121.574707009473, 18.0100799429696], [121.574707009473, 18.0205276547308], [121.56372068135, 18.0205276547308], [121.56372068135, 18.0100799429696]]]]}, "properties": {"taskId": 3840, "taskX": 27449, "taskY": 18051, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 17.602139120297], [121.519775368858, 17.602139120297], [121.519775368858, 17.6126107580436], [121.508789040735, 17.6126107580436], [121.508789040735, 17.602139120297]]]]}, "properties": {"taskId": 3937, "taskX": 27444, "taskY": 18012, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.0414212187671], [121.706542946949, 18.0414212187671], [121.706542946949, 18.0623123014185], [121.684570290703, 18.0623123014185], [121.684570290703, 18.0414212187671]]]]}, "properties": {"taskId": 3926, "taskX": 13730, "taskY": 9027, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.519775368858, 17.6126107580436], [121.530761696981, 17.6126107580436], [121.530761696981, 17.6230817882545], [121.519775368858, 17.6230817882545], [121.519775368858, 17.6126107580436]]]]}, "properties": {"taskId": 3940, "taskX": 27445, "taskY": 18013, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.166839577905, 18.6098074122556], [121.168212868921, 18.6098074122556], [121.168212868921, 18.6111088941238], [121.166839577905, 18.6111088941238], [121.166839577905, 18.6098074122556]]]]}, "properties": {"taskId": 3959, "taskX": 219303, "taskY": 144868, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 18.0623123014185], [121.613159157903, 18.0623123014185], [121.613159157903, 18.067534684074], [121.607665993842, 18.067534684074], [121.607665993842, 18.0623123014185]]]]}, "properties": {"taskId": 3585, "taskX": 54906, "taskY": 36112, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.613159157903, 18.067534684074], [121.618652321965, 18.067534684074], [121.618652321965, 18.0727569114491], [121.613159157903, 18.0727569114491], [121.613159157903, 18.067534684074]]]]}, "properties": {"taskId": 3588, "taskX": 54907, "taskY": 36113, "taskZoom": 16, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.6466393832987], [121.720275857103, 17.6466393832987], [121.720275857103, 17.6492567037506], [121.717529275072, 17.6492567037506], [121.717529275072, 17.6466393832987]]]]}, "properties": {"taskId": 3666, "taskX": 109852, "taskY": 72065, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.613159157903, 18.0623123014185], [121.618652321965, 18.0623123014185], [121.618652321965, 18.067534684074], [121.613159157903, 18.067534684074], [121.613159157903, 18.0623123014185]]]]}, "properties": {"taskId": 3587, "taskX": 54907, "taskY": 36112, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.720275857103, 17.6440220248121], [121.723022439134, 17.6440220248121], [121.723022439134, 17.6466393832987], [121.720275857103, 17.6466393832987], [121.720275857103, 17.6440220248121]]]]}, "properties": {"taskId": 3667, "taskX": 109853, "taskY": 72064, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.518344184812], [121.761474587564, 17.518344184812], [121.761474587564, 17.5288206715107], [121.750488259441, 17.5288206715107], [121.750488259441, 17.518344184812]]]]}, "properties": {"taskId": 3593, "taskX": 27466, "taskY": 18004, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.5288206715107], [121.772460915687, 17.5288206715107], [121.772460915687, 17.5392965531931], [121.761474587564, 17.5392965531931], [121.761474587564, 17.5288206715107]]]]}, "properties": {"taskId": 3596, "taskX": 27467, "taskY": 18005, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.615905739934, 18.1458517685528], [121.618652321965, 18.1458517685528], [121.618652321965, 18.1484617347976], [121.615905739934, 18.1484617347976], [121.615905739934, 18.1458517685528]]]]}, "properties": {"taskId": 3639, "taskX": 109815, "taskY": 72256, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.860351540672, 17.9160227007731], [121.871337868795, 17.9160227007731], [121.871337868795, 17.9264759760701], [121.860351540672, 17.9264759760701], [121.860351540672, 17.9160227007731]]]]}, "properties": {"taskId": 3825, "taskX": 27476, "taskY": 18042, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.871337868795, 17.9264759760701], [121.882324196918, 17.9264759760701], [121.882324196918, 17.9369286344414], [121.871337868795, 17.9369286344414], [121.871337868795, 17.9264759760701]]]]}, "properties": {"taskId": 3828, "taskX": 27477, "taskY": 18043, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.151733376736, 18.5941888535266], [121.157226540798, 18.5941888535266], [121.157226540798, 18.5993951989841], [121.151733376736, 18.5993951989841], [121.151733376736, 18.5941888535266]]]]}, "properties": {"taskId": 3735, "taskX": 54823, "taskY": 36214, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.179199197044, 18.5941888535266], [121.184692361105, 18.5941888535266], [121.184692361105, 18.5993951989841], [121.179199197044, 18.5993951989841], [121.179199197044, 18.5941888535266]]]]}, "properties": {"taskId": 3753, "taskX": 54828, "taskY": 36214, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.184692361105, 18.5993951989841], [121.190185525167, 18.5993951989841], [121.190185525167, 18.6046013852398], [121.184692361105, 18.6046013852398], [121.184692361105, 18.5993951989841]]]]}, "properties": {"taskId": 3756, "taskX": 54829, "taskY": 36215, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.173706032982, 18.5941888535266], [121.179199197044, 18.5941888535266], [121.179199197044, 18.5993951989841], [121.173706032982, 18.5993951989841], [121.173706032982, 18.5941888535266]]]]}, "properties": {"taskId": 3759, "taskX": 54827, "taskY": 36214, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.069091775009, 18.3232404572731], [122.080078103132, 18.3232404572731], [122.080078103132, 18.3336694425994], [122.069091775009, 18.3336694425994], [122.069091775009, 18.3232404572731]]]]}, "properties": {"taskId": 3912, "taskX": 27495, "taskY": 18081, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.1458517685528], [121.574707009473, 18.1458517685528], [121.574707009473, 18.1667304070769], [121.552734353227, 18.1667304070769], [121.552734353227, 18.1458517685528]]]]}, "properties": {"taskId": 3849, "taskX": 13724, "taskY": 9032, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.228637673597, 18.568154739547], [121.234130837659, 18.568154739547], [121.234130837659, 18.5733618804414], [121.228637673597, 18.5733618804414], [121.228637673597, 18.568154739547]]]]}, "properties": {"taskId": 3860, "taskX": 54837, "taskY": 36209, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.231384255628, 18.5629474396796], [121.234130837659, 18.5629474396796], [121.234130837659, 18.5655511094825], [121.231384255628, 18.5655511094825], [121.231384255628, 18.5629474396796]]]]}, "properties": {"taskId": 3863, "taskX": 109675, "taskY": 72416, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.8637470813091], [121.739501931318, 17.8637470813091], [121.739501931318, 17.8742034365596], [121.728515603195, 17.8742034365596], [121.728515603195, 17.8637470813091]]]]}, "properties": {"taskId": 3866, "taskX": 27464, "taskY": 18037, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.0205276547308], [121.739501931318, 18.0205276547308], [121.739501931318, 18.0309747467668], [121.728515603195, 18.0309747467668], [121.728515603195, 18.0205276547308]]]]}, "properties": {"taskId": 3929, "taskX": 27464, "taskY": 18052, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 18.0309747467668], [121.750488259441, 18.0309747467668], [121.750488259441, 18.0414212187671], [121.739501931318, 18.0414212187671], [121.739501931318, 18.0309747467668]]]]}, "properties": {"taskId": 3932, "taskX": 27465, "taskY": 18053, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.173706032982, 18.6046013852398], [121.175079323998, 18.6046013852398], [121.175079323998, 18.605902906924], [121.173706032982, 18.605902906924], [121.173706032982, 18.6046013852398]]]]}, "properties": {"taskId": 3813, "taskX": 219308, "taskY": 144864, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 17.8585186730187], [121.613159157903, 17.8585186730187], [121.613159157903, 17.8637470813091], [121.607665993842, 17.8637470813091], [121.607665993842, 17.8585186730187]]]]}, "properties": {"taskId": 3622, "taskX": 54906, "taskY": 36073, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.175079323998, 18.605902906924], [121.176452615013, 18.605902906924], [121.176452615013, 18.6072044186551], [121.175079323998, 18.6072044186551], [121.175079323998, 18.605902906924]]]]}, "properties": {"taskId": 3816, "taskX": 219309, "taskY": 144865, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.799926735995, 17.6440220248121], [121.805419900056, 17.6440220248121], [121.805419900056, 17.6492567037506], [121.799926735995, 17.6492567037506], [121.799926735995, 17.6440220248121]]]]}, "properties": {"taskId": 3683, "taskX": 54941, "taskY": 36032, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.937255837533, 20.4064204714195], [121.942749001594, 20.4064204714195], [121.942749001594, 20.4115688145028], [121.937255837533, 20.4115688145028], [121.937255837533, 20.4064204714195]]]]}, "properties": {"taskId": 3721, "taskX": 54966, "taskY": 36564, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.942749001594, 20.4115688145028], [121.948242165656, 20.4115688145028], [121.948242165656, 20.4167169854434], [121.942749001594, 20.4167169854434], [121.942749001594, 20.4115688145028]]]]}, "properties": {"taskId": 3724, "taskX": 54967, "taskY": 36565, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 17.8532901110035], [121.613159157903, 17.8532901110035], [121.613159157903, 17.8585186730187], [121.607665993842, 17.8585186730187], [121.607665993842, 17.8532901110035]]]]}, "properties": {"taskId": 3621, "taskX": 54906, "taskY": 36072, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.613159157903, 17.8585186730187], [121.618652321965, 17.8585186730187], [121.618652321965, 17.8637470813091], [121.613159157903, 17.8637470813091], [121.613159157903, 17.8585186730187]]]]}, "properties": {"taskId": 3624, "taskX": 54907, "taskY": 36073, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.175079323998, 18.6046013852398], [121.176452615013, 18.6046013852398], [121.176452615013, 18.605902906924], [121.175079323998, 18.605902906924], [121.175079323998, 18.6046013852398]]]]}, "properties": {"taskId": 3815, "taskX": 219309, "taskY": 144864, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.6440220248121], [121.799926735995, 17.6440220248121], [121.799926735995, 17.6492567037506], [121.794433571933, 17.6492567037506], [121.794433571933, 17.6440220248121]]]]}, "properties": {"taskId": 3681, "taskX": 54940, "taskY": 36032, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.799926735995, 17.6492567037506], [121.805419900056, 17.6492567037506], [121.805419900056, 17.6544912305301], [121.799926735995, 17.6544912305301], [121.799926735995, 17.6492567037506]]]]}, "properties": {"taskId": 3684, "taskX": 54941, "taskY": 36033, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.942749001594, 20.4064204714195], [121.948242165656, 20.4064204714195], [121.948242165656, 20.4115688145028], [121.942749001594, 20.4115688145028], [121.942749001594, 20.4064204714195]]]]}, "properties": {"taskId": 3723, "taskX": 54967, "taskY": 36564, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.518344184812], [121.750488259441, 17.518344184812], [121.750488259441, 17.5392965531931], [121.728515603195, 17.5392965531931], [121.728515603195, 17.518344184812]]]]}, "properties": {"taskId": 3589, "taskX": 13732, "taskY": 9002, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.635131814149, 17.8872730152265], [121.63787839618, 17.8872730152265], [121.63787839618, 17.8898868155249], [121.635131814149, 17.8898868155249], [121.635131814149, 17.8872730152265]]]]}, "properties": {"taskId": 3650, "taskX": 109822, "taskY": 72157, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 17.9996316117937], [121.574707009473, 17.9996316117937], [121.574707009473, 18.0100799429696], [121.56372068135, 18.0100799429696], [121.56372068135, 17.9996316117937]]]]}, "properties": {"taskId": 3839, "taskX": 27449, "taskY": 18050, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.6518739861627], [121.797180153964, 17.6518739861627], [121.797180153964, 17.6544912305301], [121.794433571933, 17.6544912305301], [121.794433571933, 17.6518739861627]]]]}, "properties": {"taskId": 3690, "taskX": 109880, "taskY": 72067, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.173706032982, 18.6124103660366], [121.176452615013, 18.6124103660366], [121.176452615013, 18.6150132799934], [121.173706032982, 18.6150132799934], [121.173706032982, 18.6124103660366]]]]}, "properties": {"taskId": 3766, "taskX": 109654, "taskY": 72435, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 18.0832009002027], [121.618652321965, 18.0832009002027], [121.618652321965, 18.0936442673693], [121.607665993842, 18.0936442673693], [121.607665993842, 18.0832009002027]]]]}, "properties": {"taskId": 3707, "taskX": 27453, "taskY": 18058, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.609039284857, 18.067534684074], [121.610412575873, 18.067534684074], [121.610412575873, 18.0688402554769], [121.609039284857, 18.0688402554769], [121.609039284857, 18.067534684074]]]]}, "properties": {"taskId": 3715, "taskX": 219625, "taskY": 144452, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 18.6124103660366], [121.159973122828, 18.6124103660366], [121.159973122828, 18.6150132799934], [121.157226540798, 18.6150132799934], [121.157226540798, 18.6124103660366]]]]}, "properties": {"taskId": 3774, "taskX": 109648, "taskY": 72435, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 18.1771687903979], [121.585693337596, 18.1771687903979], [121.585693337596, 18.1876065493462], [121.574707009473, 18.1876065493462], [121.574707009473, 18.1771687903979]]]]}, "properties": {"taskId": 3854, "taskX": 27450, "taskY": 18067, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.151733376736, 18.5733618804414], [121.157226540798, 18.5733618804414], [121.157226540798, 18.5785688623248], [121.151733376736, 18.5785688623248], [121.151733376736, 18.5733618804414]]]]}, "properties": {"taskId": 3739, "taskX": 54823, "taskY": 36210, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.16546628689, 18.6124103660366], [121.168212868921, 18.6124103660366], [121.168212868921, 18.6150132799934], [121.16546628689, 18.6150132799934], [121.16546628689, 18.6124103660366]]]]}, "properties": {"taskId": 3792, "taskX": 109651, "taskY": 72435, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 18.5889823489055], [121.162719704859, 18.5889823489055], [121.162719704859, 18.5941888535266], [121.157226540798, 18.5941888535266], [121.157226540798, 18.5889823489055]]]]}, "properties": {"taskId": 3750, "taskX": 54824, "taskY": 36213, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.365966775135, 17.8611328963819], [121.368713357166, 17.8611328963819], [121.368713357166, 17.8637470813091], [121.365966775135, 17.8637470813091], [121.365966775135, 17.8611328963819]]]]}, "properties": {"taskId": 3810, "taskX": 109724, "taskY": 72147, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.162719704859, 18.6124103660366], [121.16546628689, 18.6124103660366], [121.16546628689, 18.6150132799934], [121.162719704859, 18.6150132799934], [121.162719704859, 18.6124103660366]]]]}, "properties": {"taskId": 3790, "taskX": 109650, "taskY": 72435, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.63787839618, 17.8846591764432], [121.640624978211, 17.8846591764432], [121.640624978211, 17.8872730152265], [121.63787839618, 17.8872730152265], [121.63787839618, 17.8846591764432]]]]}, "properties": {"taskId": 3651, "taskX": 109823, "taskY": 72156, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 17.6126107580436], [121.519775368858, 17.6126107580436], [121.519775368858, 17.6230817882545], [121.508789040735, 17.6230817882545], [121.508789040735, 17.6126107580436]]]]}, "properties": {"taskId": 3938, "taskX": 27444, "taskY": 18013, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 18.5837756851588], [121.162719704859, 18.5837756851588], [121.162719704859, 18.5889823489055], [121.157226540798, 18.5889823489055], [121.157226540798, 18.5837756851588]]]]}, "properties": {"taskId": 3749, "taskX": 54824, "taskY": 36212, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.6492567037506], [121.797180153964, 17.6492567037506], [121.797180153964, 17.6518739861627], [121.794433571933, 17.6518739861627], [121.794433571933, 17.6492567037506]]]]}, "properties": {"taskId": 3689, "taskX": 109880, "taskY": 72066, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.797180153964, 17.6518739861627], [121.799926735995, 17.6518739861627], [121.799926735995, 17.6544912305301], [121.797180153964, 17.6544912305301], [121.797180153964, 17.6518739861627]]]]}, "properties": {"taskId": 3692, "taskX": 109881, "taskY": 72067, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.162719704859, 18.5889823489055], [121.168212868921, 18.5889823489055], [121.168212868921, 18.5941888535266], [121.162719704859, 18.5941888535266], [121.162719704859, 18.5889823489055]]]]}, "properties": {"taskId": 3752, "taskX": 54825, "taskY": 36213, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.6963619623342], [121.772460915687, 17.6963619623342], [121.772460915687, 17.7068281209488], [121.761474587564, 17.7068281209488], [121.761474587564, 17.6963619623342]]]]}, "properties": {"taskId": 3700, "taskX": 27467, "taskY": 18021, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.0936442673693], [121.607665993842, 18.0936442673693], [121.607665993842, 18.104087012639], [121.596679665719, 18.104087012639], [121.596679665719, 18.0936442673693]]]]}, "properties": {"taskId": 3706, "taskX": 27452, "taskY": 18059, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.365966775135, 17.8585186730187], [121.368713357166, 17.8585186730187], [121.368713357166, 17.8611328963819], [121.365966775135, 17.8611328963819], [121.365966775135, 17.8585186730187]]]]}, "properties": {"taskId": 3809, "taskX": 109724, "taskY": 72146, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.368713357166, 17.8611328963819], [121.371459939197, 17.8611328963819], [121.371459939197, 17.8637470813091], [121.368713357166, 17.8637470813091], [121.368713357166, 17.8611328963819]]]]}, "properties": {"taskId": 3812, "taskX": 109725, "taskY": 72147, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.157226540798, 18.6098074122556], [121.159973122828, 18.6098074122556], [121.159973122828, 18.6124103660366], [121.157226540798, 18.6124103660366], [121.157226540798, 18.6098074122556]]]]}, "properties": {"taskId": 3773, "taskX": 109648, "taskY": 72434, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.146240212675, 18.5785688623248], [121.151733376736, 18.5785688623248], [121.151733376736, 18.5837756851588], [121.146240212675, 18.5837756851588], [121.146240212675, 18.5785688623248]]]]}, "properties": {"taskId": 3738, "taskX": 54822, "taskY": 36211, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.159973122828, 18.6124103660366], [121.162719704859, 18.6124103660366], [121.162719704859, 18.6150132799934], [121.159973122828, 18.6150132799934], [121.159973122828, 18.6124103660366]]]]}, "properties": {"taskId": 3776, "taskX": 109649, "taskY": 72435, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.0100799429696], [121.56372068135, 18.0100799429696], [121.56372068135, 18.0205276547308], [121.552734353227, 18.0205276547308], [121.552734353227, 18.0100799429696]]]]}, "properties": {"taskId": 3838, "taskX": 27448, "taskY": 18051, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 18.1667304070769], [121.585693337596, 18.1667304070769], [121.585693337596, 18.1771687903979], [121.574707009473, 18.1771687903979], [121.574707009473, 18.1667304070769]]]]}, "properties": {"taskId": 3853, "taskX": 27450, "taskY": 18066, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 18.1771687903979], [121.596679665719, 18.1771687903979], [121.596679665719, 18.1876065493462], [121.585693337596, 18.1876065493462], [121.585693337596, 18.1771687903979]]]]}, "properties": {"taskId": 3856, "taskX": 27451, "taskY": 18067, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 18.0205276547308], [121.728515603195, 18.0205276547308], [121.728515603195, 18.0414212187671], [121.706542946949, 18.0414212187671], [121.706542946949, 18.0205276547308]]]]}, "properties": {"taskId": 3927, "taskX": 13731, "taskY": 9026, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.5288206715107], [121.761474587564, 17.5288206715107], [121.761474587564, 17.5392965531931], [121.750488259441, 17.5392965531931], [121.750488259441, 17.5288206715107]]]]}, "properties": {"taskId": 3594, "taskX": 27466, "taskY": 18005, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.613159157903, 18.1484617347976], [121.615905739934, 18.1484617347976], [121.615905739934, 18.1510716620724], [121.613159157903, 18.1510716620724], [121.613159157903, 18.1484617347976]]]]}, "properties": {"taskId": 3638, "taskX": 109814, "taskY": 72257, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.60835263935, 18.0688402554769], [121.609039284857, 18.0688402554769], [121.609039284857, 18.0694930375387], [121.60835263935, 18.0694930375387], [121.60835263935, 18.0688402554769]]]]}, "properties": {"taskId": 3719, "taskX": 439249, "taskY": 288906, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 18.5212833222942], [121.256103493905, 18.5212833222942], [121.256103493905, 18.5317003041803], [121.245117165782, 18.5317003041803], [121.245117165782, 18.5212833222942]]]]}, "properties": {"taskId": 3793, "taskX": 27420, "taskY": 18100, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.8532901110035], [121.607665993842, 17.8532901110035], [121.607665993842, 17.8637470813091], [121.596679665719, 17.8637470813091], [121.596679665719, 17.8532901110035]]]]}, "properties": {"taskId": 3601, "taskX": 27452, "taskY": 18036, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 17.8637470813091], [121.618652321965, 17.8637470813091], [121.618652321965, 17.8742034365596], [121.607665993842, 17.8742034365596], [121.607665993842, 17.8637470813091]]]]}, "properties": {"taskId": 3604, "taskX": 27453, "taskY": 18037, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.091064431255, 18.3128108432568], [122.102050759378, 18.3128108432568], [122.102050759378, 18.3232404572731], [122.091064431255, 18.3232404572731], [122.091064431255, 18.3128108432568]]]]}, "properties": {"taskId": 3627, "taskX": 27497, "taskY": 18080, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.8637470813091], [121.607665993842, 17.8637470813091], [121.607665993842, 17.8742034365596], [121.596679665719, 17.8742034365596], [121.596679665719, 17.8637470813091]]]]}, "properties": {"taskId": 3602, "taskX": 27452, "taskY": 18037, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.080078103132, 18.3232404572731], [122.091064431255, 18.3232404572731], [122.091064431255, 18.3336694425994], [122.080078103132, 18.3336694425994], [122.080078103132, 18.3232404572731]]]]}, "properties": {"taskId": 3626, "taskX": 27496, "taskY": 18081, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.503295876673, 18.4118667620183], [121.506042458704, 18.4118667620183], [121.506042458704, 18.4144727284777], [121.503295876673, 18.4144727284777], [121.503295876673, 18.4118667620183]]]]}, "properties": {"taskId": 3605, "taskX": 109774, "taskY": 72358, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.506042458704, 18.4144727284777], [121.508789040735, 18.4144727284777], [121.508789040735, 18.4170786554759], [121.506042458704, 18.4170786554759], [121.506042458704, 18.4144727284777]]]]}, "properties": {"taskId": 3608, "taskX": 109775, "taskY": 72359, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.606292702827, 18.067534684074], [121.607665993842, 18.067534684074], [121.607665993842, 18.0688402554769], [121.606292702827, 18.0688402554769], [121.606292702827, 18.067534684074]]]]}, "properties": {"taskId": 3611, "taskX": 219623, "taskY": 144452, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.7277586067781], [121.640624978211, 17.7277586067781], [121.640624978211, 17.7486866486513], [121.618652321965, 17.7486866486513], [121.618652321965, 17.7277586067781]]]]}, "properties": {"taskId": 3619, "taskX": 13727, "taskY": 9012, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 18.156291399692], [121.618652321965, 18.156291399692], [121.618652321965, 18.1667304070769], [121.607665993842, 18.1667304070769], [121.607665993842, 18.156291399692]]]]}, "properties": {"taskId": 3632, "taskX": 27453, "taskY": 18065, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.503295876673, 18.4144727284777], [121.506042458704, 18.4144727284777], [121.506042458704, 18.4170786554759], [121.503295876673, 18.4170786554759], [121.503295876673, 18.4144727284777]]]]}, "properties": {"taskId": 3606, "taskX": 109774, "taskY": 72359, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.604919411811, 18.0688402554769], [121.606292702827, 18.0688402554769], [121.606292702827, 18.070145817174], [121.604919411811, 18.070145817174], [121.604919411811, 18.0688402554769]]]]}, "properties": {"taskId": 3610, "taskX": 219622, "taskY": 144453, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.7486866486513], [121.618652321965, 17.7486866486513], [121.618652321965, 17.7696122440617], [121.596679665719, 17.7696122440617], [121.596679665719, 17.7486866486513]]]]}, "properties": {"taskId": 3618, "taskX": 13726, "taskY": 9013, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.506042458704, 18.4118667620183], [121.508789040735, 18.4118667620183], [121.508789040735, 18.4144727284777], [121.506042458704, 18.4144727284777], [121.506042458704, 18.4118667620183]]]]}, "properties": {"taskId": 3607, "taskX": 109775, "taskY": 72358, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.604919411811, 18.067534684074], [121.606292702827, 18.067534684074], [121.606292702827, 18.0688402554769], [121.604919411811, 18.0688402554769], [121.604919411811, 18.067534684074]]]]}, "properties": {"taskId": 3609, "taskX": 219622, "taskY": 144452, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.7277586067781], [121.618652321965, 17.7277586067781], [121.618652321965, 17.7486866486513], [121.596679665719, 17.7486866486513], [121.596679665719, 17.7277586067781]]]]}, "properties": {"taskId": 3617, "taskX": 13726, "taskY": 9012, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.7486866486513], [121.640624978211, 17.7486866486513], [121.640624978211, 17.7696122440617], [121.618652321965, 17.7696122440617], [121.618652321965, 17.7486866486513]]]]}, "properties": {"taskId": 3620, "taskX": 13727, "taskY": 9013, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 18.156291399692], [121.607665993842, 18.156291399692], [121.607665993842, 18.1667304070769], [121.596679665719, 18.1667304070769], [121.596679665719, 18.156291399692]]]]}, "properties": {"taskId": 3630, "taskX": 27452, "taskY": 18065, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 18.1458517685528], [121.613159157903, 18.1458517685528], [121.613159157903, 18.1510716620724], [121.607665993842, 18.1510716620724], [121.607665993842, 18.1458517685528]]]]}, "properties": {"taskId": 3633, "taskX": 54906, "taskY": 36128, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.613159157903, 18.1510716620724], [121.618652321965, 18.1510716620724], [121.618652321965, 18.156291399692], [121.613159157903, 18.156291399692], [121.613159157903, 18.1510716620724]]]]}, "properties": {"taskId": 3636, "taskX": 54907, "taskY": 36129, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 17.8898868155249], [121.635131814149, 17.8898868155249], [121.635131814149, 17.8951143006479], [121.629638650088, 17.8951143006479], [121.629638650088, 17.8898868155249]]]]}, "properties": {"taskId": 3646, "taskX": 54910, "taskY": 36079, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.61727903095, 18.1484617347976], [121.618652321965, 18.1484617347976], [121.618652321965, 18.1497667033066], [121.61727903095, 18.1497667033066], [121.61727903095, 18.1484617347976]]]]}, "properties": {"taskId": 3643, "taskX": 219631, "taskY": 144514, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 18.1510716620724], [121.613159157903, 18.1510716620724], [121.613159157903, 18.156291399692], [121.607665993842, 18.156291399692], [121.607665993842, 18.1510716620724]]]]}, "properties": {"taskId": 3634, "taskX": 54906, "taskY": 36129, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.615905739934, 18.1484617347976], [121.61727903095, 18.1484617347976], [121.61727903095, 18.1497667033066], [121.615905739934, 18.1497667033066], [121.615905739934, 18.1484617347976]]]]}, "properties": {"taskId": 3641, "taskX": 219630, "taskY": 144514, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.61727903095, 18.1497667033066], [121.618652321965, 18.1497667033066], [121.618652321965, 18.1510716620724], [121.61727903095, 18.1510716620724], [121.61727903095, 18.1497667033066]]]]}, "properties": {"taskId": 3644, "taskX": 219631, "taskY": 144515, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.615905739934, 18.1497667033066], [121.61727903095, 18.1497667033066], [121.61727903095, 18.1510716620724], [121.615905739934, 18.1510716620724], [121.615905739934, 18.1497667033066]]]]}, "properties": {"taskId": 3642, "taskX": 219630, "taskY": 144515, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 17.8846591764432], [121.635131814149, 17.8846591764432], [121.635131814149, 17.8898868155249], [121.629638650088, 17.8898868155249], [121.629638650088, 17.8846591764432]]]]}, "properties": {"taskId": 3645, "taskX": 54910, "taskY": 36078, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 17.8742034365596], [121.632385232119, 17.8742034365596], [121.632385232119, 17.8768174292334], [121.629638650088, 17.8768174292334], [121.629638650088, 17.8742034365596]]]]}, "properties": {"taskId": 3657, "taskX": 109820, "taskY": 72152, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.632385232119, 17.8742034365596], [121.635131814149, 17.8742034365596], [121.635131814149, 17.8768174292334], [121.632385232119, 17.8768174292334], [121.632385232119, 17.8742034365596]]]]}, "properties": {"taskId": 3659, "taskX": 109821, "taskY": 72152, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.805419900056, 17.6440220248121], [121.81640622818, 17.6440220248121], [121.81640622818, 17.6544912305301], [121.805419900056, 17.6544912305301], [121.805419900056, 17.6440220248121]]]]}, "properties": {"taskId": 3679, "taskX": 27471, "taskY": 18016, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.168212868921, 18.605902906924], [121.169586159936, 18.605902906924], [121.169586159936, 18.6072044186551], [121.168212868921, 18.6072044186551], [121.168212868921, 18.605902906924]]]]}, "properties": {"taskId": 3818, "taskX": 219304, "taskY": 144865, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.267089822028, 18.5212833222942], [121.272582986089, 18.5212833222942], [121.272582986089, 18.526491892571], [121.267089822028, 18.526491892571], [121.267089822028, 18.5212833222942]]]]}, "properties": {"taskId": 3889, "taskX": 54844, "taskY": 36200, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 18.0100799429696], [121.585693337596, 18.0100799429696], [121.585693337596, 18.0205276547308], [121.574707009473, 18.0205276547308], [121.574707009473, 18.0100799429696]]]]}, "properties": {"taskId": 3842, "taskX": 27450, "taskY": 18051, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.272582986089, 18.526491892571], [121.278076150151, 18.526491892571], [121.278076150151, 18.5317003041803], [121.272582986089, 18.5317003041803], [121.272582986089, 18.526491892571]]]]}, "properties": {"taskId": 3892, "taskX": 54845, "taskY": 36201, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.8219155128794], [121.723022439134, 17.8219155128794], [121.723022439134, 17.8271449964232], [121.717529275072, 17.8271449964232], [121.717529275072, 17.8219155128794]]]]}, "properties": {"taskId": 3873, "taskX": 54926, "taskY": 36066, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.723022439134, 17.8271449964232], [121.728515603195, 17.8271449964232], [121.728515603195, 17.8323743264764], [121.723022439134, 17.8323743264764], [121.723022439134, 17.8271449964232]]]]}, "properties": {"taskId": 3876, "taskX": 54927, "taskY": 36067, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 17.8768174292334], [121.632385232119, 17.8768174292334], [121.632385232119, 17.8794313834418], [121.629638650088, 17.8794313834418], [121.629638650088, 17.8768174292334]]]]}, "properties": {"taskId": 3658, "taskX": 109820, "taskY": 72153, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.632385232119, 17.8768174292334], [121.635131814149, 17.8768174292334], [121.635131814149, 17.8794313834418], [121.632385232119, 17.8794313834418], [121.632385232119, 17.8768174292334]]]]}, "properties": {"taskId": 3660, "taskX": 109821, "taskY": 72153, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.6361697211924], [121.720275857103, 17.6361697211924], [121.720275857103, 17.638787193754], [121.717529275072, 17.638787193754], [121.717529275072, 17.6361697211924]]]]}, "properties": {"taskId": 3670, "taskX": 109852, "taskY": 72061, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.169586159936, 18.6046013852398], [121.170959450951, 18.6046013852398], [121.170959450951, 18.605902906924], [121.169586159936, 18.605902906924], [121.169586159936, 18.6046013852398]]]]}, "properties": {"taskId": 3819, "taskX": 219305, "taskY": 144864, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.805419900056, 17.6544912305301], [121.81640622818, 17.6544912305301], [121.81640622818, 17.6649598274553], [121.805419900056, 17.6649598274553], [121.805419900056, 17.6544912305301]]]]}, "properties": {"taskId": 3680, "taskX": 27471, "taskY": 18017, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.272582986089, 18.5212833222942], [121.278076150151, 18.5212833222942], [121.278076150151, 18.526491892571], [121.272582986089, 18.526491892571], [121.272582986089, 18.5212833222942]]]]}, "properties": {"taskId": 3891, "taskX": 54845, "taskY": 36200, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 17.9996316117937], [121.596679665719, 17.9996316117937], [121.596679665719, 18.0100799429696], [121.585693337596, 18.0100799429696], [121.585693337596, 17.9996316117937]]]]}, "properties": {"taskId": 3843, "taskX": 27451, "taskY": 18050, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.8271449964232], [121.723022439134, 17.8271449964232], [121.723022439134, 17.8323743264764], [121.717529275072, 17.8323743264764], [121.717529275072, 17.8271449964232]]]]}, "properties": {"taskId": 3874, "taskX": 54926, "taskY": 36067, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 17.9787330924414], [121.596679665719, 17.9787330924414], [121.596679665719, 17.9891826615141], [121.585693337596, 17.9891826615141], [121.585693337596, 17.9787330924414]]]]}, "properties": {"taskId": 3847, "taskX": 27451, "taskY": 18048, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.522521950888, 17.6047570866729], [121.523895241904, 17.6047570866729], [121.523895241904, 17.6060660556276], [121.522521950888, 17.6060660556276], [121.522521950888, 17.6047570866729]]]]}, "properties": {"taskId": 3949, "taskX": 219562, "taskY": 144098, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.523895241904, 17.6060660556276], [121.525268532919, 17.6060660556276], [121.525268532919, 17.6073750150926], [121.523895241904, 17.6073750150926], [121.523895241904, 17.6060660556276]]]]}, "properties": {"taskId": 3952, "taskX": 219563, "taskY": 144099, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.827392556303, 18.0414212187671], [121.838378884426, 18.0414212187671], [121.838378884426, 18.0518670704211], [121.827392556303, 18.0518670704211], [121.827392556303, 18.0414212187671]]]]}, "properties": {"taskId": 3663, "taskX": 27473, "taskY": 18054, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.821899392241, 18.0414212187671], [121.827392556303, 18.0414212187671], [121.827392556303, 18.0466442221567], [121.821899392241, 18.0466442221567], [121.821899392241, 18.0414212187671]]]]}, "properties": {"taskId": 3727, "taskX": 54945, "taskY": 36108, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.3858049281171], [121.475830056365, 18.3858049281171], [121.475830056365, 18.3962301348468], [121.464843728242, 18.3962301348468], [121.464843728242, 18.3858049281171]]]]}, "properties": {"taskId": 3806, "taskX": 27440, "taskY": 18087, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 18.0518670704211], [121.827392556303, 18.0518670704211], [121.827392556303, 18.0623123014185], [121.81640622818, 18.0623123014185], [121.81640622818, 18.0518670704211]]]]}, "properties": {"taskId": 3662, "taskX": 27472, "taskY": 18055, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.827392556303, 18.0518670704211], [121.838378884426, 18.0518670704211], [121.838378884426, 18.0623123014185], [121.827392556303, 18.0623123014185], [121.827392556303, 18.0518670704211]]]]}, "properties": {"taskId": 3664, "taskX": 27473, "taskY": 18055, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 18.0466442221567], [121.821899392241, 18.0466442221567], [121.821899392241, 18.0518670704211], [121.81640622818, 18.0518670704211], [121.81640622818, 18.0466442221567]]]]}, "properties": {"taskId": 3726, "taskX": 54944, "taskY": 36109, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.475830056365, 18.3753790908532], [121.486816384489, 18.3753790908532], [121.486816384489, 18.3858049281171], [121.475830056365, 18.3858049281171], [121.475830056365, 18.3753790908532]]]]}, "properties": {"taskId": 3807, "taskX": 27441, "taskY": 18086, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 17.9891826615141], [121.585693337596, 17.9891826615141], [121.585693337596, 17.9996316117937], [121.574707009473, 17.9996316117937], [121.574707009473, 17.9891826615141]]]]}, "properties": {"taskId": 3846, "taskX": 27450, "taskY": 18049, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.162719704859, 18.6085059204325], [121.164092995874, 18.6085059204325], [121.164092995874, 18.6098074122556], [121.162719704859, 18.6098074122556], [121.162719704859, 18.6085059204325]]]]}, "properties": {"taskId": 3898, "taskX": 219300, "taskY": 144867, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.217651345474, 18.5629474396796], [121.223144509536, 18.5629474396796], [121.223144509536, 18.568154739547], [121.217651345474, 18.568154739547], [121.217651345474, 18.5629474396796]]]]}, "properties": {"taskId": 3879, "taskX": 54835, "taskY": 36208, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.146240212675, 18.5993951989841], [121.151733376736, 18.5993951989841], [121.151733376736, 18.6046013852398], [121.146240212675, 18.6046013852398], [121.146240212675, 18.5993951989841]]]]}, "properties": {"taskId": 3734, "taskX": 54822, "taskY": 36215, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 18.1458517685528], [121.596679665719, 18.1458517685528], [121.596679665719, 18.1667304070769], [121.574707009473, 18.1667304070769], [121.574707009473, 18.1458517685528]]]]}, "properties": {"taskId": 3851, "taskX": 13725, "taskY": 9032, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.184692361105, 18.5941888535266], [121.190185525167, 18.5941888535266], [121.190185525167, 18.5993951989841], [121.184692361105, 18.5993951989841], [121.184692361105, 18.5941888535266]]]]}, "properties": {"taskId": 3755, "taskX": 54829, "taskY": 36214, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.168212868921, 18.5941888535266], [121.173706032982, 18.5941888535266], [121.173706032982, 18.5993951989841], [121.168212868921, 18.5993951989841], [121.168212868921, 18.5941888535266]]]]}, "properties": {"taskId": 3757, "taskX": 54826, "taskY": 36214, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.173706032982, 18.5993951989841], [121.179199197044, 18.5993951989841], [121.179199197044, 18.6046013852398], [121.173706032982, 18.6046013852398], [121.173706032982, 18.5993951989841]]]]}, "properties": {"taskId": 3760, "taskX": 54827, "taskY": 36215, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.176452615013, 18.6072044186551], [121.179199197044, 18.6072044186551], [121.179199197044, 18.6098074122556], [121.176452615013, 18.6098074122556], [121.176452615013, 18.6072044186551]]]]}, "properties": {"taskId": 3784, "taskX": 109655, "taskY": 72433, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.871337868795, 17.9160227007731], [121.882324196918, 17.9160227007731], [121.882324196918, 17.9264759760701], [121.871337868795, 17.9264759760701], [121.871337868795, 17.9160227007731]]]]}, "properties": {"taskId": 3827, "taskX": 27477, "taskY": 18042, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.223144509536, 18.568154739547], [121.228637673597, 18.568154739547], [121.228637673597, 18.5733618804414], [121.223144509536, 18.5733618804414], [121.223144509536, 18.568154739547]]]]}, "properties": {"taskId": 3858, "taskX": 54836, "taskY": 36209, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.228637673597, 18.5655511094825], [121.231384255628, 18.5655511094825], [121.231384255628, 18.568154739547], [121.228637673597, 18.568154739547], [121.228637673597, 18.5655511094825]]]]}, "properties": {"taskId": 3862, "taskX": 109674, "taskY": 72417, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.8532901110035], [121.739501931318, 17.8532901110035], [121.739501931318, 17.8637470813091], [121.728515603195, 17.8637470813091], [121.728515603195, 17.8532901110035]]]]}, "properties": {"taskId": 3865, "taskX": 27464, "taskY": 18036, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 17.8637470813091], [121.750488259441, 17.8637470813091], [121.750488259441, 17.8742034365596], [121.739501931318, 17.8742034365596], [121.739501931318, 17.8637470813091]]]]}, "properties": {"taskId": 3868, "taskX": 27465, "taskY": 18037, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.058105446886, 18.3232404572731], [122.069091775009, 18.3232404572731], [122.069091775009, 18.3336694425994], [122.058105446886, 18.3336694425994], [122.058105446886, 18.3232404572731]]]]}, "properties": {"taskId": 3910, "taskX": 27494, "taskY": 18081, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.058105446886, 18.3128108432568], [122.063598610948, 18.3128108432568], [122.063598610948, 18.318025728832], [122.058105446886, 18.318025728832], [122.058105446886, 18.3128108432568]]]]}, "properties": {"taskId": 3913, "taskX": 54988, "taskY": 36160, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[122.063598610948, 18.318025728832], [122.069091775009, 18.318025728832], [122.069091775009, 18.3232404572731], [122.063598610948, 18.3232404572731], [122.063598610948, 18.318025728832]]]]}, "properties": {"taskId": 3916, "taskX": 54989, "taskY": 36161, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 18.0309747467668], [121.739501931318, 18.0309747467668], [121.739501931318, 18.0414212187671], [121.728515603195, 18.0414212187671], [121.728515603195, 18.0309747467668]]]]}, "properties": {"taskId": 3930, "taskX": 27464, "taskY": 18053, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.6335522106155], [121.720275857103, 17.6335522106155], [121.720275857103, 17.6361697211924], [121.717529275072, 17.6361697211924], [121.717529275072, 17.6335522106155]]]]}, "properties": {"taskId": 3669, "taskX": 109852, "taskY": 72060, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.720275857103, 17.6361697211924], [121.723022439134, 17.6361697211924], [121.723022439134, 17.638787193754], [121.720275857103, 17.638787193754], [121.720275857103, 17.6361697211924]]]]}, "properties": {"taskId": 3672, "taskX": 109853, "taskY": 72061, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.6544912305301], [121.805419900056, 17.6544912305301], [121.805419900056, 17.6649598274553], [121.794433571933, 17.6649598274553], [121.794433571933, 17.6544912305301]]]]}, "properties": {"taskId": 3678, "taskX": 27470, "taskY": 18017, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.168212868921, 18.6046013852398], [121.169586159936, 18.6046013852398], [121.169586159936, 18.605902906924], [121.168212868921, 18.605902906924], [121.168212868921, 18.6046013852398]]]]}, "properties": {"taskId": 3817, "taskX": 219304, "taskY": 144864, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.169586159936, 18.605902906924], [121.170959450951, 18.605902906924], [121.170959450951, 18.6072044186551], [121.169586159936, 18.6072044186551], [121.169586159936, 18.605902906924]]]]}, "properties": {"taskId": 3820, "taskX": 219305, "taskY": 144865, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 17.9996316117937], [121.585693337596, 17.9996316117937], [121.585693337596, 18.0100799429696], [121.574707009473, 18.0100799429696], [121.574707009473, 17.9996316117937]]]]}, "properties": {"taskId": 3841, "taskX": 27450, "taskY": 18050, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 18.0100799429696], [121.596679665719, 18.0100799429696], [121.596679665719, 18.0205276547308], [121.585693337596, 18.0205276547308], [121.585693337596, 18.0100799429696]]]]}, "properties": {"taskId": 3844, "taskX": 27451, "taskY": 18051, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.723022439134, 17.8219155128794], [121.728515603195, 17.8219155128794], [121.728515603195, 17.8271449964232], [121.723022439134, 17.8271449964232], [121.723022439134, 17.8219155128794]]]]}, "properties": {"taskId": 3875, "taskX": 54927, "taskY": 36066, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.267089822028, 18.526491892571], [121.272582986089, 18.526491892571], [121.272582986089, 18.5317003041803], [121.267089822028, 18.5317003041803], [121.267089822028, 18.526491892571]]]]}, "properties": {"taskId": 3890, "taskX": 54844, "taskY": 36201, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.7068281209488], [121.739501931318, 17.7068281209488], [121.739501931318, 17.7172936692013], [121.728515603195, 17.7172936692013], [121.728515603195, 17.7068281209488]]]]}, "properties": {"taskId": 3673, "taskX": 27464, "taskY": 18022, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 17.7172936692013], [121.750488259441, 17.7172936692013], [121.750488259441, 17.7277586067781], [121.739501931318, 17.7277586067781], [121.739501931318, 17.7172936692013]]]]}, "properties": {"taskId": 3676, "taskX": 27465, "taskY": 18023, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.788940407872, 17.497389397627], [121.794433571933, 17.497389397627], [121.794433571933, 17.5026283210481], [121.788940407872, 17.5026283210481], [121.788940407872, 17.497389397627]]]]}, "properties": {"taskId": 3703, "taskX": 54939, "taskY": 36004, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 18.070145817174], [121.610412575873, 18.070145817174], [121.610412575873, 18.0727569114491], [121.607665993842, 18.0727569114491], [121.607665993842, 18.070145817174]]]]}, "properties": {"taskId": 3710, "taskX": 109812, "taskY": 72227, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.179199197044, 18.5889823489055], [121.184692361105, 18.5889823489055], [121.184692361105, 18.5941888535266], [121.179199197044, 18.5941888535266], [121.179199197044, 18.5889823489055]]]]}, "properties": {"taskId": 3742, "taskX": 54828, "taskY": 36213, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 18.2293513352315], [121.772460915687, 18.2293513352315], [121.772460915687, 18.2502199739071], [121.750488259441, 18.2502199739071], [121.750488259441, 18.2293513352315]]]]}, "properties": {"taskId": 3771, "taskX": 13733, "taskY": 9036, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.176452615013, 18.6098074122556], [121.179199197044, 18.6098074122556], [121.179199197044, 18.6124103660366], [121.176452615013, 18.6124103660366], [121.176452615013, 18.6098074122556]]]]}, "properties": {"taskId": 3767, "taskX": 109655, "taskY": 72434, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.256103493905, 18.5525323631785], [121.267089822028, 18.5525323631785], [121.267089822028, 18.5629474396796], [121.256103493905, 18.5629474396796], [121.256103493905, 18.5525323631785]]]]}, "properties": {"taskId": 3800, "taskX": 27421, "taskY": 18103, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 18.1458517685528], [121.508789040735, 18.1458517685528], [121.508789040735, 18.156291399692], [121.497802712612, 18.156291399692], [121.497802712612, 18.1458517685528]]]]}, "properties": {"taskId": 3935, "taskX": 27443, "taskY": 18064, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 18.0688402554769], [121.60835263935, 18.0688402554769], [121.60835263935, 18.0694930375387], [121.607665993842, 18.0694930375387], [121.607665993842, 18.0688402554769]]]]}, "properties": {"taskId": 3717, "taskX": 439248, "taskY": 288906, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.60835263935, 18.0694930375387], [121.609039284857, 18.0694930375387], [121.609039284857, 18.070145817174], [121.60835263935, 18.070145817174], [121.60835263935, 18.0694930375387]]]]}, "properties": {"taskId": 3720, "taskX": 439249, "taskY": 288907, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.170959450951, 18.605902906924], [121.172332741967, 18.605902906924], [121.172332741967, 18.6072044186551], [121.170959450951, 18.6072044186551], [121.170959450951, 18.605902906924]]]]}, "properties": {"taskId": 3822, "taskX": 219306, "taskY": 144865, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.085815407998, 18.6085059204325], [121.087188699013, 18.6085059204325], [121.087188699013, 18.6098074122556], [121.085815407998, 18.6098074122556], [121.085815407998, 18.6085059204325]]]]}, "properties": {"taskId": 3830, "taskX": 219244, "taskY": 144867, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.8114560854768], [121.728515603195, 17.8114560854768], [121.728515603195, 17.8219155128794], [121.717529275072, 17.8219155128794], [121.717529275072, 17.8114560854768]]]]}, "properties": {"taskId": 3871, "taskX": 27463, "taskY": 18032, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 18.5317003041803], [121.250610329843, 18.5317003041803], [121.250610329843, 18.5369085570839], [121.245117165782, 18.5369085570839], [121.245117165782, 18.5317003041803]]]]}, "properties": {"taskId": 3885, "taskX": 54840, "taskY": 36202, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 17.9787330924414], [121.585693337596, 17.9787330924414], [121.585693337596, 17.9891826615141], [121.574707009473, 17.9891826615141], [121.574707009473, 17.9787330924414]]]]}, "properties": {"taskId": 3845, "taskX": 27450, "taskY": 18048, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 17.9891826615141], [121.596679665719, 17.9891826615141], [121.596679665719, 17.9996316117937], [121.585693337596, 17.9996316117937], [121.585693337596, 17.9891826615141]]]]}, "properties": {"taskId": 3848, "taskX": 27451, "taskY": 18049, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.522521950888, 17.6060660556276], [121.523895241904, 17.6060660556276], [121.523895241904, 17.6073750150926], [121.522521950888, 17.6073750150926], [121.522521950888, 17.6060660556276]]]]}, "properties": {"taskId": 3950, "taskX": 219562, "taskY": 144099, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.777954079749, 17.5078670934123], [121.78070066178, 17.5078670934123], [121.78070066178, 17.5104864229357], [121.777954079749, 17.5104864229357], [121.777954079749, 17.5078670934123]]]]}, "properties": {"taskId": 3685, "taskX": 109874, "taskY": 72012, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78070066178, 17.5104864229357], [121.78344724381, 17.5104864229357], [121.78344724381, 17.5131057146801], [121.78070066178, 17.5131057146801], [121.78070066178, 17.5104864229357]]]]}, "properties": {"taskId": 3688, "taskX": 109875, "taskY": 72013, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 18.0414212187671], [121.821899392241, 18.0414212187671], [121.821899392241, 18.0466442221567], [121.81640622818, 18.0466442221567], [121.81640622818, 18.0414212187671]]]]}, "properties": {"taskId": 3725, "taskX": 54944, "taskY": 36108, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.821899392241, 18.0466442221567], [121.827392556303, 18.0466442221567], [121.827392556303, 18.0518670704211], [121.821899392241, 18.0518670704211], [121.821899392241, 18.0466442221567]]]]}, "properties": {"taskId": 3728, "taskX": 54945, "taskY": 36109, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.3753790908532], [121.475830056365, 18.3753790908532], [121.475830056365, 18.3858049281171], [121.464843728242, 18.3858049281171], [121.464843728242, 18.3753790908532]]]]}, "properties": {"taskId": 3805, "taskX": 27440, "taskY": 18086, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.475830056365, 18.3858049281171], [121.486816384489, 18.3858049281171], [121.486816384489, 18.3962301348468], [121.475830056365, 18.3962301348468], [121.475830056365, 18.3858049281171]]]]}, "properties": {"taskId": 3808, "taskX": 27441, "taskY": 18087, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.172332741967, 18.6046013852398], [121.173706032982, 18.6046013852398], [121.173706032982, 18.605902906924], [121.172332741967, 18.605902906924], [121.172332741967, 18.6046013852398]]]]}, "properties": {"taskId": 3823, "taskX": 219307, "taskY": 144864, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.085815407998, 18.6072044186551], [121.087188699013, 18.6072044186551], [121.087188699013, 18.6085059204325], [121.085815407998, 18.6085059204325], [121.085815407998, 18.6072044186551]]]]}, "properties": {"taskId": 3829, "taskX": 219244, "taskY": 144866, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.087188699013, 18.6085059204325], [121.088561990029, 18.6085059204325], [121.088561990029, 18.6098074122556], [121.087188699013, 18.6098074122556], [121.087188699013, 18.6085059204325]]]]}, "properties": {"taskId": 3832, "taskX": 219245, "taskY": 144867, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.8114560854768], [121.717529275072, 17.8114560854768], [121.717529275072, 17.8219155128794], [121.706542946949, 17.8219155128794], [121.706542946949, 17.8114560854768]]]]}, "properties": {"taskId": 3869, "taskX": 27462, "taskY": 18032, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.166839577905, 18.6072044186551], [121.168212868921, 18.6072044186551], [121.168212868921, 18.6085059204325], [121.166839577905, 18.6085059204325], [121.166839577905, 18.6072044186551]]]]}, "properties": {"taskId": 3907, "taskX": 219303, "taskY": 144866, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.256103493905, 18.5212833222942], [121.267089822028, 18.5212833222942], [121.267089822028, 18.5317003041803], [121.256103493905, 18.5317003041803], [121.256103493905, 18.5212833222942]]]]}, "properties": {"taskId": 3795, "taskX": 27421, "taskY": 18100, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.170959450951, 18.6072044186551], [121.173706032982, 18.6072044186551], [121.173706032982, 18.6098074122556], [121.170959450951, 18.6098074122556], [121.170959450951, 18.6072044186551]]]]}, "properties": {"taskId": 3788, "taskX": 109653, "taskY": 72433, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.5811940234556], [121.728515603195, 17.5811940234556], [121.728515603195, 17.5916668753295], [121.717529275072, 17.5916668753295], [121.717529275072, 17.5811940234556]]]]}, "properties": {"taskId": 3923, "taskX": 27463, "taskY": 18010, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.5811940234556], [121.717529275072, 17.5811940234556], [121.717529275072, 17.5916668753295], [121.706542946949, 17.5916668753295], [121.706542946949, 17.5811940234556]]]]}, "properties": {"taskId": 3921, "taskX": 27462, "taskY": 18010, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.5916668753295], [121.728515603195, 17.5916668753295], [121.728515603195, 17.602139120297], [121.717529275072, 17.602139120297], [121.717529275072, 17.5916668753295]]]]}, "properties": {"taskId": 3924, "taskX": 27463, "taskY": 18011, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.170959450951, 18.6046013852398], [121.172332741967, 18.6046013852398], [121.172332741967, 18.605902906924], [121.170959450951, 18.605902906924], [121.170959450951, 18.6046013852398]]]]}, "properties": {"taskId": 3821, "taskX": 219306, "taskY": 144864, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.172332741967, 18.605902906924], [121.173706032982, 18.605902906924], [121.173706032982, 18.6072044186551], [121.172332741967, 18.6072044186551], [121.172332741967, 18.605902906924]]]]}, "properties": {"taskId": 3824, "taskX": 219307, "taskY": 144865, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.087188699013, 18.6072044186551], [121.088561990029, 18.6072044186551], [121.088561990029, 18.6085059204325], [121.087188699013, 18.6085059204325], [121.087188699013, 18.6072044186551]]]]}, "properties": {"taskId": 3831, "taskX": 219245, "taskY": 144866, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.8219155128794], [121.717529275072, 17.8219155128794], [121.717529275072, 17.8323743264764], [121.706542946949, 17.8323743264764], [121.706542946949, 17.8219155128794]]]]}, "properties": {"taskId": 3870, "taskX": 27462, "taskY": 18033, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.16546628689, 18.6085059204325], [121.166839577905, 18.6085059204325], [121.166839577905, 18.6098074122556], [121.16546628689, 18.6098074122556], [121.16546628689, 18.6085059204325]]]]}, "properties": {"taskId": 3906, "taskX": 219302, "taskY": 144867, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 18.156291399692], [121.497802712612, 18.156291399692], [121.497802712612, 18.1667304070769], [121.486816384489, 18.1667304070769], [121.486816384489, 18.156291399692]]]]}, "properties": {"taskId": 3934, "taskX": 27442, "taskY": 18065, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.212158181413, 18.568154739547], [121.217651345474, 18.568154739547], [121.217651345474, 18.5733618804414], [121.212158181413, 18.5733618804414], [121.212158181413, 18.568154739547]]]]}, "properties": {"taskId": 3878, "taskX": 54834, "taskY": 36209, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.164092995874, 18.6072044186551], [121.16546628689, 18.6072044186551], [121.16546628689, 18.6085059204325], [121.164092995874, 18.6085059204325], [121.164092995874, 18.6072044186551]]]]}, "properties": {"taskId": 3899, "taskX": 219301, "taskY": 144866, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.5916668753295], [121.717529275072, 17.5916668753295], [121.717529275072, 17.602139120297], [121.706542946949, 17.602139120297], [121.706542946949, 17.5916668753295]]]]}, "properties": {"taskId": 3922, "taskX": 27462, "taskY": 18011, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.245117165782, 18.5369085570839], [121.250610329843, 18.5369085570839], [121.250610329843, 18.5421166512436], [121.245117165782, 18.5421166512436], [121.245117165782, 18.5369085570839]]]]}, "properties": {"taskId": 3886, "taskX": 54840, "taskY": 36203, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.250610329843, 18.5317003041803], [121.256103493905, 18.5317003041803], [121.256103493905, 18.5369085570839], [121.250610329843, 18.5369085570839], [121.250610329843, 18.5317003041803]]]]}, "properties": {"taskId": 3887, "taskX": 54841, "taskY": 36202, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.212158181413, 18.5733618804414], [121.217651345474, 18.5733618804414], [121.217651345474, 18.5785688623248], [121.212158181413, 18.5785688623248], [121.212158181413, 18.5733618804414]]]]}, "properties": {"taskId": 3881, "taskX": 54834, "taskY": 36210, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.217651345474, 18.5785688623248], [121.223144509536, 18.5785688623248], [121.223144509536, 18.5837756851588], [121.217651345474, 18.5837756851588], [121.217651345474, 18.5785688623248]]]]}, "properties": {"taskId": 3884, "taskX": 54835, "taskY": 36211, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 18.0205276547308], [121.772460915687, 18.0205276547308], [121.772460915687, 18.0414212187671], [121.750488259441, 18.0414212187671], [121.750488259441, 18.0205276547308]]]]}, "properties": {"taskId": 3163, "taskX": 13733, "taskY": 9026, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.635131814149, 17.8898868155249], [121.63787839618, 17.8898868155249], [121.63787839618, 17.8925005773337], [121.635131814149, 17.8925005773337], [121.635131814149, 17.8898868155249]]]]}, "properties": {"taskId": 3653, "taskX": 109822, "taskY": 72158, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.519775368858, 17.6073750150926], [121.525268532919, 17.6073750150926], [121.525268532919, 17.6126107580436], [121.519775368858, 17.6126107580436], [121.519775368858, 17.6073750150926]]]]}, "properties": {"taskId": 3942, "taskX": 54890, "taskY": 36025, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.162719704859, 18.6098074122556], [121.164092995874, 18.6098074122556], [121.164092995874, 18.6111088941238], [121.162719704859, 18.6111088941238], [121.162719704859, 18.6098074122556]]]]}, "properties": {"taskId": 3953, "taskX": 219300, "taskY": 144868, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.164092995874, 18.6111088941238], [121.16546628689, 18.6111088941238], [121.16546628689, 18.6124103660366], [121.164092995874, 18.6124103660366], [121.164092995874, 18.6111088941238]]]]}, "properties": {"taskId": 3956, "taskX": 219301, "taskY": 144869, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.0205276547308], [121.695556618826, 18.0205276547308], [121.695556618826, 18.0309747467668], [121.684570290703, 18.0309747467668], [121.684570290703, 18.0205276547308]]]]}, "properties": {"taskId": 3961, "taskX": 27460, "taskY": 18052, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 18.0309747467668], [121.706542946949, 18.0309747467668], [121.706542946949, 18.0414212187671], [121.695556618826, 18.0414212187671], [121.695556618826, 18.0309747467668]]]]}, "properties": {"taskId": 3964, "taskX": 27461, "taskY": 18053, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.523895241904, 17.6047570866729], [121.525268532919, 17.6047570866729], [121.525268532919, 17.6060660556276], [121.523895241904, 17.6060660556276], [121.523895241904, 17.6047570866729]]]]}, "properties": {"taskId": 3951, "taskX": 219563, "taskY": 144098, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.212158181413, 18.5785688623248], [121.217651345474, 18.5785688623248], [121.217651345474, 18.5837756851588], [121.212158181413, 18.5837756851588], [121.212158181413, 18.5785688623248]]]]}, "properties": {"taskId": 3882, "taskX": 54834, "taskY": 36211, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.16546628689, 18.6072044186551], [121.166839577905, 18.6072044186551], [121.166839577905, 18.6085059204325], [121.16546628689, 18.6085059204325], [121.16546628689, 18.6072044186551]]]]}, "properties": {"taskId": 3905, "taskX": 219302, "taskY": 144866, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.166839577905, 18.6085059204325], [121.168212868921, 18.6085059204325], [121.168212868921, 18.6098074122556], [121.166839577905, 18.6098074122556], [121.166839577905, 18.6085059204325]]]]}, "properties": {"taskId": 3908, "taskX": 219303, "taskY": 144867, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.8637470813091], [121.624145486026, 17.8637470813091], [121.624145486026, 17.8689753358357], [121.618652321965, 17.8689753358357], [121.618652321965, 17.8637470813091]]]]}, "properties": {"taskId": 5321, "taskX": 54908, "taskY": 36074, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.624145486026, 17.8689753358357], [121.629638650088, 17.8689753358357], [121.629638650088, 17.8742034365596], [121.624145486026, 17.8742034365596], [121.624145486026, 17.8689753358357]]]]}, "properties": {"taskId": 5324, "taskX": 54909, "taskY": 36075, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.8689753358357], [121.624145486026, 17.8689753358357], [121.624145486026, 17.8742034365596], [121.618652321965, 17.8742034365596], [121.618652321965, 17.8689753358357]]]]}, "properties": {"taskId": 5322, "taskX": 54908, "taskY": 36075, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.624145486026, 17.8637470813091], [121.629638650088, 17.8637470813091], [121.629638650088, 17.8689753358357], [121.624145486026, 17.8689753358357], [121.624145486026, 17.8637470813091]]]]}, "properties": {"taskId": 5323, "taskX": 54909, "taskY": 36074, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.387939431381, 18.3336694425994], [121.398925759504, 18.3336694425994], [121.398925759504, 18.3440977989279], [121.387939431381, 18.3440977989279], [121.387939431381, 18.3336694425994]]]]}, "properties": {"taskId": 4915, "taskX": 27433, "taskY": 18082, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.712036111011, 17.6335522106155], [121.714782693041, 17.6335522106155], [121.714782693041, 17.6361697211924], [121.712036111011, 17.6361697211924], [121.712036111011, 17.6335522106155]]]]}, "properties": {"taskId": 5329, "taskX": 109850, "taskY": 72060, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.714782693041, 17.6361697211924], [121.717529275072, 17.6361697211924], [121.717529275072, 17.638787193754], [121.714782693041, 17.638787193754], [121.714782693041, 17.6361697211924]]]]}, "properties": {"taskId": 5332, "taskX": 109851, "taskY": 72061, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.8532901110035], [121.624145486026, 17.8532901110035], [121.624145486026, 17.8585186730187], [121.618652321965, 17.8585186730187], [121.618652321965, 17.8532901110035]]]]}, "properties": {"taskId": 5325, "taskX": 54908, "taskY": 36072, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.624145486026, 17.8585186730187], [121.629638650088, 17.8585186730187], [121.629638650088, 17.8637470813091], [121.624145486026, 17.8637470813091], [121.624145486026, 17.8585186730187]]]]}, "properties": {"taskId": 5328, "taskX": 54909, "taskY": 36073, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.8585186730187], [121.624145486026, 17.8585186730187], [121.624145486026, 17.8637470813091], [121.618652321965, 17.8637470813091], [121.618652321965, 17.8585186730187]]]]}, "properties": {"taskId": 5326, "taskX": 54908, "taskY": 36073, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.475830056365, 18.4170786554759], [121.481323220427, 18.4170786554759], [121.481323220427, 18.4222903910698], [121.475830056365, 18.4222903910698], [121.475830056365, 18.4170786554759]]]]}, "properties": {"taskId": 5341, "taskX": 54882, "taskY": 36180, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.481323220427, 18.4222903910698], [121.486816384489, 18.4222903910698], [121.486816384489, 18.4275019687616], [121.481323220427, 18.4275019687616], [121.481323220427, 18.4222903910698]]]]}, "properties": {"taskId": 5344, "taskX": 54883, "taskY": 36181, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.712036111011, 17.6361697211924], [121.714782693041, 17.6361697211924], [121.714782693041, 17.638787193754], [121.712036111011, 17.638787193754], [121.712036111011, 17.6361697211924]]]]}, "properties": {"taskId": 5330, "taskX": 109850, "taskY": 72061, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.714782693041, 17.6335522106155], [121.717529275072, 17.6335522106155], [121.717529275072, 17.6361697211924], [121.714782693041, 17.6361697211924], [121.714782693041, 17.6335522106155]]]]}, "properties": {"taskId": 5331, "taskX": 109851, "taskY": 72060, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 18.2567409096555], [121.685943581719, 18.2567409096555], [121.685943581719, 18.2580450674298], [121.684570290703, 18.2580450674298], [121.684570290703, 18.2567409096555]]]]}, "properties": {"taskId": 5126, "taskX": 219680, "taskY": 144597, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 17.6440220248121], [121.508789040735, 17.6440220248121], [121.508789040735, 17.6649598274553], [121.486816384489, 17.6649598274553], [121.486816384489, 17.6440220248121]]]]}, "properties": {"taskId": 5347, "taskX": 13721, "taskY": 9008, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.481323220427, 18.4170786554759], [121.486816384489, 18.4170786554759], [121.486816384489, 18.4222903910698], [121.481323220427, 18.4222903910698], [121.481323220427, 18.4170786554759]]]]}, "properties": {"taskId": 5343, "taskX": 54883, "taskY": 36180, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 17.6440220248121], [121.486816384489, 17.6440220248121], [121.486816384489, 17.6649598274553], [121.464843728242, 17.6649598274553], [121.464843728242, 17.6440220248121]]]]}, "properties": {"taskId": 5345, "taskX": 13720, "taskY": 9008, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 18.2502199739071], [121.596679665719, 18.2502199739071], [121.596679665719, 18.271086106447], [121.574707009473, 18.271086106447], [121.574707009473, 18.2502199739071]]]]}, "properties": {"taskId": 4688, "taskX": 13725, "taskY": 9037, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.500549294642, 17.6911286542392], [121.503295876673, 17.6911286542392], [121.503295876673, 17.6937453273483], [121.500549294642, 17.6937453273483], [121.500549294642, 17.6911286542392]]]]}, "properties": {"taskId": 5335, "taskX": 109773, "taskY": 72082, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.500549294642, 17.6937453273483], [121.501922585658, 17.6937453273483], [121.501922585658, 17.695053649607], [121.500549294642, 17.695053649607], [121.500549294642, 17.6937453273483]]]]}, "properties": {"taskId": 5337, "taskX": 219546, "taskY": 144166, "taskZoom": 18, "taskSplittable": true, "taskStatus": "BADIMAGERY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.501922585658, 17.695053649607], [121.503295876673, 17.695053649607], [121.503295876673, 17.6963619623342], [121.501922585658, 17.6963619623342], [121.501922585658, 17.695053649607]]]]}, "properties": {"taskId": 5340, "taskX": 219547, "taskY": 144167, "taskZoom": 18, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.9107958318747], [121.712036111011, 17.9107958318747], [121.712036111011, 17.9160227007731], [121.706542946949, 17.9160227007731], [121.706542946949, 17.9107958318747]]]]}, "properties": {"taskId": 5202, "taskX": 54924, "taskY": 36083, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 17.6911286542392], [121.500549294642, 17.6911286542392], [121.500549294642, 17.6937453273483], [121.497802712612, 17.6937453273483], [121.497802712612, 17.6911286542392]]]]}, "properties": {"taskId": 5333, "taskX": 109772, "taskY": 72082, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.500549294642, 17.695053649607], [121.501922585658, 17.695053649607], [121.501922585658, 17.6963619623342], [121.500549294642, 17.6963619623342], [121.500549294642, 17.695053649607]]]]}, "properties": {"taskId": 5338, "taskX": 219546, "taskY": 144167, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 17.6937453273483], [121.500549294642, 17.6937453273483], [121.500549294642, 17.6963619623342], [121.497802712612, 17.6963619623342], [121.497802712612, 17.6937453273483]]]]}, "properties": {"taskId": 5334, "taskX": 109772, "taskY": 72083, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.501922585658, 17.6937453273483], [121.503295876673, 17.6937453273483], [121.503295876673, 17.695053649607], [121.501922585658, 17.695053649607], [121.501922585658, 17.6937453273483]]]]}, "properties": {"taskId": 5339, "taskX": 219547, "taskY": 144166, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.6544912305301], [121.687316872734, 17.6544912305301], [121.687316872734, 17.657108436848], [121.684570290703, 17.657108436848], [121.684570290703, 17.6544912305301]]]]}, "properties": {"taskId": 4537, "taskX": 109840, "taskY": 72068, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.475830056365, 18.4222903910698], [121.481323220427, 18.4222903910698], [121.481323220427, 18.4275019687616], [121.475830056365, 18.4275019687616], [121.475830056365, 18.4222903910698]]]]}, "properties": {"taskId": 5342, "taskX": 54882, "taskY": 36181, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.371459939197, 17.8532901110035], [121.374206521227, 17.8532901110035], [121.374206521227, 17.8559044112242], [121.371459939197, 17.8559044112242], [121.371459939197, 17.8532901110035]]]]}, "properties": {"taskId": 4073, "taskX": 109726, "taskY": 72144, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 17.5078670934123], [121.67358396258, 17.5078670934123], [121.67358396258, 17.518344184812], [121.662597634457, 17.518344184812], [121.662597634457, 17.5078670934123]]]]}, "properties": {"taskId": 5214, "taskX": 27458, "taskY": 18003, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.541748025104, 18.3753790908532], [121.552734353227, 18.3753790908532], [121.552734353227, 18.3858049281171], [121.541748025104, 18.3858049281171], [121.541748025104, 18.3753790908532]]]]}, "properties": {"taskId": 5375, "taskX": 27447, "taskY": 18086, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 18.3649526233622], [121.541748025104, 18.3649526233622], [121.541748025104, 18.3753790908532], [121.530761696981, 18.3753790908532], [121.530761696981, 18.3649526233622]]]]}, "properties": {"taskId": 5378, "taskX": 27446, "taskY": 18085, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.668090798519, 18.271086106447], [121.67358396258, 18.271086106447], [121.67358396258, 18.2763022477092], [121.668090798519, 18.2763022477092], [121.668090798519, 18.271086106447]]]]}, "properties": {"taskId": 5383, "taskX": 54917, "taskY": 36152, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 18.0753679668943], [121.610412575873, 18.0753679668943], [121.610412575873, 18.0779789835049], [121.607665993842, 18.0779789835049], [121.607665993842, 18.0753679668943]]]]}, "properties": {"taskId": 5398, "taskX": 109812, "taskY": 72229, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 18.2919497303851], [121.585693337596, 18.2919497303851], [121.585693337596, 18.3023806008582], [121.574707009473, 18.3023806008582], [121.574707009473, 18.2919497303851]]]]}, "properties": {"taskId": 5413, "taskX": 27450, "taskY": 18078, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 18.3023806008582], [121.596679665719, 18.3023806008582], [121.596679665719, 18.3128108432568], [121.585693337596, 18.3128108432568], [121.585693337596, 18.3023806008582]]]]}, "properties": {"taskId": 5416, "taskX": 27451, "taskY": 18079, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.1771687903979], [121.684570290703, 18.1771687903979], [121.684570290703, 18.1876065493462], [121.67358396258, 18.1876065493462], [121.67358396258, 18.1771687903979]]]]}, "properties": {"taskId": 5428, "taskX": 27459, "taskY": 18067, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.541748025104, 18.3545255259514], [121.552734353227, 18.3545255259514], [121.552734353227, 18.3649526233622], [121.541748025104, 18.3649526233622], [121.541748025104, 18.3545255259514]]]]}, "properties": {"taskId": 5379, "taskX": 27447, "taskY": 18084, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.271086106447], [121.668090798519, 18.271086106447], [121.668090798519, 18.2763022477092], [121.662597634457, 18.2763022477092], [121.662597634457, 18.271086106447]]]]}, "properties": {"taskId": 5381, "taskX": 54916, "taskY": 36152, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 18.0727569114491], [121.610412575873, 18.0727569114491], [121.610412575873, 18.0753679668943], [121.607665993842, 18.0753679668943], [121.607665993842, 18.0727569114491]]]]}, "properties": {"taskId": 5397, "taskX": 109812, "taskY": 72228, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.610412575873, 18.0753679668943], [121.613159157903, 18.0753679668943], [121.613159157903, 18.0779789835049], [121.610412575873, 18.0779789835049], [121.610412575873, 18.0753679668943]]]]}, "properties": {"taskId": 5400, "taskX": 109813, "taskY": 72229, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 18.2919497303851], [121.596679665719, 18.2919497303851], [121.596679665719, 18.3023806008582], [121.585693337596, 18.3023806008582], [121.585693337596, 18.2919497303851]]]]}, "properties": {"taskId": 5415, "taskX": 27451, "taskY": 18078, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 17.8951143006479], [121.849365212549, 17.8951143006479], [121.849365212549, 17.9055688088617], [121.838378884426, 17.9055688088617], [121.838378884426, 17.8951143006479]]]]}, "properties": {"taskId": 5417, "taskX": 27474, "taskY": 18040, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.849365212549, 17.9055688088617], [121.860351540672, 17.9055688088617], [121.860351540672, 17.9160227007731], [121.849365212549, 17.9160227007731], [121.849365212549, 17.9055688088617]]]]}, "properties": {"taskId": 5420, "taskX": 27475, "taskY": 18041, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.971588112917, 20.4450288469673], [121.972961403933, 20.4450288469673], [121.972961403933, 20.4463156259142], [121.971588112917, 20.4463156259142], [121.971588112917, 20.4450288469673]]]]}, "properties": {"taskId": 5351, "taskX": 219889, "taskY": 146286, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.371459939197, 17.857211546925], [121.372833230212, 17.857211546925], [121.372833230212, 17.8585186730187], [121.371459939197, 17.8585186730187], [121.371459939197, 17.857211546925]]]]}, "properties": {"taskId": 5002, "taskX": 219452, "taskY": 144291, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.668090798519, 18.2789102595329], [121.670837380549, 18.2789102595329], [121.670837380549, 18.2815182321454], [121.668090798519, 18.2815182321454], [121.668090798519, 18.2789102595329]]]]}, "properties": {"taskId": 5386, "taskX": 109834, "taskY": 72307, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 18.2763022477092], [121.684570290703, 18.2763022477092], [121.684570290703, 18.2815182321454], [121.679077126642, 18.2815182321454], [121.679077126642, 18.2763022477092]]]]}, "properties": {"taskId": 5392, "taskX": 54919, "taskY": 36153, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.374206521227, 17.8611328963819], [121.376953103258, 17.8611328963819], [121.376953103258, 17.8637470813091], [121.374206521227, 17.8637470813091], [121.374206521227, 17.8611328963819]]]]}, "properties": {"taskId": 5364, "taskX": 109727, "taskY": 72147, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.615905739934, 18.0727569114491], [121.618652321965, 18.0727569114491], [121.618652321965, 18.0753679668943], [121.615905739934, 18.0753679668943], [121.615905739934, 18.0727569114491]]]]}, "properties": {"taskId": 5423, "taskX": 109815, "taskY": 72228, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.374206521227, 17.8585186730187], [121.376953103258, 17.8585186730187], [121.376953103258, 17.8611328963819], [121.374206521227, 17.8611328963819], [121.374206521227, 17.8585186730187]]]]}, "properties": {"taskId": 5363, "taskX": 109727, "taskY": 72146, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.613159157903, 18.0727569114491], [121.615905739934, 18.0727569114491], [121.615905739934, 18.0753679668943], [121.613159157903, 18.0753679668943], [121.613159157903, 18.0727569114491]]]]}, "properties": {"taskId": 5421, "taskX": 109814, "taskY": 72228, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.615905739934, 18.0753679668943], [121.618652321965, 18.0753679668943], [121.618652321965, 18.0779789835049], [121.615905739934, 18.0779789835049], [121.615905739934, 18.0753679668943]]]]}, "properties": {"taskId": 5424, "taskX": 109815, "taskY": 72229, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.371459939197, 17.8611328963819], [121.374206521227, 17.8611328963819], [121.374206521227, 17.8637470813091], [121.371459939197, 17.8637470813091], [121.371459939197, 17.8611328963819]]]]}, "properties": {"taskId": 5362, "taskX": 109726, "taskY": 72147, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.613159157903, 18.0753679668943], [121.615905739934, 18.0753679668943], [121.615905739934, 18.0779789835049], [121.613159157903, 18.0779789835049], [121.613159157903, 18.0753679668943]]]]}, "properties": {"taskId": 5422, "taskX": 109814, "taskY": 72229, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 20.4450288469673], [121.971588112917, 20.4450288469673], [121.971588112917, 20.4463156259142], [121.970214821902, 20.4463156259142], [121.970214821902, 20.4450288469673]]]]}, "properties": {"taskId": 5349, "taskX": 219888, "taskY": 146286, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.971588112917, 20.4463156259142], [121.972961403933, 20.4463156259142], [121.972961403933, 20.447602394087], [121.971588112917, 20.447602394087], [121.971588112917, 20.4463156259142]]]]}, "properties": {"taskId": 5352, "taskX": 219889, "taskY": 146287, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.670837380549, 18.2763022477092], [121.67358396258, 18.2763022477092], [121.67358396258, 18.2789102595329], [121.670837380549, 18.2789102595329], [121.670837380549, 18.2763022477092]]]]}, "properties": {"taskId": 5387, "taskX": 109835, "taskY": 72306, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 18.271086106447], [121.684570290703, 18.271086106447], [121.684570290703, 18.2763022477092], [121.679077126642, 18.2763022477092], [121.679077126642, 18.271086106447]]]]}, "properties": {"taskId": 5391, "taskX": 54919, "taskY": 36152, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 20.4463156259142], [121.971588112917, 20.4463156259142], [121.971588112917, 20.447602394087], [121.970214821902, 20.447602394087], [121.970214821902, 20.4463156259142]]]]}, "properties": {"taskId": 5350, "taskX": 219888, "taskY": 146287, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.668090798519, 18.2763022477092], [121.670837380549, 18.2763022477092], [121.670837380549, 18.2789102595329], [121.668090798519, 18.2789102595329], [121.668090798519, 18.2763022477092]]]]}, "properties": {"taskId": 5385, "taskX": 109834, "taskY": 72306, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.670837380549, 18.2789102595329], [121.67358396258, 18.2789102595329], [121.67358396258, 18.2815182321454], [121.670837380549, 18.2815182321454], [121.670837380549, 18.2789102595329]]]]}, "properties": {"taskId": 5388, "taskX": 109835, "taskY": 72307, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.3858049281171], [121.519775368858, 18.3858049281171], [121.519775368858, 18.3962301348468], [121.508789040735, 18.3962301348468], [121.508789040735, 18.3858049281171]]]]}, "properties": {"taskId": 5406, "taskX": 27444, "taskY": 18087, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.519775368858, 18.3545255259514], [121.530761696981, 18.3545255259514], [121.530761696981, 18.3649526233622], [121.519775368858, 18.3649526233622], [121.519775368858, 18.3545255259514]]]]}, "properties": {"taskId": 5411, "taskX": 27445, "taskY": 18084, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.4092607561026], [121.511535622765, 18.4092607561026], [121.511535622765, 18.4118667620183], [121.508789040735, 18.4118667620183], [121.508789040735, 18.4092607561026]]]]}, "properties": {"taskId": 5354, "taskX": 109776, "taskY": 72357, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.511535622765, 18.4066547107354], [121.514282204796, 18.4066547107354], [121.514282204796, 18.4092607561026], [121.511535622765, 18.4092607561026], [121.511535622765, 18.4066547107354]]]]}, "properties": {"taskId": 5355, "taskX": 109777, "taskY": 72356, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 18.3753790908532], [121.541748025104, 18.3753790908532], [121.541748025104, 18.3858049281171], [121.530761696981, 18.3858049281171], [121.530761696981, 18.3753790908532]]]]}, "properties": {"taskId": 5373, "taskX": 27446, "taskY": 18086, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 18.2919497303851], [121.640624978211, 18.2919497303851], [121.640624978211, 18.3023806008582], [121.629638650088, 18.3023806008582], [121.629638650088, 18.2919497303851]]]]}, "properties": {"taskId": 5359, "taskX": 27455, "taskY": 18078, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.613159157903, 18.0779789835049], [121.618652321965, 18.0779789835049], [121.618652321965, 18.0832009002027], [121.613159157903, 18.0832009002027], [121.613159157903, 18.0779789835049]]]]}, "properties": {"taskId": 5368, "taskX": 54907, "taskY": 36115, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.843872048487, 17.9055688088617], [121.849365212549, 17.9055688088617], [121.849365212549, 17.9107958318747], [121.843872048487, 17.9107958318747], [121.843872048487, 17.9055688088617]]]]}, "properties": {"taskId": 5455, "taskX": 54949, "taskY": 36082, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 18.3545255259514], [121.541748025104, 18.3545255259514], [121.541748025104, 18.3649526233622], [121.530761696981, 18.3649526233622], [121.530761696981, 18.3545255259514]]]]}, "properties": {"taskId": 5377, "taskX": 27446, "taskY": 18084, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.541748025104, 18.3649526233622], [121.552734353227, 18.3649526233622], [121.552734353227, 18.3753790908532], [121.541748025104, 18.3753790908532], [121.541748025104, 18.3649526233622]]]]}, "properties": {"taskId": 5380, "taskX": 27447, "taskY": 18085, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.2763022477092], [121.668090798519, 18.2763022477092], [121.668090798519, 18.2815182321454], [121.662597634457, 18.2815182321454], [121.662597634457, 18.2763022477092]]]]}, "properties": {"taskId": 5382, "taskX": 54916, "taskY": 36153, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.610412575873, 18.0727569114491], [121.613159157903, 18.0727569114491], [121.613159157903, 18.0753679668943], [121.610412575873, 18.0753679668943], [121.610412575873, 18.0727569114491]]]]}, "properties": {"taskId": 5399, "taskX": 109813, "taskY": 72228, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 18.3023806008582], [121.585693337596, 18.3023806008582], [121.585693337596, 18.3128108432568], [121.574707009473, 18.3128108432568], [121.574707009473, 18.3023806008582]]]]}, "properties": {"taskId": 5414, "taskX": 27450, "taskY": 18079, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 18.3023806008582], [121.629638650088, 18.3023806008582], [121.629638650088, 18.3128108432568], [121.618652321965, 18.3128108432568], [121.618652321965, 18.3023806008582]]]]}, "properties": {"taskId": 5358, "taskX": 27454, "taskY": 18079, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 18.0779789835049], [121.613159157903, 18.0779789835049], [121.613159157903, 18.0832009002027], [121.607665993842, 18.0832009002027], [121.607665993842, 18.0779789835049]]]]}, "properties": {"taskId": 5366, "taskX": 54906, "taskY": 36115, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 17.9055688088617], [121.843872048487, 17.9055688088617], [121.843872048487, 17.9107958318747], [121.838378884426, 17.9107958318747], [121.838378884426, 17.9055688088617]]]]}, "properties": {"taskId": 5453, "taskX": 54948, "taskY": 36082, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.843872048487, 17.9107958318747], [121.849365212549, 17.9107958318747], [121.849365212549, 17.9160227007731], [121.843872048487, 17.9160227007731], [121.843872048487, 17.9107958318747]]]]}, "properties": {"taskId": 5456, "taskX": 54949, "taskY": 36083, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 17.7905353905046], [121.486816384489, 17.7905353905046], [121.486816384489, 17.8114560854768], [121.464843728242, 17.8114560854768], [121.464843728242, 17.7905353905046]]]]}, "properties": {"taskId": 3982, "taskX": 13720, "taskY": 9015, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 18.2919497303851], [121.629638650088, 18.2919497303851], [121.629638650088, 18.3023806008582], [121.618652321965, 18.3023806008582], [121.618652321965, 18.2919497303851]]]]}, "properties": {"taskId": 5357, "taskX": 27454, "taskY": 18078, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 18.3023806008582], [121.640624978211, 18.3023806008582], [121.640624978211, 18.3128108432568], [121.629638650088, 18.3128108432568], [121.629638650088, 18.3023806008582]]]]}, "properties": {"taskId": 5360, "taskX": 27455, "taskY": 18079, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.4066547107354], [121.511535622765, 18.4066547107354], [121.511535622765, 18.4092607561026], [121.508789040735, 18.4092607561026], [121.508789040735, 18.4066547107354]]]]}, "properties": {"taskId": 5353, "taskX": 109776, "taskY": 72356, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.511535622765, 18.4092607561026], [121.514282204796, 18.4092607561026], [121.514282204796, 18.4118667620183], [121.511535622765, 18.4118667620183], [121.511535622765, 18.4092607561026]]]]}, "properties": {"taskId": 5356, "taskX": 109777, "taskY": 72357, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 17.7905353905046], [121.530761696981, 17.7905353905046], [121.530761696981, 17.8114560854768], [121.508789040735, 17.8114560854768], [121.508789040735, 17.7905353905046]]]]}, "properties": {"taskId": 4294, "taskX": 13722, "taskY": 9015, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 18.1980436836125], [121.596679665719, 18.1980436836125], [121.596679665719, 18.2084801928881], [121.585693337596, 18.2084801928881], [121.585693337596, 18.1980436836125]]]]}, "properties": {"taskId": 4404, "taskX": 27451, "taskY": 18069, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.1458517685528], [121.662597634457, 18.1458517685528], [121.662597634457, 18.1667304070769], [121.640624978211, 18.1667304070769], [121.640624978211, 18.1458517685528]]]]}, "properties": {"taskId": 5369, "taskX": 13728, "taskY": 9032, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679120041986, 17.8336407817561], [121.67916295733, 17.8336407817561], [121.67916295733, 17.8336816350023], [121.679120041986, 17.8336816350023], [121.679120041986, 17.8336407817561]]]]}, "properties": {"taskId": 4196, "taskX": 7029633, "taskY": 4616735, "taskZoom": 23, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.1771687903979], [121.651611306334, 18.1771687903979], [121.651611306334, 18.1876065493462], [121.640624978211, 18.1876065493462], [121.640624978211, 18.1771687903979]]]]}, "properties": {"taskId": 5394, "taskX": 27456, "taskY": 18067, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.1771687903979], [121.662597634457, 18.1771687903979], [121.662597634457, 18.1876065493462], [121.651611306334, 18.1876065493462], [121.651611306334, 18.1771687903979]]]]}, "properties": {"taskId": 5396, "taskX": 27457, "taskY": 18067, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.1458517685528], [121.67358396258, 18.1458517685528], [121.67358396258, 18.156291399692], [121.662597634457, 18.156291399692], [121.662597634457, 18.1458517685528]]]]}, "properties": {"taskId": 5401, "taskX": 27458, "taskY": 18064, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.1458517685528], [121.684570290703, 18.1458517685528], [121.684570290703, 18.156291399692], [121.67358396258, 18.156291399692], [121.67358396258, 18.1458517685528]]]]}, "properties": {"taskId": 5403, "taskX": 27459, "taskY": 18064, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.519775368858, 18.3753790908532], [121.530761696981, 18.3753790908532], [121.530761696981, 18.3858049281171], [121.519775368858, 18.3858049281171], [121.519775368858, 18.3753790908532]]]]}, "properties": {"taskId": 5407, "taskX": 27445, "taskY": 18086, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.3753790908532], [121.519775368858, 18.3753790908532], [121.519775368858, 18.3858049281171], [121.508789040735, 18.3858049281171], [121.508789040735, 18.3753790908532]]]]}, "properties": {"taskId": 5405, "taskX": 27444, "taskY": 18086, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.519775368858, 18.3858049281171], [121.530761696981, 18.3858049281171], [121.530761696981, 18.3962301348468], [121.519775368858, 18.3962301348468], [121.519775368858, 18.3858049281171]]]]}, "properties": {"taskId": 5408, "taskX": 27445, "taskY": 18087, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.3545255259514], [121.519775368858, 18.3545255259514], [121.519775368858, 18.3649526233622], [121.508789040735, 18.3649526233622], [121.508789040735, 18.3545255259514]]]]}, "properties": {"taskId": 5409, "taskX": 27444, "taskY": 18084, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.519775368858, 18.3649526233622], [121.530761696981, 18.3649526233622], [121.530761696981, 18.3753790908532], [121.519775368858, 18.3753790908532], [121.519775368858, 18.3649526233622]]]]}, "properties": {"taskId": 5412, "taskX": 27445, "taskY": 18085, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.1667304070769], [121.651611306334, 18.1667304070769], [121.651611306334, 18.1771687903979], [121.640624978211, 18.1771687903979], [121.640624978211, 18.1667304070769]]]]}, "properties": {"taskId": 5393, "taskX": 27456, "taskY": 18066, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.156291399692], [121.67358396258, 18.156291399692], [121.67358396258, 18.1667304070769], [121.662597634457, 18.1667304070769], [121.662597634457, 18.156291399692]]]]}, "properties": {"taskId": 5402, "taskX": 27458, "taskY": 18065, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.156291399692], [121.684570290703, 18.156291399692], [121.684570290703, 18.1667304070769], [121.67358396258, 18.1667304070769], [121.67358396258, 18.156291399692]]]]}, "properties": {"taskId": 5404, "taskX": 27459, "taskY": 18065, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 20.448245774133], [121.97090146741, 20.448245774133], [121.97090146741, 20.4488891514852], [121.970214821902, 20.4488891514852], [121.970214821902, 20.448245774133]]]]}, "properties": {"taskId": 5430, "taskX": 439776, "taskY": 292577, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.541748025104, 18.3858049281171], [121.547241189165, 18.3858049281171], [121.547241189165, 18.3910176103179], [121.541748025104, 18.3910176103179], [121.541748025104, 18.3858049281171]]]]}, "properties": {"taskId": 5433, "taskX": 54894, "taskY": 36174, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.547241189165, 18.3858049281171], [121.552734353227, 18.3858049281171], [121.552734353227, 18.3910176103179], [121.547241189165, 18.3910176103179], [121.547241189165, 18.3858049281171]]]]}, "properties": {"taskId": 5435, "taskX": 54895, "taskY": 36174, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 20.447602394087], [121.97090146741, 20.447602394087], [121.97090146741, 20.448245774133], [121.970214821902, 20.448245774133], [121.970214821902, 20.447602394087]]]]}, "properties": {"taskId": 5429, "taskX": 439776, "taskY": 292576, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.97090146741, 20.448245774133], [121.971588112917, 20.448245774133], [121.971588112917, 20.4488891514852], [121.97090146741, 20.4488891514852], [121.97090146741, 20.448245774133]]]]}, "properties": {"taskId": 5432, "taskX": 439777, "taskY": 292577, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.97090146741, 20.447602394087], [121.971588112917, 20.447602394087], [121.971588112917, 20.448245774133], [121.97090146741, 20.448245774133], [121.97090146741, 20.447602394087]]]]}, "properties": {"taskId": 5431, "taskX": 439777, "taskY": 292576, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.547241189165, 18.3910176103179], [121.552734353227, 18.3910176103179], [121.552734353227, 18.3962301348468], [121.547241189165, 18.3962301348468], [121.547241189165, 18.3910176103179]]]]}, "properties": {"taskId": 5436, "taskX": 54895, "taskY": 36175, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.838378884426, 17.9107958318747], [121.843872048487, 17.9107958318747], [121.843872048487, 17.9160227007731], [121.838378884426, 17.9160227007731], [121.838378884426, 17.9107958318747]]]]}, "properties": {"taskId": 5454, "taskX": 54948, "taskY": 36083, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 17.6649598274553], [121.475830056365, 17.6649598274553], [121.475830056365, 17.6754278152737], [121.464843728242, 17.6754278152737], [121.464843728242, 17.6649598274553]]]]}, "properties": {"taskId": 5437, "taskX": 27440, "taskY": 18018, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.475830056365, 17.6649598274553], [121.486816384489, 17.6649598274553], [121.486816384489, 17.6754278152737], [121.475830056365, 17.6754278152737], [121.475830056365, 17.6649598274553]]]]}, "properties": {"taskId": 5439, "taskX": 27441, "taskY": 18018, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 17.6754278152737], [121.475830056365, 17.6754278152737], [121.475830056365, 17.6858951936713], [121.464843728242, 17.6858951936713], [121.464843728242, 17.6754278152737]]]]}, "properties": {"taskId": 5438, "taskX": 27440, "taskY": 18019, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.5602465002479], [121.56372068135, 17.5602465002479], [121.56372068135, 17.5707205649901], [121.552734353227, 17.5707205649901], [121.552734353227, 17.5602465002479]]]]}, "properties": {"taskId": 5445, "taskX": 27448, "taskY": 18008, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 17.5707205649901], [121.574707009473, 17.5707205649901], [121.574707009473, 17.5811940234556], [121.56372068135, 17.5811940234556], [121.56372068135, 17.5707205649901]]]]}, "properties": {"taskId": 5448, "taskX": 27449, "taskY": 18009, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.676330544611, 18.271086106447], [121.679077126642, 18.271086106447], [121.679077126642, 18.273694196679], [121.676330544611, 18.273694196679], [121.676330544611, 18.271086106447]]]]}, "properties": {"taskId": 5443, "taskX": 109837, "taskY": 72304, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.624145486026, 17.8532901110035], [121.626892068057, 17.8532901110035], [121.626892068057, 17.8559044112242], [121.624145486026, 17.8559044112242], [121.624145486026, 17.8532901110035]]]]}, "properties": {"taskId": 5461, "taskX": 109818, "taskY": 72144, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.85485837661, 17.9003416317732], [121.860351540672, 17.9003416317732], [121.860351540672, 17.9055688088617], [121.85485837661, 17.9055688088617], [121.85485837661, 17.9003416317732]]]]}, "properties": {"taskId": 5460, "taskX": 54951, "taskY": 36081, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.569213845411, 17.8742034365596], [121.574707009473, 17.8742034365596], [121.574707009473, 17.8794313834418], [121.569213845411, 17.8794313834418], [121.569213845411, 17.8742034365596]]]]}, "properties": {"taskId": 5491, "taskX": 54899, "taskY": 36076, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 18.3440977989279], [121.624145486026, 18.3440977989279], [121.624145486026, 18.349311741122], [121.618652321965, 18.349311741122], [121.618652321965, 18.3440977989279]]]]}, "properties": {"taskId": 5493, "taskX": 54908, "taskY": 36166, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.624145486026, 18.349311741122], [121.629638650088, 18.349311741122], [121.629638650088, 18.3545255259514], [121.624145486026, 18.3545255259514], [121.624145486026, 18.349311741122]]]]}, "properties": {"taskId": 5496, "taskX": 54909, "taskY": 36167, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.273694196679], [121.676330544611, 18.273694196679], [121.676330544611, 18.2763022477092], [121.67358396258, 18.2763022477092], [121.67358396258, 18.273694196679]]]]}, "properties": {"taskId": 5442, "taskX": 109836, "taskY": 72305, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.852111794579, 17.9003416317732], [121.85485837661, 17.9003416317732], [121.85485837661, 17.9029552395745], [121.852111794579, 17.9029552395745], [121.852111794579, 17.9003416317732]]]]}, "properties": {"taskId": 5507, "taskX": 109901, "taskY": 72162, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.849365212549, 17.8977279854627], [121.852111794579, 17.8977279854627], [121.852111794579, 17.9003416317732], [121.849365212549, 17.9003416317732], [121.849365212549, 17.8977279854627]]]]}, "properties": {"taskId": 5502, "taskX": 109900, "taskY": 72161, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.849365212549, 17.9029552395745], [121.852111794579, 17.9029552395745], [121.852111794579, 17.9055688088617], [121.849365212549, 17.9055688088617], [121.849365212549, 17.9029552395745]]]]}, "properties": {"taskId": 5506, "taskX": 109900, "taskY": 72163, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 18.0832009002027], [121.508789040735, 18.0832009002027], [121.508789040735, 18.0936442673693], [121.497802712612, 18.0936442673693], [121.497802712612, 18.0832009002027]]]]}, "properties": {"taskId": 5499, "taskX": 27443, "taskY": 18058, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 18.3858049281171], [121.536254861042, 18.3858049281171], [121.536254861042, 18.3910176103179], [121.530761696981, 18.3910176103179], [121.530761696981, 18.3858049281171]]]]}, "properties": {"taskId": 5481, "taskX": 54892, "taskY": 36174, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.536254861042, 18.3910176103179], [121.541748025104, 18.3910176103179], [121.541748025104, 18.3962301348468], [121.536254861042, 18.3962301348468], [121.536254861042, 18.3910176103179]]]]}, "properties": {"taskId": 5484, "taskX": 54893, "taskY": 36175, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.271086106447], [121.676330544611, 18.271086106447], [121.676330544611, 18.273694196679], [121.67358396258, 18.273694196679], [121.67358396258, 18.271086106447]]]]}, "properties": {"taskId": 5441, "taskX": 109836, "taskY": 72304, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.676330544611, 18.273694196679], [121.679077126642, 18.273694196679], [121.679077126642, 18.2763022477092], [121.676330544611, 18.2763022477092], [121.676330544611, 18.273694196679]]]]}, "properties": {"taskId": 5444, "taskX": 109837, "taskY": 72305, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.5707205649901], [121.56372068135, 17.5707205649901], [121.56372068135, 17.5811940234556], [121.552734353227, 17.5811940234556], [121.552734353227, 17.5707205649901]]]]}, "properties": {"taskId": 5446, "taskX": 27448, "taskY": 18009, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 17.5602465002479], [121.574707009473, 17.5602465002479], [121.574707009473, 17.5707205649901], [121.56372068135, 17.5707205649901], [121.56372068135, 17.5602465002479]]]]}, "properties": {"taskId": 5447, "taskX": 27449, "taskY": 18008, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.849365212549, 17.8951143006479], [121.852111794579, 17.8951143006479], [121.852111794579, 17.8977279854627], [121.849365212549, 17.8977279854627], [121.849365212549, 17.8951143006479]]]]}, "properties": {"taskId": 5501, "taskX": 109900, "taskY": 72160, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.852111794579, 17.8977279854627], [121.85485837661, 17.8977279854627], [121.85485837661, 17.9003416317732], [121.852111794579, 17.9003416317732], [121.852111794579, 17.8977279854627]]]]}, "properties": {"taskId": 5504, "taskX": 109901, "taskY": 72161, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.852111794579, 17.8951143006479], [121.85485837661, 17.8951143006479], [121.85485837661, 17.8977279854627], [121.852111794579, 17.8977279854627], [121.852111794579, 17.8951143006479]]]]}, "properties": {"taskId": 5503, "taskX": 109901, "taskY": 72160, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 18.3910176103179], [121.536254861042, 18.3910176103179], [121.536254861042, 18.3962301348468], [121.530761696981, 18.3962301348468], [121.530761696981, 18.3910176103179]]]]}, "properties": {"taskId": 5482, "taskX": 54892, "taskY": 36175, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.8742034365596], [121.717529275072, 17.8742034365596], [121.717529275072, 17.8846591764432], [121.706542946949, 17.8846591764432], [121.706542946949, 17.8742034365596]]]]}, "properties": {"taskId": 5477, "taskX": 27462, "taskY": 18038, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.8846591764432], [121.728515603195, 17.8846591764432], [121.728515603195, 17.8951143006479], [121.717529275072, 17.8951143006479], [121.717529275072, 17.8846591764432]]]]}, "properties": {"taskId": 5480, "taskX": 27463, "taskY": 18039, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.628265359073, 17.8559044112242], [121.629638650088, 17.8559044112242], [121.629638650088, 17.857211546925], [121.628265359073, 17.857211546925], [121.628265359073, 17.8559044112242]]]]}, "properties": {"taskId": 5467, "taskX": 219639, "taskY": 144290, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.372833230212, 17.8585186730187], [121.374206521227, 17.8585186730187], [121.374206521227, 17.8598257895044], [121.372833230212, 17.8598257895044], [121.372833230212, 17.8585186730187]]]]}, "properties": {"taskId": 5487, "taskX": 219453, "taskY": 144292, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.2763022477092], [121.676330544611, 18.2763022477092], [121.676330544611, 18.2789102595329], [121.67358396258, 18.2789102595329], [121.67358396258, 18.2763022477092]]]]}, "properties": {"taskId": 5449, "taskX": 109836, "taskY": 72306, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.676330544611, 18.2789102595329], [121.679077126642, 18.2789102595329], [121.679077126642, 18.2815182321454], [121.676330544611, 18.2815182321454], [121.676330544611, 18.2789102595329]]]]}, "properties": {"taskId": 5452, "taskX": 109837, "taskY": 72307, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.2789102595329], [121.676330544611, 18.2789102595329], [121.676330544611, 18.2815182321454], [121.67358396258, 18.2815182321454], [121.67358396258, 18.2789102595329]]]]}, "properties": {"taskId": 5450, "taskX": 109836, "taskY": 72307, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.676330544611, 18.2763022477092], [121.679077126642, 18.2763022477092], [121.679077126642, 18.2789102595329], [121.676330544611, 18.2789102595329], [121.676330544611, 18.2763022477092]]]]}, "properties": {"taskId": 5451, "taskX": 109837, "taskY": 72306, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.626892068057, 17.8532901110035], [121.628265359073, 17.8532901110035], [121.628265359073, 17.8545972659169], [121.626892068057, 17.8545972659169], [121.626892068057, 17.8532901110035]]]]}, "properties": {"taskId": 5469, "taskX": 219638, "taskY": 144288, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.628265359073, 17.8545972659169], [121.629638650088, 17.8545972659169], [121.629638650088, 17.8559044112242], [121.628265359073, 17.8559044112242], [121.628265359073, 17.8545972659169]]]]}, "properties": {"taskId": 5472, "taskX": 219639, "taskY": 144289, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 17.8794313834418], [121.569213845411, 17.8794313834418], [121.569213845411, 17.8846591764432], [121.56372068135, 17.8846591764432], [121.56372068135, 17.8794313834418]]]]}, "properties": {"taskId": 5490, "taskX": 54898, "taskY": 36077, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 18.349311741122], [121.624145486026, 18.349311741122], [121.624145486026, 18.3545255259514], [121.618652321965, 18.3545255259514], [121.618652321965, 18.349311741122]]]]}, "properties": {"taskId": 5494, "taskX": 54908, "taskY": 36167, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.626892068057, 17.8545972659169], [121.628265359073, 17.8545972659169], [121.628265359073, 17.8559044112242], [121.626892068057, 17.8559044112242], [121.626892068057, 17.8545972659169]]]]}, "properties": {"taskId": 5470, "taskX": 219638, "taskY": 144289, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.628265359073, 17.8532901110035], [121.629638650088, 17.8532901110035], [121.629638650088, 17.8545972659169], [121.628265359073, 17.8545972659169], [121.628265359073, 17.8532901110035]]]]}, "properties": {"taskId": 5471, "taskX": 219639, "taskY": 144288, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.2919497303851], [121.56372068135, 18.2919497303851], [121.56372068135, 18.3023806008582], [121.552734353227, 18.3023806008582], [121.552734353227, 18.2919497303851]]]]}, "properties": {"taskId": 5153, "taskX": 27448, "taskY": 18078, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.85485837661, 17.8951143006479], [121.860351540672, 17.8951143006479], [121.860351540672, 17.9003416317732], [121.85485837661, 17.9003416317732], [121.85485837661, 17.8951143006479]]]]}, "properties": {"taskId": 5459, "taskX": 54951, "taskY": 36080, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.569213845411, 17.8794313834418], [121.574707009473, 17.8794313834418], [121.574707009473, 17.8846591764432], [121.569213845411, 17.8846591764432], [121.569213845411, 17.8794313834418]]]]}, "properties": {"taskId": 5492, "taskX": 54899, "taskY": 36077, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.624145486026, 18.3440977989279], [121.629638650088, 18.3440977989279], [121.629638650088, 18.349311741122], [121.624145486026, 18.349311741122], [121.624145486026, 18.3440977989279]]]]}, "properties": {"taskId": 5495, "taskX": 54909, "taskY": 36166, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.626892068057, 17.857211546925], [121.628265359073, 17.857211546925], [121.628265359073, 17.8585186730187], [121.626892068057, 17.8585186730187], [121.626892068057, 17.857211546925]]]]}, "properties": {"taskId": 5466, "taskX": 219638, "taskY": 144291, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.371459939197, 17.8585186730187], [121.372833230212, 17.8585186730187], [121.372833230212, 17.8598257895044], [121.371459939197, 17.8598257895044], [121.371459939197, 17.8585186730187]]]]}, "properties": {"taskId": 5485, "taskX": 219452, "taskY": 144292, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.372833230212, 17.8598257895044], [121.374206521227, 17.8598257895044], [121.374206521227, 17.8611328963819], [121.372833230212, 17.8611328963819], [121.372833230212, 17.8598257895044]]]]}, "properties": {"taskId": 5488, "taskX": 219453, "taskY": 144293, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.624145486026, 17.8559044112242], [121.626892068057, 17.8559044112242], [121.626892068057, 17.8585186730187], [121.624145486026, 17.8585186730187], [121.624145486026, 17.8559044112242]]]]}, "properties": {"taskId": 5462, "taskX": 109818, "taskY": 72145, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.8846591764432], [121.717529275072, 17.8846591764432], [121.717529275072, 17.8951143006479], [121.706542946949, 17.8951143006479], [121.706542946949, 17.8846591764432]]]]}, "properties": {"taskId": 5478, "taskX": 27462, "taskY": 18039, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.8742034365596], [121.728515603195, 17.8742034365596], [121.728515603195, 17.8846591764432], [121.717529275072, 17.8846591764432], [121.717529275072, 17.8742034365596]]]]}, "properties": {"taskId": 5479, "taskX": 27463, "taskY": 18038, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.626892068057, 17.8559044112242], [121.628265359073, 17.8559044112242], [121.628265359073, 17.857211546925], [121.626892068057, 17.857211546925], [121.626892068057, 17.8559044112242]]]]}, "properties": {"taskId": 5465, "taskX": 219638, "taskY": 144290, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.628265359073, 17.857211546925], [121.629638650088, 17.857211546925], [121.629638650088, 17.8585186730187], [121.628265359073, 17.8585186730187], [121.628265359073, 17.857211546925]]]]}, "properties": {"taskId": 5468, "taskX": 219639, "taskY": 144291, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.371459939197, 17.8598257895044], [121.372833230212, 17.8598257895044], [121.372833230212, 17.8611328963819], [121.371459939197, 17.8611328963819], [121.371459939197, 17.8598257895044]]]]}, "properties": {"taskId": 5486, "taskX": 219452, "taskY": 144293, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 18.0936442673693], [121.497802712612, 18.0936442673693], [121.497802712612, 18.104087012639], [121.486816384489, 18.104087012639], [121.486816384489, 18.0936442673693]]]]}, "properties": {"taskId": 5498, "taskX": 27442, "taskY": 18059, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.849365212549, 17.9003416317732], [121.852111794579, 17.9003416317732], [121.852111794579, 17.9029552395745], [121.849365212549, 17.9029552395745], [121.849365212549, 17.9003416317732]]]]}, "properties": {"taskId": 5505, "taskX": 109900, "taskY": 72162, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.852111794579, 17.9029552395745], [121.85485837661, 17.9029552395745], [121.85485837661, 17.9055688088617], [121.852111794579, 17.9055688088617], [121.852111794579, 17.9029552395745]]]]}, "properties": {"taskId": 5508, "taskX": 109901, "taskY": 72163, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 18.0832009002027], [121.497802712612, 18.0832009002027], [121.497802712612, 18.0936442673693], [121.486816384489, 18.0936442673693], [121.486816384489, 18.0832009002027]]]]}, "properties": {"taskId": 5497, "taskX": 27442, "taskY": 18058, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 18.0936442673693], [121.508789040735, 18.0936442673693], [121.508789040735, 18.104087012639], [121.497802712612, 18.104087012639], [121.497802712612, 18.0936442673693]]]]}, "properties": {"taskId": 5500, "taskX": 27443, "taskY": 18059, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.536254861042, 18.3858049281171], [121.541748025104, 18.3858049281171], [121.541748025104, 18.3910176103179], [121.536254861042, 18.3910176103179], [121.536254861042, 18.3858049281171]]]]}, "properties": {"taskId": 5483, "taskX": 54893, "taskY": 36174, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.5288206715107], [121.78344724381, 17.5288206715107], [121.78344724381, 17.5392965531931], [121.772460915687, 17.5392965531931], [121.772460915687, 17.5288206715107]]]]}, "properties": {"taskId": 5510, "taskX": 27468, "taskY": 18005, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78344724381, 17.5288206715107], [121.794433571933, 17.5288206715107], [121.794433571933, 17.5392965531931], [121.78344724381, 17.5392965531931], [121.78344724381, 17.5288206715107]]]]}, "properties": {"taskId": 5512, "taskX": 27469, "taskY": 18005, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 17.6806615806697], [121.74499509538, 17.6806615806697], [121.74499509538, 17.6858951936713], [121.739501931318, 17.6858951936713], [121.739501931318, 17.6806615806697]]]]}, "properties": {"taskId": 4270, "taskX": 54930, "taskY": 36039, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78344724381, 17.518344184812], [121.794433571933, 17.518344184812], [121.794433571933, 17.5288206715107], [121.78344724381, 17.5288206715107], [121.78344724381, 17.518344184812]]]]}, "properties": {"taskId": 5511, "taskX": 27469, "taskY": 18004, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.9473806755755], [121.78344724381, 17.9473806755755], [121.78344724381, 17.957832099161], [121.772460915687, 17.957832099161], [121.772460915687, 17.9473806755755]]]]}, "properties": {"taskId": 5518, "taskX": 27468, "taskY": 18045, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.8637470813091], [121.717529275072, 17.8637470813091], [121.717529275072, 17.8742034365596], [121.706542946949, 17.8742034365596], [121.706542946949, 17.8637470813091]]]]}, "properties": {"taskId": 5530, "taskX": 27462, "taskY": 18037, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78344724381, 17.9369286344414], [121.794433571933, 17.9369286344414], [121.794433571933, 17.9473806755755], [121.78344724381, 17.9473806755755], [121.78344724381, 17.9369286344414]]]]}, "properties": {"taskId": 5519, "taskX": 27469, "taskY": 18044, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.8742034365596], [121.706542946949, 17.8742034365596], [121.706542946949, 17.8846591764432], [121.695556618826, 17.8846591764432], [121.695556618826, 17.8742034365596]]]]}, "properties": {"taskId": 5527, "taskX": 27461, "taskY": 18038, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.8532901110035], [121.695556618826, 17.8532901110035], [121.695556618826, 17.8637470813091], [121.684570290703, 17.8637470813091], [121.684570290703, 17.8532901110035]]]]}, "properties": {"taskId": 5513, "taskX": 27460, "taskY": 18036, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.8532901110035], [121.706542946949, 17.8532901110035], [121.706542946949, 17.8637470813091], [121.695556618826, 17.8637470813091], [121.695556618826, 17.8532901110035]]]]}, "properties": {"taskId": 5515, "taskX": 27461, "taskY": 18036, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.9369286344414], [121.78344724381, 17.9369286344414], [121.78344724381, 17.9473806755755], [121.772460915687, 17.9473806755755], [121.772460915687, 17.9369286344414]]]]}, "properties": {"taskId": 5517, "taskX": 27468, "taskY": 18044, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78344724381, 17.9473806755755], [121.794433571933, 17.9473806755755], [121.794433571933, 17.957832099161], [121.78344724381, 17.957832099161], [121.78344724381, 17.9473806755755]]]]}, "properties": {"taskId": 5520, "taskX": 27469, "taskY": 18045, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.9369286344414], [121.761474587564, 17.9369286344414], [121.761474587564, 17.9473806755755], [121.750488259441, 17.9473806755755], [121.750488259441, 17.9369286344414]]]]}, "properties": {"taskId": 5521, "taskX": 27466, "taskY": 18044, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.9473806755755], [121.772460915687, 17.9473806755755], [121.772460915687, 17.957832099161], [121.761474587564, 17.957832099161], [121.761474587564, 17.9473806755755]]]]}, "properties": {"taskId": 5524, "taskX": 27467, "taskY": 18045, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.9473806755755], [121.761474587564, 17.9473806755755], [121.761474587564, 17.957832099161], [121.750488259441, 17.957832099161], [121.750488259441, 17.9473806755755]]]]}, "properties": {"taskId": 5522, "taskX": 27466, "taskY": 18045, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.9369286344414], [121.772460915687, 17.9369286344414], [121.772460915687, 17.9473806755755], [121.761474587564, 17.9473806755755], [121.761474587564, 17.9369286344414]]]]}, "properties": {"taskId": 5523, "taskX": 27467, "taskY": 18044, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.8742034365596], [121.695556618826, 17.8742034365596], [121.695556618826, 17.8846591764432], [121.684570290703, 17.8846591764432], [121.684570290703, 17.8742034365596]]]]}, "properties": {"taskId": 5525, "taskX": 27460, "taskY": 18038, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.8637470813091], [121.728515603195, 17.8637470813091], [121.728515603195, 17.8742034365596], [121.717529275072, 17.8742034365596], [121.717529275072, 17.8637470813091]]]]}, "properties": {"taskId": 5532, "taskX": 27463, "taskY": 18037, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.8689753358357], [121.701049782888, 17.8689753358357], [121.701049782888, 17.8742034365596], [121.695556618826, 17.8742034365596], [121.695556618826, 17.8689753358357]]]]}, "properties": {"taskId": 5534, "taskX": 54922, "taskY": 36075, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.723022439134, 17.6518739861627], [121.725769021164, 17.6518739861627], [121.725769021164, 17.6544912305301], [121.723022439134, 17.6544912305301], [121.723022439134, 17.6518739861627]]]]}, "properties": {"taskId": 5538, "taskX": 109854, "taskY": 72067, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.8637470813091], [121.706542946949, 17.8637470813091], [121.706542946949, 17.8689753358357], [121.701049782888, 17.8689753358357], [121.701049782888, 17.8637470813091]]]]}, "properties": {"taskId": 5535, "taskX": 54923, "taskY": 36074, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 17.5602465002479], [121.585693337596, 17.5602465002479], [121.585693337596, 17.5707205649901], [121.574707009473, 17.5707205649901], [121.574707009473, 17.5602465002479]]]]}, "properties": {"taskId": 5541, "taskX": 27450, "taskY": 18008, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 17.5707205649901], [121.596679665719, 17.5707205649901], [121.596679665719, 17.5811940234556], [121.585693337596, 17.5811940234556], [121.585693337596, 17.5707205649901]]]]}, "properties": {"taskId": 5544, "taskX": 27451, "taskY": 18009, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 17.5602465002479], [121.596679665719, 17.5602465002479], [121.596679665719, 17.5707205649901], [121.585693337596, 17.5707205649901], [121.585693337596, 17.5602465002479]]]]}, "properties": {"taskId": 5543, "taskX": 27451, "taskY": 18008, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 17.5707205649901], [121.585693337596, 17.5707205649901], [121.585693337596, 17.5811940234556], [121.574707009473, 17.5811940234556], [121.574707009473, 17.5707205649901]]]]}, "properties": {"taskId": 5542, "taskX": 27450, "taskY": 18009, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.8637470813091], [121.701049782888, 17.8637470813091], [121.701049782888, 17.8689753358357], [121.695556618826, 17.8689753358357], [121.695556618826, 17.8637470813091]]]]}, "properties": {"taskId": 5533, "taskX": 54922, "taskY": 36074, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.8689753358357], [121.706542946949, 17.8689753358357], [121.706542946949, 17.8742034365596], [121.701049782888, 17.8742034365596], [121.701049782888, 17.8689753358357]]]]}, "properties": {"taskId": 5536, "taskX": 54923, "taskY": 36075, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.723022439134, 17.6492567037506], [121.725769021164, 17.6492567037506], [121.725769021164, 17.6518739861627], [121.723022439134, 17.6518739861627], [121.723022439134, 17.6492567037506]]]]}, "properties": {"taskId": 5537, "taskX": 109854, "taskY": 72066, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.725769021164, 17.6518739861627], [121.728515603195, 17.6518739861627], [121.728515603195, 17.6544912305301], [121.725769021164, 17.6544912305301], [121.725769021164, 17.6518739861627]]]]}, "properties": {"taskId": 5540, "taskX": 109855, "taskY": 72067, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.725769021164, 17.6492567037506], [121.728515603195, 17.6492567037506], [121.728515603195, 17.6518739861627], [121.725769021164, 17.6518739861627], [121.725769021164, 17.6492567037506]]]]}, "properties": {"taskId": 5539, "taskX": 109855, "taskY": 72066, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.541748025104, 18.3910176103179], [121.547241189165, 18.3910176103179], [121.547241189165, 18.3962301348468], [121.541748025104, 18.3962301348468], [121.541748025104, 18.3910176103179]]]]}, "properties": {"taskId": 5434, "taskX": 54894, "taskY": 36175, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.635131814149, 17.9107958318747], [121.640624978211, 17.9107958318747], [121.640624978211, 17.9160227007731], [121.635131814149, 17.9160227007731], [121.635131814149, 17.9107958318747]]]]}, "properties": {"taskId": 5184, "taskX": 54911, "taskY": 36083, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.5392965531931], [121.761474587564, 17.5392965531931], [121.761474587564, 17.5497718295439], [121.750488259441, 17.5497718295439], [121.750488259441, 17.5392965531931]]]]}, "properties": {"taskId": 5545, "taskX": 27466, "taskY": 18006, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.5497718295439], [121.761474587564, 17.5497718295439], [121.761474587564, 17.5602465002479], [121.750488259441, 17.5602465002479], [121.750488259441, 17.5497718295439]]]]}, "properties": {"taskId": 5546, "taskX": 27466, "taskY": 18007, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 17.9055688088617], [121.635131814149, 17.9055688088617], [121.635131814149, 17.9107958318747], [121.629638650088, 17.9107958318747], [121.629638650088, 17.9055688088617]]]]}, "properties": {"taskId": 5181, "taskX": 54910, "taskY": 36082, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.8532901110035], [121.712036111011, 17.8532901110035], [121.712036111011, 17.8585186730187], [121.706542946949, 17.8585186730187], [121.706542946949, 17.8532901110035]]]]}, "properties": {"taskId": 5557, "taskX": 54924, "taskY": 36072, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.712036111011, 17.8585186730187], [121.717529275072, 17.8585186730187], [121.717529275072, 17.8637470813091], [121.712036111011, 17.8637470813091], [121.712036111011, 17.8585186730187]]]]}, "properties": {"taskId": 5560, "taskX": 54925, "taskY": 36073, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 17.8768174292334], [121.566467263381, 17.8768174292334], [121.566467263381, 17.8794313834418], [121.56372068135, 17.8794313834418], [121.56372068135, 17.8768174292334]]]]}, "properties": {"taskId": 5550, "taskX": 109796, "taskY": 72153, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.8898868155249], [121.690063454765, 17.8898868155249], [121.690063454765, 17.8951143006479], [121.684570290703, 17.8951143006479], [121.684570290703, 17.8898868155249]]]]}, "properties": {"taskId": 5554, "taskX": 54920, "taskY": 36079, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 17.8742034365596], [121.566467263381, 17.8742034365596], [121.566467263381, 17.8768174292334], [121.56372068135, 17.8768174292334], [121.56372068135, 17.8742034365596]]]]}, "properties": {"taskId": 5549, "taskX": 109796, "taskY": 72152, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.566467263381, 17.8768174292334], [121.569213845411, 17.8768174292334], [121.569213845411, 17.8794313834418], [121.566467263381, 17.8794313834418], [121.566467263381, 17.8768174292334]]]]}, "properties": {"taskId": 5552, "taskX": 109797, "taskY": 72153, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.8846591764432], [121.690063454765, 17.8846591764432], [121.690063454765, 17.8898868155249], [121.684570290703, 17.8898868155249], [121.684570290703, 17.8846591764432]]]]}, "properties": {"taskId": 5553, "taskX": 54920, "taskY": 36078, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.690063454765, 17.8898868155249], [121.695556618826, 17.8898868155249], [121.695556618826, 17.8951143006479], [121.690063454765, 17.8951143006479], [121.690063454765, 17.8898868155249]]]]}, "properties": {"taskId": 5556, "taskX": 54921, "taskY": 36079, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.566467263381, 17.8742034365596], [121.569213845411, 17.8742034365596], [121.569213845411, 17.8768174292334], [121.566467263381, 17.8768174292334], [121.566467263381, 17.8742034365596]]]]}, "properties": {"taskId": 5551, "taskX": 109797, "taskY": 72152, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.690063454765, 17.8846591764432], [121.695556618826, 17.8846591764432], [121.695556618826, 17.8898868155249], [121.690063454765, 17.8898868155249], [121.690063454765, 17.8846591764432]]]]}, "properties": {"taskId": 5555, "taskX": 54921, "taskY": 36078, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 17.8585186730187], [121.712036111011, 17.8585186730187], [121.712036111011, 17.8637470813091], [121.706542946949, 17.8637470813091], [121.706542946949, 17.8585186730187]]]]}, "properties": {"taskId": 5558, "taskX": 54924, "taskY": 36073, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.712036111011, 17.8532901110035], [121.717529275072, 17.8532901110035], [121.717529275072, 17.8585186730187], [121.712036111011, 17.8585186730187], [121.712036111011, 17.8532901110035]]]]}, "properties": {"taskId": 5559, "taskX": 54925, "taskY": 36072, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.475830056365, 17.6806615806697], [121.481323220427, 17.6806615806697], [121.481323220427, 17.6858951936713], [121.475830056365, 17.6858951936713], [121.475830056365, 17.6806615806697]]]]}, "properties": {"taskId": 5562, "taskX": 54882, "taskY": 36039, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.6649598274553], [121.618652321965, 17.6649598274553], [121.618652321965, 17.6858951936713], [121.596679665719, 17.6858951936713], [121.596679665719, 17.6649598274553]]]]}, "properties": {"taskId": 5578, "taskX": 13726, "taskY": 9009, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.6649598274553], [121.640624978211, 17.6649598274553], [121.640624978211, 17.6858951936713], [121.618652321965, 17.6858951936713], [121.618652321965, 17.6649598274553]]]]}, "properties": {"taskId": 5580, "taskX": 13727, "taskY": 9009, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.475830056365, 17.6754278152737], [121.481323220427, 17.6754278152737], [121.481323220427, 17.6806615806697], [121.475830056365, 17.6806615806697], [121.475830056365, 17.6754278152737]]]]}, "properties": {"taskId": 5561, "taskX": 54882, "taskY": 36038, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.481323220427, 17.6754278152737], [121.486816384489, 17.6754278152737], [121.486816384489, 17.6806615806697], [121.481323220427, 17.6806615806697], [121.481323220427, 17.6754278152737]]]]}, "properties": {"taskId": 5563, "taskX": 54883, "taskY": 36038, "taskZoom": 16, "taskSplittable": true, "taskStatus": "INVALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.6858951936713], [121.618652321965, 17.6858951936713], [121.618652321965, 17.7068281209488], [121.596679665719, 17.7068281209488], [121.596679665719, 17.6858951936713]]]]}, "properties": {"taskId": 5565, "taskX": 13726, "taskY": 9010, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.6858951936713], [121.640624978211, 17.6858951936713], [121.640624978211, 17.7068281209488], [121.618652321965, 17.7068281209488], [121.618652321965, 17.6858951936713]]]]}, "properties": {"taskId": 5567, "taskX": 13727, "taskY": 9010, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.7068281209488], [121.618652321965, 17.7068281209488], [121.618652321965, 17.7277586067781], [121.596679665719, 17.7277586067781], [121.596679665719, 17.7068281209488]]]]}, "properties": {"taskId": 5566, "taskX": 13726, "taskY": 9011, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.7068281209488], [121.640624978211, 17.7068281209488], [121.640624978211, 17.7277586067781], [121.618652321965, 17.7277586067781], [121.618652321965, 17.7068281209488]]]]}, "properties": {"taskId": 5568, "taskX": 13727, "taskY": 9011, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.6858951936713], [121.574707009473, 17.6858951936713], [121.574707009473, 17.7068281209488], [121.552734353227, 17.7068281209488], [121.552734353227, 17.6858951936713]]]]}, "properties": {"taskId": 5569, "taskX": 13724, "taskY": 9010, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.7068281209488], [121.574707009473, 17.7068281209488], [121.574707009473, 17.7277586067781], [121.552734353227, 17.7277586067781], [121.552734353227, 17.7068281209488]]]]}, "properties": {"taskId": 5570, "taskX": 13724, "taskY": 9011, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 17.7068281209488], [121.596679665719, 17.7068281209488], [121.596679665719, 17.7277586067781], [121.574707009473, 17.7277586067781], [121.574707009473, 17.7068281209488]]]]}, "properties": {"taskId": 5572, "taskX": 13725, "taskY": 9011, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.6440220248121], [121.662597634457, 17.6440220248121], [121.662597634457, 17.6649598274553], [121.640624978211, 17.6649598274553], [121.640624978211, 17.6440220248121]]]]}, "properties": {"taskId": 5573, "taskX": 13728, "taskY": 9008, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 17.6649598274553], [121.684570290703, 17.6649598274553], [121.684570290703, 17.6858951936713], [121.662597634457, 17.6858951936713], [121.662597634457, 17.6649598274553]]]]}, "properties": {"taskId": 5576, "taskX": 13729, "taskY": 9009, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.6440220248121], [121.618652321965, 17.6440220248121], [121.618652321965, 17.6649598274553], [121.596679665719, 17.6649598274553], [121.596679665719, 17.6440220248121]]]]}, "properties": {"taskId": 5577, "taskX": 13726, "taskY": 9008, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.6440220248121], [121.640624978211, 17.6440220248121], [121.640624978211, 17.6649598274553], [121.618652321965, 17.6649598274553], [121.618652321965, 17.6440220248121]]]]}, "properties": {"taskId": 5579, "taskX": 13727, "taskY": 9008, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.349311741122], [121.657104470395, 18.349311741122], [121.657104470395, 18.3545255259514], [121.651611306334, 18.3545255259514], [121.651611306334, 18.349311741122]]]]}, "properties": {"taskId": 5582, "taskX": 54914, "taskY": 36167, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 18.3440977989279], [121.662597634457, 18.3440977989279], [121.662597634457, 18.349311741122], [121.657104470395, 18.349311741122], [121.657104470395, 18.3440977989279]]]]}, "properties": {"taskId": 5583, "taskX": 54915, "taskY": 36166, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.3440977989279], [121.657104470395, 18.3440977989279], [121.657104470395, 18.349311741122], [121.651611306334, 18.349311741122], [121.651611306334, 18.3440977989279]]]]}, "properties": {"taskId": 5581, "taskX": 54914, "taskY": 36166, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 18.349311741122], [121.662597634457, 18.349311741122], [121.662597634457, 18.3545255259514], [121.657104470395, 18.3545255259514], [121.657104470395, 18.349311741122]]]]}, "properties": {"taskId": 5584, "taskX": 54915, "taskY": 36167, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.5392965531931], [121.766967751626, 17.5392965531931], [121.766967751626, 17.5445342670546], [121.761474587564, 17.5445342670546], [121.761474587564, 17.5392965531931]]]]}, "properties": {"taskId": 5585, "taskX": 54934, "taskY": 36012, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.766967751626, 17.5445342670546], [121.772460915687, 17.5445342670546], [121.772460915687, 17.5497718295439], [121.766967751626, 17.5497718295439], [121.766967751626, 17.5445342670546]]]]}, "properties": {"taskId": 5588, "taskX": 54935, "taskY": 36013, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.8898868155249], [121.701049782888, 17.8898868155249], [121.701049782888, 17.8951143006479], [121.695556618826, 17.8951143006479], [121.695556618826, 17.8898868155249]]]]}, "properties": {"taskId": 5590, "taskX": 54922, "taskY": 36079, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.8114560854768], [121.662597634457, 17.8114560854768], [121.662597634457, 17.8323743264764], [121.640624978211, 17.8323743264764], [121.640624978211, 17.8114560854768]]]]}, "properties": {"taskId": 4121, "taskX": 13728, "taskY": 9016, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.766967751626, 17.5392965531931], [121.772460915687, 17.5392965531931], [121.772460915687, 17.5445342670546], [121.766967751626, 17.5445342670546], [121.766967751626, 17.5392965531931]]]]}, "properties": {"taskId": 5587, "taskX": 54935, "taskY": 36012, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.5445342670546], [121.766967751626, 17.5445342670546], [121.766967751626, 17.5497718295439], [121.761474587564, 17.5497718295439], [121.761474587564, 17.5445342670546]]]]}, "properties": {"taskId": 5586, "taskX": 54934, "taskY": 36013, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.8846591764432], [121.701049782888, 17.8846591764432], [121.701049782888, 17.8898868155249], [121.695556618826, 17.8898868155249], [121.695556618826, 17.8846591764432]]]]}, "properties": {"taskId": 5589, "taskX": 54922, "taskY": 36078, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.8898868155249], [121.706542946949, 17.8898868155249], [121.706542946949, 17.8951143006479], [121.701049782888, 17.8951143006479], [121.701049782888, 17.8898868155249]]]]}, "properties": {"taskId": 5592, "taskX": 54923, "taskY": 36079, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.6649598274553], [121.651611306334, 17.6649598274553], [121.651611306334, 17.6754278152737], [121.640624978211, 17.6754278152737], [121.640624978211, 17.6649598274553]]]]}, "properties": {"taskId": 5629, "taskX": 27456, "taskY": 18018, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 17.6754278152737], [121.662597634457, 17.6754278152737], [121.662597634457, 17.6858951936713], [121.651611306334, 17.6858951936713], [121.651611306334, 17.6754278152737]]]]}, "properties": {"taskId": 5632, "taskX": 27457, "taskY": 18019, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.6754278152737], [121.651611306334, 17.6754278152737], [121.651611306334, 17.6858951936713], [121.640624978211, 17.6858951936713], [121.640624978211, 17.6754278152737]]]]}, "properties": {"taskId": 5630, "taskX": 27456, "taskY": 18019, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.8846591764432], [121.706542946949, 17.8846591764432], [121.706542946949, 17.8898868155249], [121.701049782888, 17.8898868155249], [121.701049782888, 17.8846591764432]]]]}, "properties": {"taskId": 5591, "taskX": 54923, "taskY": 36078, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.8637470813091], [121.690063454765, 17.8637470813091], [121.690063454765, 17.8689753358357], [121.684570290703, 17.8689753358357], [121.684570290703, 17.8637470813091]]]]}, "properties": {"taskId": 5593, "taskX": 54920, "taskY": 36074, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.690063454765, 17.8637470813091], [121.695556618826, 17.8637470813091], [121.695556618826, 17.8689753358357], [121.690063454765, 17.8689753358357], [121.690063454765, 17.8637470813091]]]]}, "properties": {"taskId": 5595, "taskX": 54921, "taskY": 36074, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.8689753358357], [121.690063454765, 17.8689753358357], [121.690063454765, 17.8742034365596], [121.684570290703, 17.8742034365596], [121.684570290703, 17.8689753358357]]]]}, "properties": {"taskId": 5594, "taskX": 54920, "taskY": 36075, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.690063454765, 17.8689753358357], [121.695556618826, 17.8689753358357], [121.695556618826, 17.8742034365596], [121.690063454765, 17.8742034365596], [121.690063454765, 17.8689753358357]]]]}, "properties": {"taskId": 5596, "taskX": 54921, "taskY": 36075, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 18.2397859676821], [121.728515603195, 18.2397859676821], [121.728515603195, 18.2502199739071], [121.717529275072, 18.2502199739071], [121.717529275072, 18.2397859676821]]]]}, "properties": {"taskId": 5600, "taskX": 27463, "taskY": 18073, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.1667304070769], [121.475830056365, 18.1667304070769], [121.475830056365, 18.1771687903979], [121.464843728242, 18.1771687903979], [121.464843728242, 18.1667304070769]]]]}, "properties": {"taskId": 5609, "taskX": 27440, "taskY": 18066, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.475830056365, 18.1667304070769], [121.486816384489, 18.1667304070769], [121.486816384489, 18.1771687903979], [121.475830056365, 18.1771687903979], [121.475830056365, 18.1667304070769]]]]}, "properties": {"taskId": 5611, "taskX": 27441, "taskY": 18066, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 18.2293513352315], [121.717529275072, 18.2293513352315], [121.717529275072, 18.2397859676821], [121.706542946949, 18.2397859676821], [121.706542946949, 18.2293513352315]]]]}, "properties": {"taskId": 5597, "taskX": 27462, "taskY": 18072, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 18.2293513352315], [121.728515603195, 18.2293513352315], [121.728515603195, 18.2397859676821], [121.717529275072, 18.2397859676821], [121.717529275072, 18.2293513352315]]]]}, "properties": {"taskId": 5599, "taskX": 27463, "taskY": 18072, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.1771687903979], [121.475830056365, 18.1771687903979], [121.475830056365, 18.1876065493462], [121.464843728242, 18.1876065493462], [121.464843728242, 18.1771687903979]]]]}, "properties": {"taskId": 5610, "taskX": 27440, "taskY": 18067, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.475830056365, 18.1771687903979], [121.486816384489, 18.1771687903979], [121.486816384489, 18.1876065493462], [121.475830056365, 18.1876065493462], [121.475830056365, 18.1771687903979]]]]}, "properties": {"taskId": 5612, "taskX": 27441, "taskY": 18067, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.1354115139683], [121.651611306334, 18.1354115139683], [121.651611306334, 18.1458517685528], [121.640624978211, 18.1458517685528], [121.640624978211, 18.1354115139683]]]]}, "properties": {"taskId": 5602, "taskX": 27456, "taskY": 18063, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.1354115139683], [121.662597634457, 18.1354115139683], [121.662597634457, 18.1458517685528], [121.651611306334, 18.1458517685528], [121.651611306334, 18.1354115139683]]]]}, "properties": {"taskId": 5604, "taskX": 27457, "taskY": 18063, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.1249706362482], [121.651611306334, 18.1249706362482], [121.651611306334, 18.1354115139683], [121.640624978211, 18.1354115139683], [121.640624978211, 18.1249706362482]]]]}, "properties": {"taskId": 5601, "taskX": 27456, "taskY": 18062, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.1249706362482], [121.662597634457, 18.1249706362482], [121.662597634457, 18.1354115139683], [121.651611306334, 18.1354115139683], [121.651611306334, 18.1249706362482]]]]}, "properties": {"taskId": 5603, "taskX": 27457, "taskY": 18062, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 18.1458517685528], [121.629638650088, 18.1458517685528], [121.629638650088, 18.156291399692], [121.618652321965, 18.156291399692], [121.618652321965, 18.1458517685528]]]]}, "properties": {"taskId": 5605, "taskX": 27454, "taskY": 18064, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 18.1458517685528], [121.640624978211, 18.1458517685528], [121.640624978211, 18.156291399692], [121.629638650088, 18.156291399692], [121.629638650088, 18.1458517685528]]]]}, "properties": {"taskId": 5607, "taskX": 27455, "taskY": 18064, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.2084801928881], [121.56372068135, 18.2084801928881], [121.56372068135, 18.218916076864], [121.552734353227, 18.218916076864], [121.552734353227, 18.2084801928881]]]]}, "properties": {"taskId": 5613, "taskX": 27448, "taskY": 18070, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 18.2084801928881], [121.574707009473, 18.2084801928881], [121.574707009473, 18.218916076864], [121.56372068135, 18.218916076864], [121.56372068135, 18.2084801928881]]]]}, "properties": {"taskId": 5615, "taskX": 27449, "taskY": 18070, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 18.156291399692], [121.629638650088, 18.156291399692], [121.629638650088, 18.1667304070769], [121.618652321965, 18.1667304070769], [121.618652321965, 18.156291399692]]]]}, "properties": {"taskId": 5606, "taskX": 27454, "taskY": 18065, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 18.156291399692], [121.640624978211, 18.156291399692], [121.640624978211, 18.1667304070769], [121.629638650088, 18.1667304070769], [121.629638650088, 18.156291399692]]]]}, "properties": {"taskId": 5608, "taskX": 27455, "taskY": 18065, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.218916076864], [121.56372068135, 18.218916076864], [121.56372068135, 18.2293513352315], [121.552734353227, 18.2293513352315], [121.552734353227, 18.218916076864]]]]}, "properties": {"taskId": 5614, "taskX": 27448, "taskY": 18071, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 18.218916076864], [121.574707009473, 18.218916076864], [121.574707009473, 18.2293513352315], [121.56372068135, 18.2293513352315], [121.56372068135, 18.218916076864]]]]}, "properties": {"taskId": 5616, "taskX": 27449, "taskY": 18071, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 18.1667304070769], [121.684570290703, 18.1667304070769], [121.684570290703, 18.1719496767647], [121.679077126642, 18.1719496767647], [121.679077126642, 18.1667304070769]]]]}, "properties": {"taskId": 5623, "taskX": 54919, "taskY": 36132, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.668090798519, 18.1667304070769], [121.67358396258, 18.1667304070769], [121.67358396258, 18.1719496767647], [121.668090798519, 18.1719496767647], [121.668090798519, 18.1667304070769]]]]}, "properties": {"taskId": 5619, "taskX": 54917, "taskY": 36132, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 17.6858951936713], [121.596679665719, 17.6858951936713], [121.596679665719, 17.6963619623342], [121.585693337596, 17.6963619623342], [121.585693337596, 17.6858951936713]]]]}, "properties": {"taskId": 5635, "taskX": 27451, "taskY": 18020, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.1667304070769], [121.668090798519, 18.1667304070769], [121.668090798519, 18.1719496767647], [121.662597634457, 18.1719496767647], [121.662597634457, 18.1667304070769]]]]}, "properties": {"taskId": 5617, "taskX": 54916, "taskY": 36132, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.668090798519, 18.1719496767647], [121.67358396258, 18.1719496767647], [121.67358396258, 18.1771687903979], [121.668090798519, 18.1771687903979], [121.668090798519, 18.1719496767647]]]]}, "properties": {"taskId": 5620, "taskX": 54917, "taskY": 36133, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 17.6858951936713], [121.585693337596, 17.6858951936713], [121.585693337596, 17.6963619623342], [121.574707009473, 17.6963619623342], [121.574707009473, 17.6858951936713]]]]}, "properties": {"taskId": 5633, "taskX": 27450, "taskY": 18020, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 17.6963619623342], [121.596679665719, 17.6963619623342], [121.596679665719, 17.7068281209488], [121.585693337596, 17.7068281209488], [121.585693337596, 17.6963619623342]]]]}, "properties": {"taskId": 5636, "taskX": 27451, "taskY": 18021, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.1719496767647], [121.668090798519, 18.1719496767647], [121.668090798519, 18.1771687903979], [121.662597634457, 18.1771687903979], [121.662597634457, 18.1719496767647]]]]}, "properties": {"taskId": 5618, "taskX": 54916, "taskY": 36133, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 17.6963619623342], [121.585693337596, 17.6963619623342], [121.585693337596, 17.7068281209488], [121.574707009473, 17.7068281209488], [121.574707009473, 17.6963619623342]]]]}, "properties": {"taskId": 5634, "taskX": 27450, "taskY": 18021, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.1667304070769], [121.679077126642, 18.1667304070769], [121.679077126642, 18.1719496767647], [121.67358396258, 18.1719496767647], [121.67358396258, 18.1667304070769]]]]}, "properties": {"taskId": 5621, "taskX": 54918, "taskY": 36132, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 18.1719496767647], [121.684570290703, 18.1719496767647], [121.684570290703, 18.1771687903979], [121.679077126642, 18.1771687903979], [121.679077126642, 18.1719496767647]]]]}, "properties": {"taskId": 5624, "taskX": 54919, "taskY": 36133, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 18.1719496767647], [121.679077126642, 18.1719496767647], [121.679077126642, 18.1771687903979], [121.67358396258, 18.1771687903979], [121.67358396258, 18.1719496767647]]]]}, "properties": {"taskId": 5622, "taskX": 54918, "taskY": 36133, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.1667304070769], [121.657104470395, 18.1667304070769], [121.657104470395, 18.1719496767647], [121.651611306334, 18.1719496767647], [121.651611306334, 18.1667304070769]]]]}, "properties": {"taskId": 5625, "taskX": 54914, "taskY": 36132, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 18.1719496767647], [121.662597634457, 18.1719496767647], [121.662597634457, 18.1771687903979], [121.657104470395, 18.1771687903979], [121.657104470395, 18.1719496767647]]]]}, "properties": {"taskId": 5628, "taskX": 54915, "taskY": 36133, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.1719496767647], [121.657104470395, 18.1719496767647], [121.657104470395, 18.1771687903979], [121.651611306334, 18.1771687903979], [121.651611306334, 18.1719496767647]]]]}, "properties": {"taskId": 5626, "taskX": 54914, "taskY": 36133, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 18.1667304070769], [121.662597634457, 18.1667304070769], [121.662597634457, 18.1719496767647], [121.657104470395, 18.1719496767647], [121.657104470395, 18.1667304070769]]]]}, "properties": {"taskId": 5627, "taskX": 54915, "taskY": 36132, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 18.1667304070769], [121.508789040735, 18.1667304070769], [121.508789040735, 18.1771687903979], [121.497802712612, 18.1771687903979], [121.497802712612, 18.1667304070769]]]]}, "properties": {"taskId": 4727, "taskX": 27443, "taskY": 18066, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 18.1771687903979], [121.497802712612, 18.1771687903979], [121.497802712612, 18.1876065493462], [121.486816384489, 18.1876065493462], [121.486816384489, 18.1771687903979]]]]}, "properties": {"taskId": 4726, "taskX": 27442, "taskY": 18067, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 17.9003416317732], [121.659851052426, 17.9003416317732], [121.659851052426, 17.9029552395745], [121.657104470395, 17.9029552395745], [121.657104470395, 17.9003416317732]]]]}, "properties": {"taskId": 5641, "taskX": 109830, "taskY": 72162, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.659851052426, 17.9029552395745], [121.662597634457, 17.9029552395745], [121.662597634457, 17.9055688088617], [121.659851052426, 17.9055688088617], [121.659851052426, 17.9029552395745]]]]}, "properties": {"taskId": 5644, "taskX": 109831, "taskY": 72163, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.2815182321454], [121.475830056365, 18.2815182321454], [121.475830056365, 18.2919497303851], [121.464843728242, 18.2919497303851], [121.464843728242, 18.2815182321454]]]]}, "properties": {"taskId": 5638, "taskX": 27440, "taskY": 18077, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.475830056365, 18.271086106447], [121.486816384489, 18.271086106447], [121.486816384489, 18.2815182321454], [121.475830056365, 18.2815182321454], [121.475830056365, 18.271086106447]]]]}, "properties": {"taskId": 5639, "taskX": 27441, "taskY": 18076, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 17.9029552395745], [121.659851052426, 17.9029552395745], [121.659851052426, 17.9055688088617], [121.657104470395, 17.9055688088617], [121.657104470395, 17.9029552395745]]]]}, "properties": {"taskId": 5642, "taskX": 109830, "taskY": 72163, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.659851052426, 17.9003416317732], [121.662597634457, 17.9003416317732], [121.662597634457, 17.9029552395745], [121.659851052426, 17.9029552395745], [121.659851052426, 17.9003416317732]]]]}, "properties": {"taskId": 5643, "taskX": 109831, "taskY": 72162, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 18.271086106447], [121.475830056365, 18.271086106447], [121.475830056365, 18.2815182321454], [121.464843728242, 18.2815182321454], [121.464843728242, 18.271086106447]]]]}, "properties": {"taskId": 5637, "taskX": 27440, "taskY": 18076, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.475830056365, 18.2815182321454], [121.486816384489, 18.2815182321454], [121.486816384489, 18.2919497303851], [121.475830056365, 18.2919497303851], [121.475830056365, 18.2815182321454]]]]}, "properties": {"taskId": 5640, "taskX": 27441, "taskY": 18077, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 18.2397859676821], [121.712036111011, 18.2397859676821], [121.712036111011, 18.245003049092], [121.706542946949, 18.245003049092], [121.706542946949, 18.2397859676821]]]]}, "properties": {"taskId": 5645, "taskX": 54924, "taskY": 36146, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.712036111011, 18.2397859676821], [121.717529275072, 18.2397859676821], [121.717529275072, 18.245003049092], [121.712036111011, 18.245003049092], [121.712036111011, 18.2397859676821]]]]}, "properties": {"taskId": 5647, "taskX": 54925, "taskY": 36146, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.706542946949, 18.245003049092], [121.712036111011, 18.245003049092], [121.712036111011, 18.2502199739071], [121.706542946949, 18.2502199739071], [121.706542946949, 18.245003049092]]]]}, "properties": {"taskId": 5646, "taskX": 54924, "taskY": 36147, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.712036111011, 18.245003049092], [121.717529275072, 18.245003049092], [121.717529275072, 18.2502199739071], [121.712036111011, 18.2502199739071], [121.712036111011, 18.245003049092]]]]}, "properties": {"taskId": 5648, "taskX": 54925, "taskY": 36147, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.3649526233622], [121.514282204796, 18.3649526233622], [121.514282204796, 18.3701659358669], [121.508789040735, 18.3701659358669], [121.508789040735, 18.3649526233622]]]]}, "properties": {"taskId": 5649, "taskX": 54888, "taskY": 36170, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.514282204796, 18.3649526233622], [121.519775368858, 18.3649526233622], [121.519775368858, 18.3701659358669], [121.514282204796, 18.3701659358669], [121.514282204796, 18.3649526233622]]]]}, "properties": {"taskId": 5651, "taskX": 54889, "taskY": 36170, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 18.3701659358669], [121.514282204796, 18.3701659358669], [121.514282204796, 18.3753790908532], [121.508789040735, 18.3753790908532], [121.508789040735, 18.3701659358669]]]]}, "properties": {"taskId": 5650, "taskX": 54888, "taskY": 36171, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.514282204796, 18.3701659358669], [121.519775368858, 18.3701659358669], [121.519775368858, 18.3753790908532], [121.514282204796, 18.3753790908532], [121.514282204796, 18.3701659358669]]]]}, "properties": {"taskId": 5652, "taskX": 54889, "taskY": 36171, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.2293513352315], [121.56372068135, 18.2293513352315], [121.56372068135, 18.2397859676821], [121.552734353227, 18.2397859676821], [121.552734353227, 18.2293513352315]]]]}, "properties": {"taskId": 5657, "taskX": 27448, "taskY": 18072, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 18.2397859676821], [121.574707009473, 18.2397859676821], [121.574707009473, 18.2502199739071], [121.56372068135, 18.2502199739071], [121.56372068135, 18.2397859676821]]]]}, "properties": {"taskId": 5660, "taskX": 27449, "taskY": 18073, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 17.6963619623342], [121.453857400119, 17.6963619623342], [121.453857400119, 17.7068281209488], [121.442871071996, 17.7068281209488], [121.442871071996, 17.6963619623342]]]]}, "properties": {"taskId": 5654, "taskX": 27438, "taskY": 18021, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.646118142272, 17.9029552395745], [121.648864724303, 17.9029552395745], [121.648864724303, 17.9055688088617], [121.646118142272, 17.9055688088617], [121.646118142272, 17.9029552395745]]]]}, "properties": {"taskId": 5714, "taskX": 109826, "taskY": 72163, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 17.5811940234556], [121.552734353227, 17.5811940234556], [121.552734353227, 17.602139120297], [121.530761696981, 17.602139120297], [121.530761696981, 17.5811940234556]]]]}, "properties": {"taskId": 5684, "taskX": 13723, "taskY": 9005, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.558227517288, 17.8532901110035], [121.56372068135, 17.8532901110035], [121.56372068135, 17.8585186730187], [121.558227517288, 17.8585186730187], [121.558227517288, 17.8532901110035]]]]}, "properties": {"taskId": 5707, "taskX": 54897, "taskY": 36072, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.453857400119, 17.6858951936713], [121.464843728242, 17.6858951936713], [121.464843728242, 17.6963619623342], [121.453857400119, 17.6963619623342], [121.453857400119, 17.6858951936713]]]]}, "properties": {"taskId": 5655, "taskX": 27439, "taskY": 18020, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 18.1771687903979], [121.67358396258, 18.1771687903979], [121.67358396258, 18.1876065493462], [121.662597634457, 18.1876065493462], [121.662597634457, 18.1771687903979]]]]}, "properties": {"taskId": 5426, "taskX": 27458, "taskY": 18067, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 17.6858951936713], [121.453857400119, 17.6858951936713], [121.453857400119, 17.6963619623342], [121.442871071996, 17.6963619623342], [121.442871071996, 17.6858951936713]]]]}, "properties": {"taskId": 5653, "taskX": 27438, "taskY": 18020, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.696929909841, 17.553699902049], [121.697616555349, 17.553699902049], [121.697616555349, 17.5543545725184], [121.696929909841, 17.5543545725184], [121.696929909841, 17.553699902049]]]]}, "properties": {"taskId": 4717, "taskX": 439378, "taskY": 288118, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.646118142272, 17.8951143006479], [121.651611306334, 17.8951143006479], [121.651611306334, 17.9003416317732], [121.646118142272, 17.9003416317732], [121.646118142272, 17.8951143006479]]]]}, "properties": {"taskId": 5703, "taskX": 54913, "taskY": 36080, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.646118142272, 17.9003416317732], [121.648864724303, 17.9003416317732], [121.648864724303, 17.9029552395745], [121.646118142272, 17.9029552395745], [121.646118142272, 17.9003416317732]]]]}, "properties": {"taskId": 5713, "taskX": 109826, "taskY": 72162, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.648864724303, 17.9029552395745], [121.651611306334, 17.9029552395745], [121.651611306334, 17.9055688088617], [121.648864724303, 17.9055688088617], [121.648864724303, 17.9029552395745]]]]}, "properties": {"taskId": 5716, "taskX": 109827, "taskY": 72163, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.648864724303, 17.9003416317732], [121.651611306334, 17.9003416317732], [121.651611306334, 17.9029552395745], [121.648864724303, 17.9029552395745], [121.648864724303, 17.9003416317732]]]]}, "properties": {"taskId": 5715, "taskX": 109827, "taskY": 72162, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 18.2397859676821], [121.56372068135, 18.2397859676821], [121.56372068135, 18.2502199739071], [121.552734353227, 18.2502199739071], [121.552734353227, 18.2397859676821]]]]}, "properties": {"taskId": 5658, "taskX": 27448, "taskY": 18073, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 18.2293513352315], [121.574707009473, 18.2293513352315], [121.574707009473, 18.2397859676821], [121.56372068135, 18.2397859676821], [121.56372068135, 18.2293513352315]]]]}, "properties": {"taskId": 5659, "taskX": 27449, "taskY": 18072, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.3440977989279], [121.643371560242, 18.3440977989279], [121.643371560242, 18.3467047896932], [121.640624978211, 18.3467047896932], [121.640624978211, 18.3440977989279]]]]}, "properties": {"taskId": 5669, "taskX": 109824, "taskY": 72332, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.643371560242, 18.3467047896932], [121.646118142272, 18.3467047896932], [121.646118142272, 18.349311741122], [121.643371560242, 18.349311741122], [121.643371560242, 18.3467047896932]]]]}, "properties": {"taskId": 5672, "taskX": 109825, "taskY": 72333, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.9029552395745], [121.643371560242, 17.9029552395745], [121.643371560242, 17.9055688088617], [121.640624978211, 17.9055688088617], [121.640624978211, 17.9029552395745]]]]}, "properties": {"taskId": 5710, "taskX": 109824, "taskY": 72163, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 17.5602465002479], [121.552734353227, 17.5602465002479], [121.552734353227, 17.5811940234556], [121.530761696981, 17.5811940234556], [121.530761696981, 17.5602465002479]]]]}, "properties": {"taskId": 5683, "taskX": 13723, "taskY": 9004, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.8532901110035], [121.558227517288, 17.8532901110035], [121.558227517288, 17.8585186730187], [121.552734353227, 17.8585186730187], [121.552734353227, 17.8532901110035]]]]}, "properties": {"taskId": 5705, "taskX": 54896, "taskY": 36072, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.558227517288, 17.8585186730187], [121.56372068135, 17.8585186730187], [121.56372068135, 17.8637470813091], [121.558227517288, 17.8637470813091], [121.558227517288, 17.8585186730187]]]]}, "properties": {"taskId": 5708, "taskX": 54897, "taskY": 36073, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 17.5811940234556], [121.530761696981, 17.5811940234556], [121.530761696981, 17.602139120297], [121.508789040735, 17.602139120297], [121.508789040735, 17.5811940234556]]]]}, "properties": {"taskId": 5682, "taskX": 13722, "taskY": 9005, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.8585186730187], [121.558227517288, 17.8585186730187], [121.558227517288, 17.8637470813091], [121.552734353227, 17.8637470813091], [121.552734353227, 17.8585186730187]]]]}, "properties": {"taskId": 5706, "taskX": 54896, "taskY": 36073, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.354980447012, 17.8114560854768], [121.365966775135, 17.8114560854768], [121.365966775135, 17.8219155128794], [121.354980447012, 17.8219155128794], [121.354980447012, 17.8114560854768]]]]}, "properties": {"taskId": 5029, "taskX": 27430, "taskY": 18032, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.6230817882545], [121.805419900056, 17.6230817882545], [121.805419900056, 17.6335522106155], [121.794433571933, 17.6335522106155], [121.794433571933, 17.6230817882545]]]]}, "properties": {"taskId": 5665, "taskX": 27470, "taskY": 18014, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.805419900056, 17.6230817882545], [121.81640622818, 17.6230817882545], [121.81640622818, 17.6335522106155], [121.805419900056, 17.6335522106155], [121.805419900056, 17.6230817882545]]]]}, "properties": {"taskId": 5667, "taskX": 27471, "taskY": 18014, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.602139120297], [121.618652321965, 17.602139120297], [121.618652321965, 17.6230817882545], [121.596679665719, 17.6230817882545], [121.596679665719, 17.602139120297]]]]}, "properties": {"taskId": 5661, "taskX": 13726, "taskY": 9006, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.602139120297], [121.640624978211, 17.602139120297], [121.640624978211, 17.6230817882545], [121.618652321965, 17.6230817882545], [121.618652321965, 17.602139120297]]]]}, "properties": {"taskId": 5663, "taskX": 13727, "taskY": 9006, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.777954079749, 17.5235825037687], [121.78344724381, 17.5235825037687], [121.78344724381, 17.5288206715107], [121.777954079749, 17.5288206715107], [121.777954079749, 17.5235825037687]]]]}, "properties": {"taskId": 5676, "taskX": 54937, "taskY": 36009, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.5209633631897], [121.775207497718, 17.5209633631897], [121.775207497718, 17.5235825037687], [121.772460915687, 17.5235825037687], [121.772460915687, 17.5209633631897]]]]}, "properties": {"taskId": 5678, "taskX": 109872, "taskY": 72017, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.777954079749, 17.518344184812], [121.78344724381, 17.518344184812], [121.78344724381, 17.5235825037687], [121.777954079749, 17.5235825037687], [121.777954079749, 17.518344184812]]]]}, "properties": {"taskId": 5675, "taskX": 54937, "taskY": 36008, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.518344184812], [121.775207497718, 17.518344184812], [121.775207497718, 17.5209633631897], [121.772460915687, 17.5209633631897], [121.772460915687, 17.518344184812]]]]}, "properties": {"taskId": 5677, "taskX": 109872, "taskY": 72016, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.775207497718, 17.5209633631897], [121.777954079749, 17.5209633631897], [121.777954079749, 17.5235825037687], [121.775207497718, 17.5235825037687], [121.775207497718, 17.5209633631897]]]]}, "properties": {"taskId": 5680, "taskX": 109873, "taskY": 72017, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.8951143006479], [121.646118142272, 17.8951143006479], [121.646118142272, 17.9003416317732], [121.640624978211, 17.9003416317732], [121.640624978211, 17.8951143006479]]]]}, "properties": {"taskId": 5701, "taskX": 54912, "taskY": 36080, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.805419900056, 17.6335522106155], [121.81640622818, 17.6335522106155], [121.81640622818, 17.6440220248121], [121.805419900056, 17.6440220248121], [121.805419900056, 17.6335522106155]]]]}, "properties": {"taskId": 5668, "taskX": 27471, "taskY": 18015, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.3467047896932], [121.643371560242, 18.3467047896932], [121.643371560242, 18.349311741122], [121.640624978211, 18.349311741122], [121.640624978211, 18.3467047896932]]]]}, "properties": {"taskId": 5670, "taskX": 109824, "taskY": 72333, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.9003416317732], [121.643371560242, 17.9003416317732], [121.643371560242, 17.9029552395745], [121.640624978211, 17.9029552395745], [121.640624978211, 17.9003416317732]]]]}, "properties": {"taskId": 5709, "taskX": 109824, "taskY": 72162, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.643371560242, 17.9029552395745], [121.646118142272, 17.9029552395745], [121.646118142272, 17.9055688088617], [121.643371560242, 17.9055688088617], [121.643371560242, 17.9029552395745]]]]}, "properties": {"taskId": 5712, "taskX": 109825, "taskY": 72163, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.643371560242, 18.3440977989279], [121.646118142272, 18.3440977989279], [121.646118142272, 18.3467047896932], [121.643371560242, 18.3467047896932], [121.643371560242, 18.3440977989279]]]]}, "properties": {"taskId": 5671, "taskX": 109825, "taskY": 72332, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.643371560242, 17.9003416317732], [121.646118142272, 17.9003416317732], [121.646118142272, 17.9029552395745], [121.643371560242, 17.9029552395745], [121.643371560242, 17.9003416317732]]]]}, "properties": {"taskId": 5711, "taskX": 109825, "taskY": 72162, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.5235825037687], [121.777954079749, 17.5235825037687], [121.777954079749, 17.5288206715107], [121.772460915687, 17.5288206715107], [121.772460915687, 17.5235825037687]]]]}, "properties": {"taskId": 5674, "taskX": 54936, "taskY": 36009, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.775207497718, 17.518344184812], [121.777954079749, 17.518344184812], [121.777954079749, 17.5209633631897], [121.775207497718, 17.5209633631897], [121.775207497718, 17.518344184812]]]]}, "properties": {"taskId": 5679, "taskX": 109873, "taskY": 72016, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 17.8846591764432], [121.566467263381, 17.8846591764432], [121.566467263381, 17.8872730152265], [121.56372068135, 17.8872730152265], [121.56372068135, 17.8846591764432]]]]}, "properties": {"taskId": 5693, "taskX": 109796, "taskY": 72156, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.566467263381, 17.8846591764432], [121.569213845411, 17.8846591764432], [121.569213845411, 17.8872730152265], [121.566467263381, 17.8872730152265], [121.566467263381, 17.8846591764432]]]]}, "properties": {"taskId": 5695, "taskX": 109797, "taskY": 72156, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 17.8872730152265], [121.566467263381, 17.8872730152265], [121.566467263381, 17.8898868155249], [121.56372068135, 17.8898868155249], [121.56372068135, 17.8872730152265]]]]}, "properties": {"taskId": 5694, "taskX": 109796, "taskY": 72157, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.566467263381, 17.8872730152265], [121.569213845411, 17.8872730152265], [121.569213845411, 17.8898868155249], [121.566467263381, 17.8898868155249], [121.566467263381, 17.8872730152265]]]]}, "properties": {"taskId": 5696, "taskX": 109797, "taskY": 72157, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.2919497303851], [121.651611306334, 18.2919497303851], [121.651611306334, 18.3023806008582], [121.640624978211, 18.3023806008582], [121.640624978211, 18.2919497303851]]]]}, "properties": {"taskId": 5685, "taskX": 27456, "taskY": 18078, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 18.3023806008582], [121.651611306334, 18.3023806008582], [121.651611306334, 18.3128108432568], [121.640624978211, 18.3128108432568], [121.640624978211, 18.3023806008582]]]]}, "properties": {"taskId": 5686, "taskX": 27456, "taskY": 18079, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.3023806008582], [121.662597634457, 18.3023806008582], [121.662597634457, 18.3128108432568], [121.651611306334, 18.3128108432568], [121.651611306334, 18.3023806008582]]]]}, "properties": {"taskId": 5688, "taskX": 27457, "taskY": 18079, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 17.8532901110035], [121.574707009473, 17.8532901110035], [121.574707009473, 17.8637470813091], [121.56372068135, 17.8637470813091], [121.56372068135, 17.8532901110035]]]]}, "properties": {"taskId": 5691, "taskX": 27449, "taskY": 18036, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.8637470813091], [121.558227517288, 17.8637470813091], [121.558227517288, 17.8689753358357], [121.552734353227, 17.8689753358357], [121.552734353227, 17.8637470813091]]]]}, "properties": {"taskId": 5697, "taskX": 54896, "taskY": 36074, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.558227517288, 17.8637470813091], [121.56372068135, 17.8637470813091], [121.56372068135, 17.8689753358357], [121.558227517288, 17.8689753358357], [121.558227517288, 17.8637470813091]]]]}, "properties": {"taskId": 5699, "taskX": 54897, "taskY": 36074, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.8689753358357], [121.558227517288, 17.8689753358357], [121.558227517288, 17.8742034365596], [121.552734353227, 17.8742034365596], [121.552734353227, 17.8689753358357]]]]}, "properties": {"taskId": 5698, "taskX": 54896, "taskY": 36075, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.558227517288, 17.8689753358357], [121.56372068135, 17.8689753358357], [121.56372068135, 17.8742034365596], [121.558227517288, 17.8742034365596], [121.558227517288, 17.8689753358357]]]]}, "properties": {"taskId": 5700, "taskX": 54897, "taskY": 36075, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 17.7591497523209], [121.475830056365, 17.7591497523209], [121.475830056365, 17.7696122440617], [121.464843728242, 17.7696122440617], [121.464843728242, 17.7591497523209]]]]}, "properties": {"taskId": 5722, "taskX": 27440, "taskY": 18027, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.6989785591922], [121.698303200857, 17.6989785591922], [121.698303200857, 17.7015951179171], [121.695556618826, 17.7015951179171], [121.695556618826, 17.6989785591922]]]]}, "properties": {"taskId": 5742, "taskX": 109844, "taskY": 72085, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.703796364918, 17.6858951936713], [121.706542946949, 17.6858951936713], [121.706542946949, 17.6885119430119], [121.703796364918, 17.6885119430119], [121.703796364918, 17.6858951936713]]]]}, "properties": {"taskId": 5747, "taskX": 109847, "taskY": 72080, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698303200857, 17.6963619623342], [121.701049782888, 17.6963619623342], [121.701049782888, 17.6989785591922], [121.698303200857, 17.6989785591922], [121.698303200857, 17.6963619623342]]]]}, "properties": {"taskId": 5743, "taskX": 109845, "taskY": 72084, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.6858951936713], [121.703796364918, 17.6858951936713], [121.703796364918, 17.6885119430119], [121.701049782888, 17.6885119430119], [121.701049782888, 17.6858951936713]]]]}, "properties": {"taskId": 5745, "taskX": 109846, "taskY": 72080, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.703796364918, 17.6885119430119], [121.706542946949, 17.6885119430119], [121.706542946949, 17.6911286542392], [121.703796364918, 17.6911286542392], [121.703796364918, 17.6885119430119]]]]}, "properties": {"taskId": 5748, "taskX": 109847, "taskY": 72081, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.6963619623342], [121.698303200857, 17.6963619623342], [121.698303200857, 17.6989785591922], [121.695556618826, 17.6989785591922], [121.695556618826, 17.6963619623342]]]]}, "properties": {"taskId": 5741, "taskX": 109844, "taskY": 72084, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698303200857, 17.6989785591922], [121.701049782888, 17.6989785591922], [121.701049782888, 17.7015951179171], [121.698303200857, 17.7015951179171], [121.698303200857, 17.6989785591922]]]]}, "properties": {"taskId": 5744, "taskX": 109845, "taskY": 72085, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.6885119430119], [121.703796364918, 17.6885119430119], [121.703796364918, 17.6911286542392], [121.701049782888, 17.6911286542392], [121.701049782888, 17.6885119430119]]]]}, "properties": {"taskId": 5746, "taskX": 109846, "taskY": 72081, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 18.2997729421099], [121.659851052426, 18.2997729421099], [121.659851052426, 18.3023806008582], [121.657104470395, 18.3023806008582], [121.657104470395, 18.2997729421099]]]]}, "properties": {"taskId": 5762, "taskX": 109830, "taskY": 72315, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.625699450843], [121.731262185226, 17.625699450843], [121.731262185226, 17.6283170754359], [121.728515603195, 17.6283170754359], [121.728515603195, 17.625699450843]]]]}, "properties": {"taskId": 5786, "taskX": 109856, "taskY": 72057, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.503295876673, 17.7068281209488], [121.508789040735, 17.7068281209488], [121.508789040735, 17.7120609713899], [121.503295876673, 17.7120609713899], [121.503295876673, 17.7068281209488]]]]}, "properties": {"taskId": 5719, "taskX": 54887, "taskY": 36044, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 17.7068281209488], [121.503295876673, 17.7068281209488], [121.503295876673, 17.7120609713899], [121.497802712612, 17.7120609713899], [121.497802712612, 17.7068281209488]]]]}, "properties": {"taskId": 5717, "taskX": 54886, "taskY": 36044, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.503295876673, 17.7120609713899], [121.508789040735, 17.7120609713899], [121.508789040735, 17.7172936692013], [121.503295876673, 17.7172936692013], [121.503295876673, 17.7120609713899]]]]}, "properties": {"taskId": 5720, "taskX": 54887, "taskY": 36045, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 17.7120609713899], [121.503295876673, 17.7120609713899], [121.503295876673, 17.7172936692013], [121.497802712612, 17.7172936692013], [121.497802712612, 17.7120609713899]]]]}, "properties": {"taskId": 5718, "taskX": 54886, "taskY": 36045, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.459350564181, 17.6963619623342], [121.464843728242, 17.6963619623342], [121.464843728242, 17.7015951179171], [121.459350564181, 17.7015951179171], [121.459350564181, 17.6963619623342]]]]}, "properties": {"taskId": 5739, "taskX": 54879, "taskY": 36042, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.712036111011, 17.6911286542392], [121.714782693041, 17.6911286542392], [121.714782693041, 17.6937453273483], [121.712036111011, 17.6937453273483], [121.712036111011, 17.6911286542392]]]]}, "properties": {"taskId": 5749, "taskX": 109850, "taskY": 72082, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.714782693041, 17.6937453273483], [121.717529275072, 17.6937453273483], [121.717529275072, 17.6963619623342], [121.714782693041, 17.6963619623342], [121.714782693041, 17.6937453273483]]]]}, "properties": {"taskId": 5752, "taskX": 109851, "taskY": 72083, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.2919497303851], [121.657104470395, 18.2919497303851], [121.657104470395, 18.2971652441117], [121.651611306334, 18.2971652441117], [121.651611306334, 18.2919497303851]]]]}, "properties": {"taskId": 5753, "taskX": 54914, "taskY": 36156, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 18.2919497303851], [121.659851052426, 18.2919497303851], [121.659851052426, 18.2945575068685], [121.657104470395, 18.2945575068685], [121.657104470395, 18.2919497303851]]]]}, "properties": {"taskId": 5757, "taskX": 109830, "taskY": 72312, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.659851052426, 18.2945575068685], [121.662597634457, 18.2945575068685], [121.662597634457, 18.2971652441117], [121.659851052426, 18.2971652441117], [121.659851052426, 18.2945575068685]]]]}, "properties": {"taskId": 5760, "taskX": 109831, "taskY": 72313, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.659851052426, 18.2971652441117], [121.662597634457, 18.2971652441117], [121.662597634457, 18.2997729421099], [121.659851052426, 18.2997729421099], [121.659851052426, 18.2971652441117]]]]}, "properties": {"taskId": 5763, "taskX": 109831, "taskY": 72314, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 17.7277586067781], [121.49230954855, 17.7277586067781], [121.49230954855, 17.7329908464652], [121.486816384489, 17.7329908464652], [121.486816384489, 17.7277586067781]]]]}, "properties": {"taskId": 5725, "taskX": 54884, "taskY": 36048, "taskZoom": 16, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.49230954855, 17.7329908464652], [121.497802712612, 17.7329908464652], [121.497802712612, 17.7382229333659], [121.49230954855, 17.7382229333659], [121.49230954855, 17.7329908464652]]]]}, "properties": {"taskId": 5728, "taskX": 54885, "taskY": 36049, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.49230954855, 17.7277586067781], [121.497802712612, 17.7277586067781], [121.497802712612, 17.7329908464652], [121.49230954855, 17.7329908464652], [121.49230954855, 17.7277586067781]]]]}, "properties": {"taskId": 5727, "taskX": 54885, "taskY": 36048, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 17.7329908464652], [121.49230954855, 17.7329908464652], [121.49230954855, 17.7382229333659], [121.486816384489, 17.7382229333659], [121.486816384489, 17.7329908464652]]]]}, "properties": {"taskId": 5726, "taskX": 54884, "taskY": 36049, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.464843728242, 17.7486866486513], [121.475830056365, 17.7486866486513], [121.475830056365, 17.7591497523209], [121.464843728242, 17.7591497523209], [121.464843728242, 17.7486866486513]]]]}, "properties": {"taskId": 5721, "taskX": 27440, "taskY": 18026, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.475830056365, 17.7591497523209], [121.486816384489, 17.7591497523209], [121.486816384489, 17.7696122440617], [121.475830056365, 17.7696122440617], [121.475830056365, 17.7591497523209]]]]}, "properties": {"taskId": 5724, "taskX": 27441, "taskY": 18027, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.475830056365, 17.7486866486513], [121.486816384489, 17.7486866486513], [121.486816384489, 17.7591497523209], [121.475830056365, 17.7591497523209], [121.475830056365, 17.7486866486513]]]]}, "properties": {"taskId": 5723, "taskX": 27441, "taskY": 18026, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 18.2971652441117], [121.659851052426, 18.2971652441117], [121.659851052426, 18.2997729421099], [121.657104470395, 18.2997729421099], [121.657104470395, 18.2971652441117]]]]}, "properties": {"taskId": 5761, "taskX": 109830, "taskY": 72314, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.659851052426, 18.2997729421099], [121.662597634457, 18.2997729421099], [121.662597634457, 18.3023806008582], [121.659851052426, 18.3023806008582], [121.659851052426, 18.2997729421099]]]]}, "properties": {"taskId": 5764, "taskX": 109831, "taskY": 72315, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.731262185226, 17.6230817882545], [121.734008767257, 17.6230817882545], [121.734008767257, 17.625699450843], [121.731262185226, 17.625699450843], [121.731262185226, 17.6230817882545]]]]}, "properties": {"taskId": 5787, "taskX": 109857, "taskY": 72056, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.484069802458, 17.6806615806697], [121.486816384489, 17.6806615806697], [121.486816384489, 17.6832784062222], [121.484069802458, 17.6832784062222], [121.484069802458, 17.6806615806697]]]]}, "properties": {"taskId": 5731, "taskX": 109767, "taskY": 72078, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 17.8323743264764], [121.618652321965, 17.8323743264764], [121.618652321965, 17.8428325259552], [121.607665993842, 17.8428325259552], [121.607665993842, 17.8323743264764]]]]}, "properties": {"taskId": 5775, "taskX": 27453, "taskY": 18034, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.8428325259552], [121.607665993842, 17.8428325259552], [121.607665993842, 17.8532901110035], [121.596679665719, 17.8532901110035], [121.596679665719, 17.8428325259552]]]]}, "properties": {"taskId": 5774, "taskX": 27452, "taskY": 18035, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.497389397627], [121.750488259441, 17.497389397627], [121.750488259441, 17.518344184812], [121.728515603195, 17.518344184812], [121.728515603195, 17.497389397627]]]]}, "properties": {"taskId": 5778, "taskX": 13732, "taskY": 9001, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 17.6544912305301], [121.67358396258, 17.6544912305301], [121.67358396258, 17.6649598274553], [121.662597634457, 17.6649598274553], [121.662597634457, 17.6544912305301]]]]}, "properties": {"taskId": 5734, "taskX": 27458, "taskY": 18017, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.8323743264764], [121.607665993842, 17.8323743264764], [121.607665993842, 17.8428325259552], [121.596679665719, 17.8428325259552], [121.596679665719, 17.8323743264764]]]]}, "properties": {"taskId": 5773, "taskX": 27452, "taskY": 18034, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 17.8428325259552], [121.618652321965, 17.8428325259552], [121.618652321965, 17.8532901110035], [121.607665993842, 17.8532901110035], [121.607665993842, 17.8428325259552]]]]}, "properties": {"taskId": 5776, "taskX": 27453, "taskY": 18035, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.481323220427, 17.6806615806697], [121.484069802458, 17.6806615806697], [121.484069802458, 17.6832784062222], [121.481323220427, 17.6832784062222], [121.481323220427, 17.6806615806697]]]]}, "properties": {"taskId": 5729, "taskX": 109766, "taskY": 72078, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.484069802458, 17.6832784062222], [121.486816384489, 17.6832784062222], [121.486816384489, 17.6858951936713], [121.484069802458, 17.6858951936713], [121.484069802458, 17.6832784062222]]]]}, "properties": {"taskId": 5732, "taskX": 109767, "taskY": 72079, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.662597634457, 17.6440220248121], [121.67358396258, 17.6440220248121], [121.67358396258, 17.6544912305301], [121.662597634457, 17.6544912305301], [121.662597634457, 17.6440220248121]]]]}, "properties": {"taskId": 5733, "taskX": 27458, "taskY": 18016, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 17.6544912305301], [121.684570290703, 17.6544912305301], [121.684570290703, 17.6649598274553], [121.67358396258, 17.6649598274553], [121.67358396258, 17.6544912305301]]]]}, "properties": {"taskId": 5736, "taskX": 27459, "taskY": 18017, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.453857400119, 17.7015951179171], [121.459350564181, 17.7015951179171], [121.459350564181, 17.7068281209488], [121.453857400119, 17.7068281209488], [121.453857400119, 17.7015951179171]]]]}, "properties": {"taskId": 5738, "taskX": 54878, "taskY": 36043, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.714782693041, 17.6911286542392], [121.717529275072, 17.6911286542392], [121.717529275072, 17.6937453273483], [121.714782693041, 17.6937453273483], [121.714782693041, 17.6911286542392]]]]}, "properties": {"taskId": 5751, "taskX": 109851, "taskY": 72082, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 18.2945575068685], [121.659851052426, 18.2945575068685], [121.659851052426, 18.2971652441117], [121.657104470395, 18.2971652441117], [121.657104470395, 18.2945575068685]]]]}, "properties": {"taskId": 5758, "taskX": 109830, "taskY": 72313, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.481323220427, 17.6832784062222], [121.484069802458, 17.6832784062222], [121.484069802458, 17.6858951936713], [121.481323220427, 17.6858951936713], [121.481323220427, 17.6832784062222]]]]}, "properties": {"taskId": 5730, "taskX": 109766, "taskY": 72079, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.4764321941621], [121.750488259441, 17.4764321941621], [121.750488259441, 17.497389397627], [121.728515603195, 17.497389397627], [121.728515603195, 17.4764321941621]]]]}, "properties": {"taskId": 5777, "taskX": 13732, "taskY": 9000, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.497389397627], [121.772460915687, 17.497389397627], [121.772460915687, 17.518344184812], [121.750488259441, 17.518344184812], [121.750488259441, 17.497389397627]]]]}, "properties": {"taskId": 5780, "taskX": 13733, "taskY": 9001, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.712036111011, 17.6858951936713], [121.717529275072, 17.6858951936713], [121.717529275072, 17.6911286542392], [121.712036111011, 17.6911286542392], [121.712036111011, 17.6858951936713]]]]}, "properties": {"taskId": 4599, "taskX": 54925, "taskY": 36040, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698989846365, 17.695053649607], [121.699333169118, 17.695053649607], [121.699333169118, 17.6953807286823], [121.698989846365, 17.6953807286823], [121.698989846365, 17.695053649607]]]]}, "properties": {"taskId": 4709, "taskX": 878762, "taskY": 576668, "taskZoom": 20, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.70036313738, 17.694399489669], [121.701049782888, 17.694399489669], [121.701049782888, 17.695053649607], [121.70036313738, 17.695053649607], [121.70036313738, 17.694399489669]]]]}, "properties": {"taskId": 4644, "taskX": 439383, "taskY": 288333, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.453857400119, 17.6963619623342], [121.459350564181, 17.6963619623342], [121.459350564181, 17.7015951179171], [121.453857400119, 17.7015951179171], [121.453857400119, 17.6963619623342]]]]}, "properties": {"taskId": 5737, "taskX": 54878, "taskY": 36042, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.459350564181, 17.7015951179171], [121.464843728242, 17.7015951179171], [121.464843728242, 17.7068281209488], [121.459350564181, 17.7068281209488], [121.459350564181, 17.7015951179171]]]]}, "properties": {"taskId": 5740, "taskX": 54879, "taskY": 36043, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.712036111011, 17.6937453273483], [121.714782693041, 17.6937453273483], [121.714782693041, 17.6963619623342], [121.712036111011, 17.6963619623342], [121.712036111011, 17.6937453273483]]]]}, "properties": {"taskId": 5750, "taskX": 109850, "taskY": 72083, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 18.2971652441117], [121.657104470395, 18.2971652441117], [121.657104470395, 18.3023806008582], [121.651611306334, 18.3023806008582], [121.651611306334, 18.2971652441117]]]]}, "properties": {"taskId": 5754, "taskX": 54914, "taskY": 36157, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.659851052426, 18.2919497303851], [121.662597634457, 18.2919497303851], [121.662597634457, 18.2945575068685], [121.659851052426, 18.2945575068685], [121.659851052426, 18.2919497303851]]]]}, "properties": {"taskId": 5759, "taskX": 109831, "taskY": 72312, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 17.6649598274553], [121.657104470395, 17.6649598274553], [121.657104470395, 17.6701938975225], [121.651611306334, 17.6701938975225], [121.651611306334, 17.6649598274553]]]]}, "properties": {"taskId": 5765, "taskX": 54914, "taskY": 36036, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 17.6649598274553], [121.662597634457, 17.6649598274553], [121.662597634457, 17.6701938975225], [121.657104470395, 17.6701938975225], [121.657104470395, 17.6649598274553]]]]}, "properties": {"taskId": 5767, "taskX": 54915, "taskY": 36036, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 17.6230817882545], [121.662597634457, 17.6230817882545], [121.662597634457, 17.6335522106155], [121.651611306334, 17.6335522106155], [121.651611306334, 17.6230817882545]]]]}, "properties": {"taskId": 5783, "taskX": 27457, "taskY": 18014, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 17.6701938975225], [121.662597634457, 17.6701938975225], [121.662597634457, 17.6754278152737], [121.657104470395, 17.6754278152737], [121.657104470395, 17.6701938975225]]]]}, "properties": {"taskId": 5768, "taskX": 54915, "taskY": 36037, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.6335522106155], [121.651611306334, 17.6335522106155], [121.651611306334, 17.6440220248121], [121.640624978211, 17.6440220248121], [121.640624978211, 17.6335522106155]]]]}, "properties": {"taskId": 5782, "taskX": 27456, "taskY": 18015, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.728515603195, 17.6230817882545], [121.731262185226, 17.6230817882545], [121.731262185226, 17.625699450843], [121.728515603195, 17.625699450843], [121.728515603195, 17.6230817882545]]]]}, "properties": {"taskId": 5785, "taskX": 109856, "taskY": 72056, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.731262185226, 17.625699450843], [121.734008767257, 17.625699450843], [121.734008767257, 17.6283170754359], [121.731262185226, 17.6283170754359], [121.731262185226, 17.625699450843]]]]}, "properties": {"taskId": 5788, "taskX": 109857, "taskY": 72057, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.640624978211, 17.6230817882545], [121.651611306334, 17.6230817882545], [121.651611306334, 17.6335522106155], [121.640624978211, 17.6335522106155], [121.640624978211, 17.6230817882545]]]]}, "properties": {"taskId": 5781, "taskX": 27456, "taskY": 18014, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 17.6335522106155], [121.662597634457, 17.6335522106155], [121.662597634457, 17.6440220248121], [121.651611306334, 17.6440220248121], [121.651611306334, 17.6335522106155]]]]}, "properties": {"taskId": 5784, "taskX": 27457, "taskY": 18015, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.8323743264764], [121.629638650088, 17.8323743264764], [121.629638650088, 17.8428325259552], [121.618652321965, 17.8428325259552], [121.618652321965, 17.8323743264764]]]]}, "properties": {"taskId": 5789, "taskX": 27454, "taskY": 18034, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 17.8323743264764], [121.640624978211, 17.8323743264764], [121.640624978211, 17.8428325259552], [121.629638650088, 17.8428325259552], [121.629638650088, 17.8323743264764]]]]}, "properties": {"taskId": 5791, "taskX": 27455, "taskY": 18034, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 17.8428325259552], [121.640624978211, 17.8428325259552], [121.640624978211, 17.8532901110035], [121.629638650088, 17.8532901110035], [121.629638650088, 17.8428325259552]]]]}, "properties": {"taskId": 5792, "taskX": 27455, "taskY": 18035, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.632385232119, 18.3571323593422], [121.633758523134, 18.3571323593422], [121.633758523134, 18.3584357612796], [121.632385232119, 18.3584357612796], [121.632385232119, 18.3571323593422]]]]}, "properties": {"taskId": 5793, "taskX": 219642, "taskY": 144674, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.633758523134, 18.3571323593422], [121.635131814149, 18.3571323593422], [121.635131814149, 18.3584357612796], [121.633758523134, 18.3584357612796], [121.633758523134, 18.3571323593422]]]]}, "properties": {"taskId": 5795, "taskX": 219643, "taskY": 144674, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.632385232119, 18.3584357612796], [121.633758523134, 18.3584357612796], [121.633758523134, 18.3597391533776], [121.632385232119, 18.3597391533776], [121.632385232119, 18.3584357612796]]]]}, "properties": {"taskId": 5794, "taskX": 219642, "taskY": 144675, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.633758523134, 18.3584357612796], [121.635131814149, 18.3584357612796], [121.635131814149, 18.3597391533776], [121.633758523134, 18.3597391533776], [121.633758523134, 18.3584357612796]]]]}, "properties": {"taskId": 5796, "taskX": 219643, "taskY": 144675, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 18.3571323593422], [121.631011941103, 18.3571323593422], [121.631011941103, 18.3584357612796], [121.629638650088, 18.3584357612796], [121.629638650088, 18.3571323593422]]]]}, "properties": {"taskId": 5797, "taskX": 219640, "taskY": 144674, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.631011941103, 18.3571323593422], [121.632385232119, 18.3571323593422], [121.632385232119, 18.3584357612796], [121.631011941103, 18.3584357612796], [121.631011941103, 18.3571323593422]]]]}, "properties": {"taskId": 5799, "taskX": 219641, "taskY": 144674, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 18.3584357612796], [121.631011941103, 18.3584357612796], [121.631011941103, 18.3597391533776], [121.629638650088, 18.3597391533776], [121.629638650088, 18.3584357612796]]]]}, "properties": {"taskId": 5798, "taskX": 219640, "taskY": 144675, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.631011941103, 18.3584357612796], [121.632385232119, 18.3584357612796], [121.632385232119, 18.3597391533776], [121.631011941103, 18.3597391533776], [121.631011941103, 18.3584357612796]]]]}, "properties": {"taskId": 5800, "taskX": 219641, "taskY": 144675, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 17.8114560854768], [121.31103513452, 17.8114560854768], [121.31103513452, 17.8323743264764], [121.289062478274, 17.8323743264764], [121.289062478274, 17.8114560854768]]]]}, "properties": {"taskId": 5809, "taskX": 13712, "taskY": 9016, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.31103513452, 17.8323743264764], [121.333007790766, 17.8323743264764], [121.333007790766, 17.8532901110035], [121.31103513452, 17.8532901110035], [121.31103513452, 17.8323743264764]]]]}, "properties": {"taskId": 5812, "taskX": 13713, "taskY": 9017, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 18.2032620163935], [121.659851052426, 18.2032620163935], [121.659851052426, 18.205871124179], [121.657104470395, 18.205871124179], [121.657104470395, 18.2032620163935]]]]}, "properties": {"taskId": 5801, "taskX": 109830, "taskY": 72278, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.659851052426, 18.2032620163935], [121.662597634457, 18.2032620163935], [121.662597634457, 18.205871124179], [121.659851052426, 18.205871124179], [121.659851052426, 18.2032620163935]]]]}, "properties": {"taskId": 5803, "taskX": 109831, "taskY": 72278, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.657104470395, 18.205871124179], [121.659851052426, 18.205871124179], [121.659851052426, 18.2084801928881], [121.657104470395, 18.2084801928881], [121.657104470395, 18.205871124179]]]]}, "properties": {"taskId": 5802, "taskX": 109830, "taskY": 72279, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.8532901110035], [121.723022439134, 17.8532901110035], [121.723022439134, 17.8585186730187], [121.717529275072, 17.8585186730187], [121.717529275072, 17.8532901110035]]]]}, "properties": {"taskId": 5805, "taskX": 54926, "taskY": 36072, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.723022439134, 17.8532901110035], [121.728515603195, 17.8532901110035], [121.728515603195, 17.8585186730187], [121.723022439134, 17.8585186730187], [121.723022439134, 17.8532901110035]]]]}, "properties": {"taskId": 5807, "taskX": 54927, "taskY": 36072, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.8585186730187], [121.723022439134, 17.8585186730187], [121.723022439134, 17.8637470813091], [121.717529275072, 17.8637470813091], [121.717529275072, 17.8585186730187]]]]}, "properties": {"taskId": 5806, "taskX": 54926, "taskY": 36073, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.723022439134, 17.8585186730187], [121.728515603195, 17.8585186730187], [121.728515603195, 17.8637470813091], [121.723022439134, 17.8637470813091], [121.723022439134, 17.8585186730187]]]]}, "properties": {"taskId": 5808, "taskX": 54927, "taskY": 36073, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.289062478274, 17.8323743264764], [121.31103513452, 17.8323743264764], [121.31103513452, 17.8532901110035], [121.289062478274, 17.8532901110035], [121.289062478274, 17.8323743264764]]]]}, "properties": {"taskId": 5810, "taskX": 13712, "taskY": 9017, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.31103513452, 17.8114560854768], [121.333007790766, 17.8114560854768], [121.333007790766, 17.8323743264764], [121.31103513452, 17.8323743264764], [121.31103513452, 17.8114560854768]]]]}, "properties": {"taskId": 5811, "taskX": 13713, "taskY": 9016, "taskZoom": 14, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.5497718295439], [121.766967751626, 17.5497718295439], [121.766967751626, 17.5550092406214], [121.761474587564, 17.5550092406214], [121.761474587564, 17.5497718295439]]]]}, "properties": {"taskId": 5813, "taskX": 54934, "taskY": 36014, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.766967751626, 17.5550092406214], [121.772460915687, 17.5550092406214], [121.772460915687, 17.5602465002479], [121.766967751626, 17.5602465002479], [121.766967751626, 17.5550092406214]]]]}, "properties": {"taskId": 5816, "taskX": 54935, "taskY": 36015, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 17.6701938975225], [121.654357888365, 17.6701938975225], [121.654357888365, 17.67281087544], [121.651611306334, 17.67281087544], [121.651611306334, 17.6701938975225]]]]}, "properties": {"taskId": 5817, "taskX": 109828, "taskY": 72074, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.654357888365, 17.6701938975225], [121.657104470395, 17.6701938975225], [121.657104470395, 17.67281087544], [121.654357888365, 17.67281087544], [121.654357888365, 17.6701938975225]]]]}, "properties": {"taskId": 5819, "taskX": 109829, "taskY": 72074, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.651611306334, 17.67281087544], [121.654357888365, 17.67281087544], [121.654357888365, 17.6754278152737], [121.651611306334, 17.6754278152737], [121.651611306334, 17.67281087544]]]]}, "properties": {"taskId": 5818, "taskX": 109828, "taskY": 72075, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.654357888365, 17.67281087544], [121.657104470395, 17.67281087544], [121.657104470395, 17.6754278152737], [121.654357888365, 17.6754278152737], [121.654357888365, 17.67281087544]]]]}, "properties": {"taskId": 5820, "taskX": 109829, "taskY": 72075, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.5550092406214], [121.766967751626, 17.5550092406214], [121.766967751626, 17.5602465002479], [121.761474587564, 17.5602465002479], [121.761474587564, 17.5550092406214]]]]}, "properties": {"taskId": 5814, "taskX": 54934, "taskY": 36015, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.766967751626, 17.5497718295439], [121.772460915687, 17.5497718295439], [121.772460915687, 17.5550092406214], [121.766967751626, 17.5550092406214], [121.766967751626, 17.5497718295439]]]]}, "properties": {"taskId": 5815, "taskX": 54935, "taskY": 36014, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 17.8689753358357], [121.566467263381, 17.8689753358357], [121.566467263381, 17.8715894054255], [121.56372068135, 17.8715894054255], [121.56372068135, 17.8689753358357]]]]}, "properties": {"taskId": 5829, "taskX": 109796, "taskY": 72150, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.566467263381, 17.8715894054255], [121.569213845411, 17.8715894054255], [121.569213845411, 17.8742034365596], [121.566467263381, 17.8742034365596], [121.566467263381, 17.8715894054255]]]]}, "properties": {"taskId": 5832, "taskX": 109797, "taskY": 72151, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.635131814149, 18.353222094499], [121.636505105165, 18.353222094499], [121.636505105165, 18.3545255259514], [121.635131814149, 18.3545255259514], [121.635131814149, 18.353222094499]]]]}, "properties": {"taskId": 5850, "taskX": 219644, "taskY": 144671, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 17.6649598274553], [121.508789040735, 17.6649598274553], [121.508789040735, 17.6754278152737], [121.497802712612, 17.6754278152737], [121.497802712612, 17.6649598274553]]]]}, "properties": {"taskId": 5843, "taskX": 27443, "taskY": 18018, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 17.6754278152737], [121.497802712612, 17.6754278152737], [121.497802712612, 17.6858951936713], [121.486816384489, 17.6858951936713], [121.486816384489, 17.6754278152737]]]]}, "properties": {"taskId": 5842, "taskX": 27442, "taskY": 18019, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.486816384489, 17.6649598274553], [121.497802712612, 17.6649598274553], [121.497802712612, 17.6754278152737], [121.486816384489, 17.6754278152737], [121.486816384489, 17.6649598274553]]]]}, "properties": {"taskId": 5841, "taskX": 27442, "taskY": 18018, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.497802712612, 17.6754278152737], [121.508789040735, 17.6754278152737], [121.508789040735, 17.6858951936713], [121.497802712612, 17.6858951936713], [121.497802712612, 17.6754278152737]]]]}, "properties": {"taskId": 5844, "taskX": 27443, "taskY": 18019, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78344724381, 17.6230817882545], [121.794433571933, 17.6230817882545], [121.794433571933, 17.6335522106155], [121.78344724381, 17.6335522106155], [121.78344724381, 17.6230817882545]]]]}, "properties": {"taskId": 5823, "taskX": 27469, "taskY": 18014, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.6335522106155], [121.78344724381, 17.6335522106155], [121.78344724381, 17.6440220248121], [121.772460915687, 17.6440220248121], [121.772460915687, 17.6335522106155]]]]}, "properties": {"taskId": 5822, "taskX": 27468, "taskY": 18015, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78344724381, 17.6335522106155], [121.794433571933, 17.6335522106155], [121.794433571933, 17.6440220248121], [121.78344724381, 17.6440220248121], [121.78344724381, 17.6335522106155]]]]}, "properties": {"taskId": 5824, "taskX": 27469, "taskY": 18015, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.8114560854768], [121.629638650088, 17.8114560854768], [121.629638650088, 17.8219155128794], [121.618652321965, 17.8219155128794], [121.618652321965, 17.8114560854768]]]]}, "properties": {"taskId": 5857, "taskX": 27454, "taskY": 18032, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 17.8219155128794], [121.640624978211, 17.8219155128794], [121.640624978211, 17.8323743264764], [121.629638650088, 17.8323743264764], [121.629638650088, 17.8219155128794]]]]}, "properties": {"taskId": 5860, "taskX": 27455, "taskY": 18033, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.661224343442, 18.205871124179], [121.662597634457, 18.205871124179], [121.662597634457, 18.2071756634184], [121.661224343442, 18.2071756634184], [121.661224343442, 18.205871124179]]]]}, "properties": {"taskId": 5855, "taskX": 219663, "taskY": 144558, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.659851052426, 18.2071756634184], [121.661224343442, 18.2071756634184], [121.661224343442, 18.2084801928881], [121.659851052426, 18.2084801928881], [121.659851052426, 18.2071756634184]]]]}, "properties": {"taskId": 5854, "taskX": 219662, "taskY": 144559, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.4764321941621], [121.761474587564, 17.4764321941621], [121.761474587564, 17.4869110977717], [121.750488259441, 17.4869110977717], [121.750488259441, 17.4764321941621]]]]}, "properties": {"taskId": 5837, "taskX": 27466, "taskY": 18000, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.4869110977717], [121.772460915687, 17.4869110977717], [121.772460915687, 17.497389397627], [121.761474587564, 17.497389397627], [121.761474587564, 17.4869110977717]]]]}, "properties": {"taskId": 5840, "taskX": 27467, "taskY": 18001, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698989846365, 17.694399489669], [121.699676491872, 17.694399489669], [121.699676491872, 17.695053649607], [121.698989846365, 17.695053649607], [121.698989846365, 17.694399489669]]]]}, "properties": {"taskId": 4648, "taskX": 439381, "taskY": 288333, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.4869110977717], [121.761474587564, 17.4869110977717], [121.761474587564, 17.497389397627], [121.750488259441, 17.497389397627], [121.750488259441, 17.4869110977717]]]]}, "properties": {"taskId": 5838, "taskX": 27466, "taskY": 18001, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 17.8637470813091], [121.569213845411, 17.8637470813091], [121.569213845411, 17.8689753358357], [121.56372068135, 17.8689753358357], [121.56372068135, 17.8637470813091]]]]}, "properties": {"taskId": 5825, "taskX": 54898, "taskY": 36074, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.569213845411, 17.8689753358357], [121.571960427442, 17.8689753358357], [121.571960427442, 17.8715894054255], [121.569213845411, 17.8715894054255], [121.569213845411, 17.8689753358357]]]]}, "properties": {"taskId": 5833, "taskX": 109798, "taskY": 72150, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.571960427442, 17.8715894054255], [121.574707009473, 17.8715894054255], [121.574707009473, 17.8742034365596], [121.571960427442, 17.8742034365596], [121.571960427442, 17.8715894054255]]]]}, "properties": {"taskId": 5836, "taskX": 109799, "taskY": 72151, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.569213845411, 17.8715894054255], [121.571960427442, 17.8715894054255], [121.571960427442, 17.8742034365596], [121.569213845411, 17.8742034365596], [121.569213845411, 17.8715894054255]]]]}, "properties": {"taskId": 5834, "taskX": 109798, "taskY": 72151, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.569213845411, 17.8637470813091], [121.574707009473, 17.8637470813091], [121.574707009473, 17.8689753358357], [121.569213845411, 17.8689753358357], [121.569213845411, 17.8637470813091]]]]}, "properties": {"taskId": 5827, "taskX": 54899, "taskY": 36074, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.571960427442, 17.8689753358357], [121.574707009473, 17.8689753358357], [121.574707009473, 17.8715894054255], [121.571960427442, 17.8715894054255], [121.571960427442, 17.8689753358357]]]]}, "properties": {"taskId": 5835, "taskX": 109799, "taskY": 72150, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 17.8715894054255], [121.566467263381, 17.8715894054255], [121.566467263381, 17.8742034365596], [121.56372068135, 17.8742034365596], [121.56372068135, 17.8715894054255]]]]}, "properties": {"taskId": 5830, "taskX": 109796, "taskY": 72151, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.635131814149, 18.3519186532097], [121.636505105165, 18.3519186532097], [121.636505105165, 18.353222094499], [121.635131814149, 18.353222094499], [121.635131814149, 18.3519186532097]]]]}, "properties": {"taskId": 5849, "taskX": 219644, "taskY": 144670, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.636505105165, 18.353222094499], [121.63787839618, 18.353222094499], [121.63787839618, 18.3545255259514], [121.636505105165, 18.3545255259514], [121.636505105165, 18.353222094499]]]]}, "properties": {"taskId": 5852, "taskX": 219645, "taskY": 144671, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.566467263381, 17.8689753358357], [121.569213845411, 17.8689753358357], [121.569213845411, 17.8715894054255], [121.566467263381, 17.8715894054255], [121.566467263381, 17.8689753358357]]]]}, "properties": {"taskId": 5831, "taskX": 109797, "taskY": 72150, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.636505105165, 18.3519186532097], [121.63787839618, 18.3519186532097], [121.63787839618, 18.353222094499], [121.636505105165, 18.353222094499], [121.636505105165, 18.3519186532097]]]]}, "properties": {"taskId": 5851, "taskX": 219645, "taskY": 144670, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 17.8114560854768], [121.640624978211, 17.8114560854768], [121.640624978211, 17.8219155128794], [121.629638650088, 17.8219155128794], [121.629638650088, 17.8114560854768]]]]}, "properties": {"taskId": 5859, "taskX": 27455, "taskY": 18032, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.659851052426, 18.205871124179], [121.661224343442, 18.205871124179], [121.661224343442, 18.2071756634184], [121.659851052426, 18.2071756634184], [121.659851052426, 18.205871124179]]]]}, "properties": {"taskId": 5853, "taskX": 219662, "taskY": 144558, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.661224343442, 18.2071756634184], [121.662597634457, 18.2071756634184], [121.662597634457, 18.2084801928881], [121.661224343442, 18.2084801928881], [121.661224343442, 18.2071756634184]]]]}, "properties": {"taskId": 5856, "taskX": 219663, "taskY": 144559, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.8219155128794], [121.629638650088, 17.8219155128794], [121.629638650088, 17.8323743264764], [121.618652321965, 17.8323743264764], [121.618652321965, 17.8219155128794]]]]}, "properties": {"taskId": 5858, "taskX": 27454, "taskY": 18033, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.63787839618, 18.349311741122], [121.639251687196, 18.349311741122], [121.639251687196, 18.3506152020838], [121.63787839618, 18.3506152020838], [121.63787839618, 18.349311741122]]]]}, "properties": {"taskId": 5845, "taskX": 219646, "taskY": 144668, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.639251687196, 18.349311741122], [121.640624978211, 18.349311741122], [121.640624978211, 18.3506152020838], [121.639251687196, 18.3506152020838], [121.639251687196, 18.349311741122]]]]}, "properties": {"taskId": 5847, "taskX": 219647, "taskY": 144668, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.6152285725651], [121.720275857103, 17.6152285725651], [121.720275857103, 17.6178463491106], [121.717529275072, 17.6178463491106], [121.717529275072, 17.6152285725651]]]]}, "properties": {"taskId": 5866, "taskX": 109852, "taskY": 72053, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.63787839618, 18.3506152020838], [121.639251687196, 18.3506152020838], [121.639251687196, 18.3519186532097], [121.63787839618, 18.3519186532097], [121.63787839618, 18.3506152020838]]]]}, "properties": {"taskId": 5846, "taskX": 219646, "taskY": 144669, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.639251687196, 18.3506152020838], [121.640624978211, 18.3506152020838], [121.640624978211, 18.3519186532097], [121.639251687196, 18.3519186532097], [121.639251687196, 18.3506152020838]]]]}, "properties": {"taskId": 5848, "taskX": 219647, "taskY": 144669, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.717529275072, 17.6126107580436], [121.720275857103, 17.6126107580436], [121.720275857103, 17.6152285725651], [121.717529275072, 17.6152285725651], [121.717529275072, 17.6126107580436]]]]}, "properties": {"taskId": 5865, "taskX": 109852, "taskY": 72052, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.720275857103, 17.6152285725651], [121.723022439134, 17.6152285725651], [121.723022439134, 17.6178463491106], [121.720275857103, 17.6178463491106], [121.720275857103, 17.6152285725651]]]]}, "properties": {"taskId": 5868, "taskX": 109853, "taskY": 72053, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.8114560854768], [121.607665993842, 17.8114560854768], [121.607665993842, 17.8219155128794], [121.596679665719, 17.8219155128794], [121.596679665719, 17.8114560854768]]]]}, "properties": {"taskId": 5861, "taskX": 27452, "taskY": 18032, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 17.8219155128794], [121.618652321965, 17.8219155128794], [121.618652321965, 17.8323743264764], [121.607665993842, 17.8323743264764], [121.607665993842, 17.8219155128794]]]]}, "properties": {"taskId": 5864, "taskX": 27453, "taskY": 18033, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.8219155128794], [121.607665993842, 17.8219155128794], [121.607665993842, 17.8323743264764], [121.596679665719, 17.8323743264764], [121.596679665719, 17.8219155128794]]]]}, "properties": {"taskId": 5862, "taskX": 27452, "taskY": 18033, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 17.8323743264764], [121.574707009473, 17.8323743264764], [121.574707009473, 17.8428325259552], [121.56372068135, 17.8428325259552], [121.56372068135, 17.8323743264764]]]]}, "properties": {"taskId": 5927, "taskX": 27449, "taskY": 18034, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 17.8114560854768], [121.618652321965, 17.8114560854768], [121.618652321965, 17.8219155128794], [121.607665993842, 17.8219155128794], [121.607665993842, 17.8114560854768]]]]}, "properties": {"taskId": 5863, "taskX": 27453, "taskY": 18032, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 17.6440220248121], [121.676330544611, 17.6440220248121], [121.676330544611, 17.6466393832987], [121.67358396258, 17.6466393832987], [121.67358396258, 17.6440220248121]]]]}, "properties": {"taskId": 5945, "taskX": 109836, "taskY": 72064, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.676330544611, 17.6466393832987], [121.679077126642, 17.6466393832987], [121.679077126642, 17.6492567037506], [121.676330544611, 17.6492567037506], [121.676330544611, 17.6466393832987]]]]}, "properties": {"taskId": 5948, "taskX": 109837, "taskY": 72065, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.677703835626, 17.6453307088095], [121.679077126642, 17.6453307088095], [121.679077126642, 17.6466393832987], [121.677703835626, 17.6466393832987], [121.677703835626, 17.6453307088095]]]]}, "properties": {"taskId": 5952, "taskX": 219675, "taskY": 144129, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 17.7486866486513], [121.453857400119, 17.7486866486513], [121.453857400119, 17.7591497523209], [121.442871071996, 17.7591497523209], [121.442871071996, 17.7486866486513]]]]}, "properties": {"taskId": 5933, "taskX": 27438, "taskY": 18026, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.453857400119, 17.7591497523209], [121.464843728242, 17.7591497523209], [121.464843728242, 17.7696122440617], [121.453857400119, 17.7696122440617], [121.453857400119, 17.7591497523209]]]]}, "properties": {"taskId": 5936, "taskX": 27439, "taskY": 18027, "taskZoom": 15, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.720275857103, 17.6126107580436], [121.723022439134, 17.6126107580436], [121.723022439134, 17.6152285725651], [121.720275857103, 17.6152285725651], [121.720275857103, 17.6126107580436]]]]}, "properties": {"taskId": 5867, "taskX": 109853, "taskY": 72052, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.8323743264764], [121.558227517288, 17.8323743264764], [121.558227517288, 17.8376035030001], [121.552734353227, 17.8376035030001], [121.552734353227, 17.8323743264764]]]]}, "properties": {"taskId": 5937, "taskX": 54896, "taskY": 36068, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.558227517288, 17.8376035030001], [121.56372068135, 17.8376035030001], [121.56372068135, 17.8428325259552], [121.558227517288, 17.8428325259552], [121.558227517288, 17.8376035030001]]]]}, "properties": {"taskId": 5940, "taskX": 54897, "taskY": 36069, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.459350564181, 17.7277586067781], [121.464843728242, 17.7277586067781], [121.464843728242, 17.7329908464652], [121.459350564181, 17.7329908464652], [121.459350564181, 17.7277586067781]]]]}, "properties": {"taskId": 6035, "taskX": 54879, "taskY": 36048, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.8376035030001], [121.558227517288, 17.8376035030001], [121.558227517288, 17.8428325259552], [121.552734353227, 17.8428325259552], [121.552734353227, 17.8376035030001]]]]}, "properties": {"taskId": 5938, "taskX": 54896, "taskY": 36069, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.453857400119, 17.7277586067781], [121.459350564181, 17.7277586067781], [121.459350564181, 17.7329908464652], [121.453857400119, 17.7329908464652], [121.453857400119, 17.7277586067781]]]]}, "properties": {"taskId": 6033, "taskX": 54878, "taskY": 36048, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.459350564181, 17.7329908464652], [121.464843728242, 17.7329908464652], [121.464843728242, 17.7382229333659], [121.459350564181, 17.7382229333659], [121.459350564181, 17.7329908464652]]]]}, "properties": {"taskId": 6036, "taskX": 54879, "taskY": 36049, "taskZoom": 16, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.731262185226, 17.5733389864572], [121.734008767257, 17.5733389864572], [121.734008767257, 17.5759573700272], [121.731262185226, 17.5759573700272], [121.731262185226, 17.5733389864572]]]]}, "properties": {"taskId": 4248, "taskX": 109857, "taskY": 72037, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.5733389864572], [121.775207497718, 17.5733389864572], [121.775207497718, 17.5759573700272], [121.772460915687, 17.5759573700272], [121.772460915687, 17.5733389864572]]]]}, "properties": {"taskId": 6046, "taskX": 109872, "taskY": 72037, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.338500954828, 17.8480613953027], [121.343994118889, 17.8480613953027], [121.343994118889, 17.8532901110035], [121.338500954828, 17.8532901110035], [121.338500954828, 17.8480613953027]]]]}, "properties": {"taskId": 6028, "taskX": 54857, "taskY": 36071, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.541748025104, 17.6440220248121], [121.552734353227, 17.6440220248121], [121.552734353227, 17.6544912305301], [121.541748025104, 17.6544912305301], [121.541748025104, 17.6440220248121]]]]}, "properties": {"taskId": 6011, "taskX": 27447, "taskY": 18016, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 17.8428325259552], [121.338500954828, 17.8428325259552], [121.338500954828, 17.8480613953027], [121.333007790766, 17.8480613953027], [121.333007790766, 17.8428325259552]]]]}, "properties": {"taskId": 6025, "taskX": 54856, "taskY": 36070, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.5759573700272], [121.777954079749, 17.5759573700272], [121.777954079749, 17.5811940234556], [121.772460915687, 17.5811940234556], [121.772460915687, 17.5759573700272]]]]}, "properties": {"taskId": 6022, "taskX": 54936, "taskY": 36019, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.541748025104, 17.6544912305301], [121.552734353227, 17.6544912305301], [121.552734353227, 17.6649598274553], [121.541748025104, 17.6649598274553], [121.541748025104, 17.6544912305301]]]]}, "properties": {"taskId": 6012, "taskX": 27447, "taskY": 18017, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.795806862949, 17.6427133313073], [121.797180153964, 17.6427133313073], [121.797180153964, 17.6440220248121], [121.795806862949, 17.6440220248121], [121.795806862949, 17.6427133313073]]]]}, "properties": {"taskId": 6032, "taskX": 219761, "taskY": 144127, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 17.6440220248121], [121.541748025104, 17.6440220248121], [121.541748025104, 17.6544912305301], [121.530761696981, 17.6544912305301], [121.530761696981, 17.6440220248121]]]]}, "properties": {"taskId": 6009, "taskX": 27446, "taskY": 18016, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.338500954828, 17.8428325259552], [121.343994118889, 17.8428325259552], [121.343994118889, 17.8480613953027], [121.338500954828, 17.8480613953027], [121.338500954828, 17.8428325259552]]]]}, "properties": {"taskId": 6027, "taskX": 54857, "taskY": 36070, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.6414046282956], [121.795806862949, 17.6414046282956], [121.795806862949, 17.6427133313073], [121.794433571933, 17.6427133313073], [121.794433571933, 17.6414046282956]]]]}, "properties": {"taskId": 6029, "taskX": 219760, "taskY": 144126, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.777954079749, 17.5759573700272], [121.78344724381, 17.5759573700272], [121.78344724381, 17.5811940234556], [121.777954079749, 17.5811940234556], [121.777954079749, 17.5759573700272]]]]}, "properties": {"taskId": 6024, "taskX": 54937, "taskY": 36019, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 17.6466393832987], [121.676330544611, 17.6466393832987], [121.676330544611, 17.6492567037506], [121.67358396258, 17.6492567037506], [121.67358396258, 17.6466393832987]]]]}, "properties": {"taskId": 5946, "taskX": 109836, "taskY": 72065, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.676330544611, 17.6453307088095], [121.677703835626, 17.6453307088095], [121.677703835626, 17.6466393832987], [121.676330544611, 17.6466393832987], [121.676330544611, 17.6453307088095]]]]}, "properties": {"taskId": 5950, "taskX": 219674, "taskY": 144129, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 17.6544912305301], [121.541748025104, 17.6544912305301], [121.541748025104, 17.6649598274553], [121.530761696981, 17.6649598274553], [121.530761696981, 17.6544912305301]]]]}, "properties": {"taskId": 6010, "taskX": 27446, "taskY": 18017, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 17.8480613953027], [121.338500954828, 17.8480613953027], [121.338500954828, 17.8532901110035], [121.333007790766, 17.8532901110035], [121.333007790766, 17.8480613953027]]]]}, "properties": {"taskId": 6026, "taskX": 54856, "taskY": 36071, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 17.7591497523209], [121.453857400119, 17.7591497523209], [121.453857400119, 17.7696122440617], [121.442871071996, 17.7696122440617], [121.442871071996, 17.7591497523209]]]]}, "properties": {"taskId": 5934, "taskX": 27438, "taskY": 18027, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.67358396258, 17.6492567037506], [121.679077126642, 17.6492567037506], [121.679077126642, 17.6544912305301], [121.67358396258, 17.6544912305301], [121.67358396258, 17.6492567037506]]]]}, "properties": {"taskId": 5930, "taskX": 54918, "taskY": 36033, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.769714333657, 17.5759573700272], [121.772460915687, 17.5759573700272], [121.772460915687, 17.5785757156949], [121.769714333657, 17.5785757156949], [121.769714333657, 17.5759573700272]]]]}, "properties": {"taskId": 5999, "taskX": 109871, "taskY": 72038, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 17.6440220248121], [121.684570290703, 17.6440220248121], [121.684570290703, 17.6492567037506], [121.679077126642, 17.6492567037506], [121.679077126642, 17.6440220248121]]]]}, "properties": {"taskId": 5931, "taskX": 54919, "taskY": 36032, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.769714333657, 17.5785757156949], [121.772460915687, 17.5785757156949], [121.772460915687, 17.5811940234556], [121.769714333657, 17.5811940234556], [121.769714333657, 17.5785757156949]]]]}, "properties": {"taskId": 6000, "taskX": 109871, "taskY": 72039, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.677703835626, 17.6440220248121], [121.679077126642, 17.6440220248121], [121.679077126642, 17.6453307088095], [121.677703835626, 17.6453307088095], [121.677703835626, 17.6440220248121]]]]}, "properties": {"taskId": 5951, "taskX": 219675, "taskY": 144128, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.558227517288, 17.8323743264764], [121.56372068135, 17.8323743264764], [121.56372068135, 17.8376035030001], [121.558227517288, 17.8376035030001], [121.558227517288, 17.8323743264764]]]]}, "properties": {"taskId": 5939, "taskX": 54897, "taskY": 36068, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.453857400119, 17.7329908464652], [121.459350564181, 17.7329908464652], [121.459350564181, 17.7382229333659], [121.453857400119, 17.7382229333659], [121.453857400119, 17.7329908464652]]]]}, "properties": {"taskId": 6034, "taskX": 54878, "taskY": 36049, "taskZoom": 16, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.56372068135, 17.8428325259552], [121.574707009473, 17.8428325259552], [121.574707009473, 17.8532901110035], [121.56372068135, 17.8532901110035], [121.56372068135, 17.8428325259552]]]]}, "properties": {"taskId": 5928, "taskX": 27449, "taskY": 18035, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 17.7277586067781], [121.453857400119, 17.7277586067781], [121.453857400119, 17.7382229333659], [121.442871071996, 17.7382229333659], [121.442871071996, 17.7277586067781]]]]}, "properties": {"taskId": 5921, "taskX": 27438, "taskY": 18024, "taskZoom": 15, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.453857400119, 17.7382229333659], [121.464843728242, 17.7382229333659], [121.464843728242, 17.7486866486513], [121.453857400119, 17.7486866486513], [121.453857400119, 17.7382229333659]]]]}, "properties": {"taskId": 5924, "taskX": 27439, "taskY": 18025, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.6230817882545], [121.703796364918, 17.6230817882545], [121.703796364918, 17.625699450843], [121.701049782888, 17.625699450843], [121.701049782888, 17.6230817882545]]]]}, "properties": {"taskId": 5917, "taskX": 109846, "taskY": 72056, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.703796364918, 17.6230817882545], [121.706542946949, 17.6230817882545], [121.706542946949, 17.625699450843], [121.703796364918, 17.625699450843], [121.703796364918, 17.6230817882545]]]]}, "properties": {"taskId": 5919, "taskX": 109847, "taskY": 72056, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.625699450843], [121.703796364918, 17.625699450843], [121.703796364918, 17.6283170754359], [121.701049782888, 17.6283170754359], [121.701049782888, 17.625699450843]]]]}, "properties": {"taskId": 5918, "taskX": 109846, "taskY": 72057, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.703796364918, 17.625699450843], [121.706542946949, 17.625699450843], [121.706542946949, 17.6283170754359], [121.703796364918, 17.6283170754359], [121.703796364918, 17.625699450843]]]]}, "properties": {"taskId": 5920, "taskX": 109847, "taskY": 72057, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.8428325259552], [121.56372068135, 17.8428325259552], [121.56372068135, 17.8532901110035], [121.552734353227, 17.8532901110035], [121.552734353227, 17.8428325259552]]]]}, "properties": {"taskId": 5926, "taskX": 27448, "taskY": 18035, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.777954079749, 17.5707205649901], [121.78344724381, 17.5707205649901], [121.78344724381, 17.5759573700272], [121.777954079749, 17.5759573700272], [121.777954079749, 17.5707205649901]]]]}, "properties": {"taskId": 6023, "taskX": 54937, "taskY": 36018, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.5707205649901], [121.766967751626, 17.5707205649901], [121.766967751626, 17.5759573700272], [121.761474587564, 17.5759573700272], [121.761474587564, 17.5707205649901]]]]}, "properties": {"taskId": 5993, "taskX": 54934, "taskY": 36018, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 17.6335522106155], [121.585693337596, 17.6335522106155], [121.585693337596, 17.6440220248121], [121.574707009473, 17.6440220248121], [121.574707009473, 17.6335522106155]]]]}, "properties": {"taskId": 5942, "taskX": 27450, "taskY": 18015, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.768341042641, 17.5759573700272], [121.769714333657, 17.5759573700272], [121.769714333657, 17.5772665475991], [121.768341042641, 17.5772665475991], [121.768341042641, 17.5759573700272]]]]}, "properties": {"taskId": 6039, "taskX": 219741, "taskY": 144076, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 17.602139120297], [121.596679665719, 17.602139120297], [121.596679665719, 17.6230817882545], [121.574707009473, 17.6230817882545], [121.574707009473, 17.602139120297]]]]}, "properties": {"taskId": 5879, "taskX": 13725, "taskY": 9006, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.8428325259552], [121.624145486026, 17.8428325259552], [121.624145486026, 17.8480613953027], [121.618652321965, 17.8480613953027], [121.618652321965, 17.8428325259552]]]]}, "properties": {"taskId": 5869, "taskX": 54908, "taskY": 36070, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.624145486026, 17.8480613953027], [121.629638650088, 17.8480613953027], [121.629638650088, 17.8532901110035], [121.624145486026, 17.8532901110035], [121.624145486026, 17.8480613953027]]]]}, "properties": {"taskId": 5872, "taskX": 54909, "taskY": 36071, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 17.6649598274553], [121.530761696981, 17.6649598274553], [121.530761696981, 17.6858951936713], [121.508789040735, 17.6858951936713], [121.508789040735, 17.6649598274553]]]]}, "properties": {"taskId": 5882, "taskX": 13722, "taskY": 9009, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.518344184812], [121.640624978211, 17.518344184812], [121.640624978211, 17.5392965531931], [121.618652321965, 17.5392965531931], [121.618652321965, 17.518344184812]]]]}, "properties": {"taskId": 5875, "taskX": 13727, "taskY": 9002, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.6230817882545], [121.574707009473, 17.6230817882545], [121.574707009473, 17.6440220248121], [121.552734353227, 17.6440220248121], [121.552734353227, 17.6230817882545]]]]}, "properties": {"taskId": 5878, "taskX": 13724, "taskY": 9007, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.518344184812], [121.618652321965, 17.518344184812], [121.618652321965, 17.5392965531931], [121.596679665719, 17.5392965531931], [121.596679665719, 17.518344184812]]]]}, "properties": {"taskId": 5873, "taskX": 13726, "taskY": 9002, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.5392965531931], [121.640624978211, 17.5392965531931], [121.640624978211, 17.5602465002479], [121.618652321965, 17.5602465002479], [121.618652321965, 17.5392965531931]]]]}, "properties": {"taskId": 5876, "taskX": 13727, "taskY": 9003, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.552734353227, 17.602139120297], [121.574707009473, 17.602139120297], [121.574707009473, 17.6230817882545], [121.552734353227, 17.6230817882545], [121.552734353227, 17.602139120297]]]]}, "properties": {"taskId": 5877, "taskX": 13724, "taskY": 9006, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.624145486026, 17.8428325259552], [121.629638650088, 17.8428325259552], [121.629638650088, 17.8480613953027], [121.624145486026, 17.8480613953027], [121.624145486026, 17.8428325259552]]]]}, "properties": {"taskId": 5871, "taskX": 54909, "taskY": 36070, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.8480613953027], [121.624145486026, 17.8480613953027], [121.624145486026, 17.8532901110035], [121.618652321965, 17.8532901110035], [121.618652321965, 17.8480613953027]]]]}, "properties": {"taskId": 5870, "taskX": 54908, "taskY": 36071, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 17.7486866486513], [121.442871071996, 17.7486866486513], [121.442871071996, 17.7696122440617], [121.42089841575, 17.7696122440617], [121.42089841575, 17.7486866486513]]]]}, "properties": {"taskId": 5890, "taskX": 13718, "taskY": 9013, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 17.7696122440617], [121.442871071996, 17.7696122440617], [121.442871071996, 17.7905353905046], [121.42089841575, 17.7905353905046], [121.42089841575, 17.7696122440617]]]]}, "properties": {"taskId": 5885, "taskX": 13718, "taskY": 9014, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 17.7905353905046], [121.464843728242, 17.7905353905046], [121.464843728242, 17.8114560854768], [121.442871071996, 17.8114560854768], [121.442871071996, 17.7905353905046]]]]}, "properties": {"taskId": 5888, "taskX": 13719, "taskY": 9015, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 17.6440220248121], [121.530761696981, 17.6440220248121], [121.530761696981, 17.6649598274553], [121.508789040735, 17.6649598274553], [121.508789040735, 17.6440220248121]]]]}, "properties": {"taskId": 5881, "taskX": 13722, "taskY": 9008, "taskZoom": 14, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.530761696981, 17.6649598274553], [121.552734353227, 17.6649598274553], [121.552734353227, 17.6858951936713], [121.530761696981, 17.6858951936713], [121.530761696981, 17.6649598274553]]]]}, "properties": {"taskId": 5884, "taskX": 13723, "taskY": 9009, "taskZoom": 14, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.827392556303, 17.5392965531931], [121.838378884426, 17.5392965531931], [121.838378884426, 17.5497718295439], [121.827392556303, 17.5497718295439], [121.827392556303, 17.5392965531931]]]]}, "properties": {"taskId": 5895, "taskX": 27473, "taskY": 18006, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.827392556303, 17.5497718295439], [121.832885720364, 17.5497718295439], [121.832885720364, 17.5550092406214], [121.827392556303, 17.5550092406214], [121.827392556303, 17.5497718295439]]]]}, "properties": {"taskId": 5909, "taskX": 54946, "taskY": 36014, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.832885720364, 17.5550092406214], [121.838378884426, 17.5550092406214], [121.838378884426, 17.5602465002479], [121.832885720364, 17.5602465002479], [121.832885720364, 17.5550092406214]]]]}, "properties": {"taskId": 5912, "taskX": 54947, "taskY": 36015, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 17.5392965531931], [121.827392556303, 17.5392965531931], [121.827392556303, 17.5497718295439], [121.81640622818, 17.5497718295439], [121.81640622818, 17.5392965531931]]]]}, "properties": {"taskId": 5893, "taskX": 27472, "taskY": 18006, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.827392556303, 17.5550092406214], [121.832885720364, 17.5550092406214], [121.832885720364, 17.5602465002479], [121.827392556303, 17.5602465002479], [121.827392556303, 17.5550092406214]]]]}, "properties": {"taskId": 5910, "taskX": 54946, "taskY": 36015, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.832885720364, 17.5497718295439], [121.838378884426, 17.5497718295439], [121.838378884426, 17.5550092406214], [121.832885720364, 17.5550092406214], [121.832885720364, 17.5497718295439]]]]}, "properties": {"taskId": 5911, "taskX": 54947, "taskY": 36014, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.777954079749, 17.4921503231884], [121.78344724381, 17.4921503231884], [121.78344724381, 17.497389397627], [121.777954079749, 17.497389397627], [121.777954079749, 17.4921503231884]]]]}, "properties": {"taskId": 5908, "taskX": 54937, "taskY": 36003, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.4764321941621], [121.78344724381, 17.4764321941621], [121.78344724381, 17.4869110977717], [121.772460915687, 17.4869110977717], [121.772460915687, 17.4764321941621]]]]}, "properties": {"taskId": 5897, "taskX": 27468, "taskY": 18000, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78344724381, 17.4764321941621], [121.794433571933, 17.4764321941621], [121.794433571933, 17.4869110977717], [121.78344724381, 17.4869110977717], [121.78344724381, 17.4764321941621]]]]}, "properties": {"taskId": 5899, "taskX": 27469, "taskY": 18000, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.4764321941621], [121.766967751626, 17.4764321941621], [121.766967751626, 17.4816717214165], [121.761474587564, 17.4816717214165], [121.761474587564, 17.4764321941621]]]]}, "properties": {"taskId": 5901, "taskX": 54934, "taskY": 36000, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.766967751626, 17.4816717214165], [121.772460915687, 17.4816717214165], [121.772460915687, 17.4869110977717], [121.766967751626, 17.4869110977717], [121.766967751626, 17.4816717214165]]]]}, "properties": {"taskId": 5904, "taskX": 54935, "taskY": 36001, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.4816717214165], [121.766967751626, 17.4816717214165], [121.766967751626, 17.4869110977717], [121.761474587564, 17.4869110977717], [121.761474587564, 17.4816717214165]]]]}, "properties": {"taskId": 5902, "taskX": 54934, "taskY": 36001, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.766967751626, 17.4764321941621], [121.772460915687, 17.4764321941621], [121.772460915687, 17.4816717214165], [121.766967751626, 17.4816717214165], [121.766967751626, 17.4764321941621]]]]}, "properties": {"taskId": 5903, "taskX": 54935, "taskY": 36000, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.777954079749, 17.4869110977717], [121.78344724381, 17.4869110977717], [121.78344724381, 17.4921503231884], [121.777954079749, 17.4921503231884], [121.777954079749, 17.4869110977717]]]]}, "properties": {"taskId": 5907, "taskX": 54937, "taskY": 36002, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 17.5497718295439], [121.821899392241, 17.5497718295439], [121.821899392241, 17.5550092406214], [121.81640622818, 17.5550092406214], [121.81640622818, 17.5497718295439]]]]}, "properties": {"taskId": 5913, "taskX": 54944, "taskY": 36014, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.821899392241, 17.5497718295439], [121.827392556303, 17.5497718295439], [121.827392556303, 17.5550092406214], [121.821899392241, 17.5550092406214], [121.821899392241, 17.5497718295439]]]]}, "properties": {"taskId": 5915, "taskX": 54945, "taskY": 36014, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.81640622818, 17.5550092406214], [121.821899392241, 17.5550092406214], [121.821899392241, 17.5602465002479], [121.81640622818, 17.5602465002479], [121.81640622818, 17.5550092406214]]]]}, "properties": {"taskId": 5914, "taskX": 54944, "taskY": 36015, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.821899392241, 17.5550092406214], [121.827392556303, 17.5550092406214], [121.827392556303, 17.5602465002479], [121.821899392241, 17.5602465002479], [121.821899392241, 17.5550092406214]]]]}, "properties": {"taskId": 5916, "taskX": 54945, "taskY": 36015, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.679077126642, 17.6492567037506], [121.684570290703, 17.6492567037506], [121.684570290703, 17.6544912305301], [121.679077126642, 17.6544912305301], [121.679077126642, 17.6492567037506]]]]}, "properties": {"taskId": 5932, "taskX": 54919, "taskY": 36033, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.766967751626, 17.5785757156949], [121.769714333657, 17.5785757156949], [121.769714333657, 17.5811940234556], [121.766967751626, 17.5811940234556], [121.766967751626, 17.5785757156949]]]]}, "properties": {"taskId": 5998, "taskX": 109870, "taskY": 72039, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.453857400119, 17.7486866486513], [121.464843728242, 17.7486866486513], [121.464843728242, 17.7591497523209], [121.453857400119, 17.7591497523209], [121.453857400119, 17.7486866486513]]]]}, "properties": {"taskId": 5935, "taskX": 27439, "taskY": 18026, "taskZoom": 15, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.574707009473, 17.6230817882545], [121.585693337596, 17.6230817882545], [121.585693337596, 17.6335522106155], [121.574707009473, 17.6335522106155], [121.574707009473, 17.6230817882545]]]]}, "properties": {"taskId": 5941, "taskX": 27450, "taskY": 18014, "taskZoom": 15, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 17.6335522106155], [121.596679665719, 17.6335522106155], [121.596679665719, 17.6440220248121], [121.585693337596, 17.6440220248121], [121.585693337596, 17.6335522106155]]]]}, "properties": {"taskId": 5944, "taskX": 27451, "taskY": 18015, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.766967751626, 17.5759573700272], [121.768341042641, 17.5759573700272], [121.768341042641, 17.5772665475991], [121.766967751626, 17.5772665475991], [121.766967751626, 17.5759573700272]]]]}, "properties": {"taskId": 6037, "taskX": 219740, "taskY": 144076, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.768341042641, 17.5772665475991], [121.769714333657, 17.5772665475991], [121.769714333657, 17.5785757156949], [121.768341042641, 17.5785757156949], [121.768341042641, 17.5772665475991]]]]}, "properties": {"taskId": 6040, "taskX": 219741, "taskY": 144077, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78344724381, 17.5602465002479], [121.794433571933, 17.5602465002479], [121.794433571933, 17.5707205649901], [121.78344724381, 17.5707205649901], [121.78344724381, 17.5602465002479]]]]}, "properties": {"taskId": 6015, "taskX": 27469, "taskY": 18008, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.777954079749, 17.5602465002479], [121.78344724381, 17.5602465002479], [121.78344724381, 17.5654836083839], [121.777954079749, 17.5654836083839], [121.777954079749, 17.5602465002479]]]]}, "properties": {"taskId": 6019, "taskX": 54937, "taskY": 36016, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78344724381, 17.4869110977717], [121.794433571933, 17.4869110977717], [121.794433571933, 17.497389397627], [121.78344724381, 17.497389397627], [121.78344724381, 17.4869110977717]]]]}, "properties": {"taskId": 5900, "taskX": 27469, "taskY": 18001, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.4921503231884], [121.777954079749, 17.4921503231884], [121.777954079749, 17.497389397627], [121.772460915687, 17.497389397627], [121.772460915687, 17.4921503231884]]]]}, "properties": {"taskId": 5906, "taskX": 54936, "taskY": 36003, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.677017190119, 17.6440220248121], [121.677703835626, 17.6440220248121], [121.677703835626, 17.6446763679993], [121.677017190119, 17.6446763679993], [121.677017190119, 17.6440220248121]]]]}, "properties": {"taskId": 5955, "taskX": 439349, "taskY": 288256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.5681021056307], [121.775207497718, 17.5681021056307], [121.775207497718, 17.5707205649901], [121.772460915687, 17.5707205649901], [121.772460915687, 17.5681021056307]]]]}, "properties": {"taskId": 6042, "taskX": 109872, "taskY": 72035, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.585693337596, 17.6230817882545], [121.596679665719, 17.6230817882545], [121.596679665719, 17.6335522106155], [121.585693337596, 17.6335522106155], [121.585693337596, 17.6230817882545]]]]}, "properties": {"taskId": 5943, "taskX": 27451, "taskY": 18014, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.766967751626, 17.5772665475991], [121.768341042641, 17.5772665475991], [121.768341042641, 17.5785757156949], [121.766967751626, 17.5785757156949], [121.766967751626, 17.5772665475991]]]]}, "properties": {"taskId": 6038, "taskX": 219740, "taskY": 144077, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.676330544611, 17.6440220248121], [121.677017190119, 17.6440220248121], [121.677017190119, 17.6446763679993], [121.676330544611, 17.6446763679993], [121.676330544611, 17.6440220248121]]]]}, "properties": {"taskId": 5953, "taskX": 439348, "taskY": 288256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.677017190119, 17.6446763679993], [121.677703835626, 17.6446763679993], [121.677703835626, 17.6453307088095], [121.677017190119, 17.6453307088095], [121.677017190119, 17.6446763679993]]]]}, "properties": {"taskId": 5956, "taskX": 439349, "taskY": 288257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.775207497718, 17.5654836083839], [121.777954079749, 17.5654836083839], [121.777954079749, 17.5681021056307], [121.775207497718, 17.5681021056307], [121.775207497718, 17.5654836083839]]]]}, "properties": {"taskId": 6043, "taskX": 109873, "taskY": 72034, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.676330544611, 17.6446763679993], [121.677017190119, 17.6446763679993], [121.677017190119, 17.6453307088095], [121.676330544611, 17.6453307088095], [121.676330544611, 17.6446763679993]]]]}, "properties": {"taskId": 5954, "taskX": 439348, "taskY": 288257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.5654836083839], [121.775207497718, 17.5654836083839], [121.775207497718, 17.5681021056307], [121.772460915687, 17.5681021056307], [121.772460915687, 17.5654836083839]]]]}, "properties": {"taskId": 6041, "taskX": 109872, "taskY": 72034, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.775207497718, 17.5681021056307], [121.777954079749, 17.5681021056307], [121.777954079749, 17.5707205649901], [121.775207497718, 17.5707205649901], [121.775207497718, 17.5681021056307]]]]}, "properties": {"taskId": 6044, "taskX": 109873, "taskY": 72035, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.78344724381, 17.5707205649901], [121.794433571933, 17.5707205649901], [121.794433571933, 17.5811940234556], [121.78344724381, 17.5811940234556], [121.78344724381, 17.5707205649901]]]]}, "properties": {"taskId": 6016, "taskX": 27469, "taskY": 18009, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.5602465002479], [121.777954079749, 17.5602465002479], [121.777954079749, 17.5654836083839], [121.772460915687, 17.5654836083839], [121.772460915687, 17.5602465002479]]]]}, "properties": {"taskId": 6017, "taskX": 54936, "taskY": 36016, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.777954079749, 17.5654836083839], [121.78344724381, 17.5654836083839], [121.78344724381, 17.5707205649901], [121.777954079749, 17.5707205649901], [121.777954079749, 17.5654836083839]]]]}, "properties": {"taskId": 6020, "taskX": 54937, "taskY": 36017, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.6230817882545], [121.607665993842, 17.6230817882545], [121.607665993842, 17.6335522106155], [121.596679665719, 17.6335522106155], [121.596679665719, 17.6230817882545]]]]}, "properties": {"taskId": 5957, "taskX": 27452, "taskY": 18014, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 17.6230817882545], [121.618652321965, 17.6230817882545], [121.618652321965, 17.6335522106155], [121.607665993842, 17.6335522106155], [121.607665993842, 17.6230817882545]]]]}, "properties": {"taskId": 5959, "taskX": 27453, "taskY": 18014, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.6335522106155], [121.607665993842, 17.6335522106155], [121.607665993842, 17.6440220248121], [121.596679665719, 17.6440220248121], [121.596679665719, 17.6335522106155]]]]}, "properties": {"taskId": 5958, "taskX": 27452, "taskY": 18015, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 17.6335522106155], [121.618652321965, 17.6335522106155], [121.618652321965, 17.6440220248121], [121.607665993842, 17.6440220248121], [121.607665993842, 17.6335522106155]]]]}, "properties": {"taskId": 5960, "taskX": 27453, "taskY": 18015, "taskZoom": 15, "taskSplittable": true, "taskStatus": "INVALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.799926735995, 17.6335522106155], [121.805419900056, 17.6335522106155], [121.805419900056, 17.638787193754], [121.799926735995, 17.638787193754], [121.799926735995, 17.6335522106155]]]]}, "properties": {"taskId": 5963, "taskX": 54941, "taskY": 36030, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.6911286542392], [121.755981423503, 17.6911286542392], [121.755981423503, 17.6963619623342], [121.750488259441, 17.6963619623342], [121.750488259441, 17.6911286542392]]]]}, "properties": {"taskId": 5982, "taskX": 54932, "taskY": 36041, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.799926735995, 17.638787193754], [121.805419900056, 17.638787193754], [121.805419900056, 17.6440220248121], [121.799926735995, 17.6440220248121], [121.799926735995, 17.638787193754]]]]}, "properties": {"taskId": 5964, "taskX": 54941, "taskY": 36031, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.4869110977717], [121.777954079749, 17.4869110977717], [121.777954079749, 17.4921503231884], [121.772460915687, 17.4921503231884], [121.772460915687, 17.4869110977717]]]]}, "properties": {"taskId": 5905, "taskX": 54936, "taskY": 36002, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.755981423503, 17.6858951936713], [121.761474587564, 17.6858951936713], [121.761474587564, 17.6911286542392], [121.755981423503, 17.6911286542392], [121.755981423503, 17.6858951936713]]]]}, "properties": {"taskId": 5983, "taskX": 54933, "taskY": 36040, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.638787193754], [121.797180153964, 17.638787193754], [121.797180153964, 17.6414046282956], [121.794433571933, 17.6414046282956], [121.794433571933, 17.638787193754]]]]}, "properties": {"taskId": 5965, "taskX": 109880, "taskY": 72062, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.797180153964, 17.638787193754], [121.799926735995, 17.638787193754], [121.799926735995, 17.6414046282956], [121.797180153964, 17.6414046282956], [121.797180153964, 17.638787193754]]]]}, "properties": {"taskId": 5967, "taskX": 109881, "taskY": 72062, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.797180153964, 17.6414046282956], [121.79855344498, 17.6414046282956], [121.79855344498, 17.6427133313073], [121.797180153964, 17.6427133313073], [121.797180153964, 17.6414046282956]]]]}, "properties": {"taskId": 5969, "taskX": 219762, "taskY": 144126, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.79855344498, 17.6414046282956], [121.799926735995, 17.6414046282956], [121.799926735995, 17.6427133313073], [121.79855344498, 17.6427133313073], [121.79855344498, 17.6414046282956]]]]}, "properties": {"taskId": 5971, "taskX": 219763, "taskY": 144126, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.797180153964, 17.6427133313073], [121.79855344498, 17.6427133313073], [121.79855344498, 17.6440220248121], [121.797180153964, 17.6440220248121], [121.797180153964, 17.6427133313073]]]]}, "properties": {"taskId": 5970, "taskX": 219762, "taskY": 144127, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.79855344498, 17.6427133313073], [121.799926735995, 17.6427133313073], [121.799926735995, 17.6440220248121], [121.79855344498, 17.6440220248121], [121.79855344498, 17.6427133313073]]]]}, "properties": {"taskId": 5972, "taskX": 219763, "taskY": 144127, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.764221169595, 17.5759573700272], [121.766967751626, 17.5759573700272], [121.766967751626, 17.5785757156949], [121.764221169595, 17.5785757156949], [121.764221169595, 17.5759573700272]]]]}, "properties": {"taskId": 6003, "taskX": 109869, "taskY": 72038, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.6361697211924], [121.797180153964, 17.6361697211924], [121.797180153964, 17.638787193754], [121.794433571933, 17.638787193754], [121.794433571933, 17.6361697211924]]]]}, "properties": {"taskId": 5974, "taskX": 109880, "taskY": 72061, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.797180153964, 17.6361697211924], [121.799926735995, 17.6361697211924], [121.799926735995, 17.638787193754], [121.797180153964, 17.638787193754], [121.797180153964, 17.6361697211924]]]]}, "properties": {"taskId": 5976, "taskX": 109881, "taskY": 72061, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.7015951179171], [121.755981423503, 17.7015951179171], [121.755981423503, 17.7068281209488], [121.750488259441, 17.7068281209488], [121.750488259441, 17.7015951179171]]]]}, "properties": {"taskId": 5978, "taskX": 54932, "taskY": 36043, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.7068281209488], [121.690063454765, 17.7068281209488], [121.690063454765, 17.7120609713899], [121.684570290703, 17.7120609713899], [121.684570290703, 17.7068281209488]]]]}, "properties": {"taskId": 5985, "taskX": 54920, "taskY": 36044, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.690063454765, 17.7120609713899], [121.695556618826, 17.7120609713899], [121.695556618826, 17.7172936692013], [121.690063454765, 17.7172936692013], [121.690063454765, 17.7120609713899]]]]}, "properties": {"taskId": 5988, "taskX": 54921, "taskY": 36045, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.6283170754359], [121.777954079749, 17.6283170754359], [121.777954079749, 17.6335522106155], [121.772460915687, 17.6335522106155], [121.772460915687, 17.6283170754359]]]]}, "properties": {"taskId": 5990, "taskX": 54936, "taskY": 36029, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.6335522106155], [121.797180153964, 17.6335522106155], [121.797180153964, 17.6361697211924], [121.794433571933, 17.6361697211924], [121.794433571933, 17.6335522106155]]]]}, "properties": {"taskId": 5973, "taskX": 109880, "taskY": 72060, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.797180153964, 17.6335522106155], [121.799926735995, 17.6335522106155], [121.799926735995, 17.6361697211924], [121.797180153964, 17.6361697211924], [121.797180153964, 17.6335522106155]]]]}, "properties": {"taskId": 5975, "taskX": 109881, "taskY": 72060, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.6963619623342], [121.755981423503, 17.6963619623342], [121.755981423503, 17.7015951179171], [121.750488259441, 17.7015951179171], [121.750488259441, 17.6963619623342]]]]}, "properties": {"taskId": 5977, "taskX": 54932, "taskY": 36042, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.755981423503, 17.7015951179171], [121.761474587564, 17.7015951179171], [121.761474587564, 17.7068281209488], [121.755981423503, 17.7068281209488], [121.755981423503, 17.7015951179171]]]]}, "properties": {"taskId": 5980, "taskX": 54933, "taskY": 36043, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.690063454765, 17.7068281209488], [121.695556618826, 17.7068281209488], [121.695556618826, 17.7120609713899], [121.690063454765, 17.7120609713899], [121.690063454765, 17.7068281209488]]]]}, "properties": {"taskId": 5987, "taskX": 54921, "taskY": 36044, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.766967751626, 17.5707205649901], [121.769714333657, 17.5707205649901], [121.769714333657, 17.5733389864572], [121.766967751626, 17.5733389864572], [121.766967751626, 17.5707205649901]]]]}, "properties": {"taskId": 6005, "taskX": 109870, "taskY": 72036, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.769714333657, 17.5733389864572], [121.772460915687, 17.5733389864572], [121.772460915687, 17.5759573700272], [121.769714333657, 17.5759573700272], [121.769714333657, 17.5733389864572]]]]}, "properties": {"taskId": 6008, "taskX": 109871, "taskY": 72037, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.777954079749, 17.6230817882545], [121.78344724381, 17.6230817882545], [121.78344724381, 17.6283170754359], [121.777954079749, 17.6283170754359], [121.777954079749, 17.6230817882545]]]]}, "properties": {"taskId": 5991, "taskX": 54937, "taskY": 36028, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.6230817882545], [121.777954079749, 17.6230817882545], [121.777954079749, 17.6283170754359], [121.772460915687, 17.6283170754359], [121.772460915687, 17.6230817882545]]]]}, "properties": {"taskId": 5989, "taskX": 54936, "taskY": 36028, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.777954079749, 17.6283170754359], [121.78344724381, 17.6283170754359], [121.78344724381, 17.6335522106155], [121.777954079749, 17.6335522106155], [121.777954079749, 17.6283170754359]]]]}, "properties": {"taskId": 5992, "taskX": 54937, "taskY": 36029, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.755981423503, 17.6963619623342], [121.761474587564, 17.6963619623342], [121.761474587564, 17.7015951179171], [121.755981423503, 17.7015951179171], [121.755981423503, 17.6963619623342]]]]}, "properties": {"taskId": 5979, "taskX": 54933, "taskY": 36042, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.6858951936713], [121.755981423503, 17.6858951936713], [121.755981423503, 17.6911286542392], [121.750488259441, 17.6911286542392], [121.750488259441, 17.6858951936713]]]]}, "properties": {"taskId": 5981, "taskX": 54932, "taskY": 36040, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.755981423503, 17.6911286542392], [121.761474587564, 17.6911286542392], [121.761474587564, 17.6963619623342], [121.755981423503, 17.6963619623342], [121.755981423503, 17.6911286542392]]]]}, "properties": {"taskId": 5984, "taskX": 54933, "taskY": 36041, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.7120609713899], [121.690063454765, 17.7120609713899], [121.690063454765, 17.7172936692013], [121.684570290703, 17.7172936692013], [121.684570290703, 17.7120609713899]]]]}, "properties": {"taskId": 5986, "taskX": 54920, "taskY": 36045, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.766967751626, 17.5733389864572], [121.769714333657, 17.5733389864572], [121.769714333657, 17.5759573700272], [121.766967751626, 17.5759573700272], [121.766967751626, 17.5733389864572]]]]}, "properties": {"taskId": 6006, "taskX": 109870, "taskY": 72037, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.5785757156949], [121.764221169595, 17.5785757156949], [121.764221169595, 17.5811940234556], [121.761474587564, 17.5811940234556], [121.761474587564, 17.5785757156949]]]]}, "properties": {"taskId": 6002, "taskX": 109868, "taskY": 72039, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.769714333657, 17.5707205649901], [121.772460915687, 17.5707205649901], [121.772460915687, 17.5733389864572], [121.769714333657, 17.5733389864572], [121.769714333657, 17.5707205649901]]]]}, "properties": {"taskId": 6007, "taskX": 109871, "taskY": 72036, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.761474587564, 17.5759573700272], [121.764221169595, 17.5759573700272], [121.764221169595, 17.5785757156949], [121.761474587564, 17.5785757156949], [121.761474587564, 17.5759573700272]]]]}, "properties": {"taskId": 6001, "taskX": 109868, "taskY": 72038, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.764221169595, 17.5785757156949], [121.766967751626, 17.5785757156949], [121.766967751626, 17.5811940234556], [121.764221169595, 17.5811940234556], [121.764221169595, 17.5785757156949]]]]}, "properties": {"taskId": 6004, "taskX": 109869, "taskY": 72039, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.772460915687, 17.5707205649901], [121.775207497718, 17.5707205649901], [121.775207497718, 17.5733389864572], [121.772460915687, 17.5733389864572], [121.772460915687, 17.5707205649901]]]]}, "properties": {"taskId": 6045, "taskX": 109872, "taskY": 72036, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.775207497718, 17.5733389864572], [121.777954079749, 17.5733389864572], [121.777954079749, 17.5759573700272], [121.775207497718, 17.5759573700272], [121.775207497718, 17.5733389864572]]]]}, "properties": {"taskId": 6048, "taskX": 109873, "taskY": 72037, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.775207497718, 17.5707205649901], [121.777954079749, 17.5707205649901], [121.777954079749, 17.5733389864572], [121.775207497718, 17.5733389864572], [121.775207497718, 17.5707205649901]]]]}, "properties": {"taskId": 6047, "taskX": 109873, "taskY": 72036, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.795806862949, 17.6414046282956], [121.797180153964, 17.6414046282956], [121.797180153964, 17.6427133313073], [121.795806862949, 17.6427133313073], [121.795806862949, 17.6414046282956]]]]}, "properties": {"taskId": 6031, "taskX": 219761, "taskY": 144126, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.794433571933, 17.6427133313073], [121.795806862949, 17.6427133313073], [121.795806862949, 17.6440220248121], [121.794433571933, 17.6440220248121], [121.794433571933, 17.6427133313073]]]]}, "properties": {"taskId": 6030, "taskX": 219760, "taskY": 144127, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.739501931318, 17.6858951936713], [121.750488259441, 17.6858951936713], [121.750488259441, 17.6963619623342], [121.739501931318, 17.6963619623342], [121.739501931318, 17.6858951936713]]]]}, "properties": {"taskId": 4255, "taskX": 27465, "taskY": 18020, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 17.7696122440617], [121.453857400119, 17.7696122440617], [121.453857400119, 17.7800741235606], [121.442871071996, 17.7800741235606], [121.442871071996, 17.7696122440617]]]]}, "properties": {"taskId": 6049, "taskX": 27438, "taskY": 18028, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.453857400119, 17.7696122440617], [121.464843728242, 17.7696122440617], [121.464843728242, 17.7800741235606], [121.453857400119, 17.7800741235606], [121.453857400119, 17.7696122440617]]]]}, "properties": {"taskId": 6051, "taskX": 27439, "taskY": 18028, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 17.7800741235606], [121.453857400119, 17.7800741235606], [121.453857400119, 17.7905353905046], [121.442871071996, 17.7905353905046], [121.442871071996, 17.7800741235606]]]]}, "properties": {"taskId": 6050, "taskX": 27438, "taskY": 18029, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.453857400119, 17.7800741235606], [121.464843728242, 17.7800741235606], [121.464843728242, 17.7905353905046], [121.453857400119, 17.7905353905046], [121.453857400119, 17.7800741235606]]]]}, "properties": {"taskId": 6052, "taskX": 27439, "taskY": 18029, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.448364236058, 17.7382229333659], [121.453857400119, 17.7382229333659], [121.453857400119, 17.743454867441], [121.448364236058, 17.743454867441], [121.448364236058, 17.7382229333659]]]]}, "properties": {"taskId": 6055, "taskX": 54877, "taskY": 36050, "taskZoom": 16, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 17.743454867441], [121.448364236058, 17.743454867441], [121.448364236058, 17.7486866486513], [121.442871071996, 17.7486866486513], [121.442871071996, 17.743454867441]]]]}, "properties": {"taskId": 6054, "taskX": 54876, "taskY": 36051, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.448364236058, 17.743454867441], [121.453857400119, 17.743454867441], [121.453857400119, 17.7486866486513], [121.448364236058, 17.7486866486513], [121.448364236058, 17.743454867441]]]]}, "properties": {"taskId": 6056, "taskX": 54877, "taskY": 36051, "taskZoom": 16, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.5654836083839], [121.701049782888, 17.5654836083839], [121.701049782888, 17.5707205649901], [121.695556618826, 17.5707205649901], [121.695556618826, 17.5654836083839]]]]}, "properties": {"taskId": 6058, "taskX": 54922, "taskY": 36017, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.431884743873, 17.7329908464652], [121.437377907935, 17.7329908464652], [121.437377907935, 17.7382229333659], [121.431884743873, 17.7382229333659], [121.431884743873, 17.7329908464652]]]]}, "properties": {"taskId": 6102, "taskX": 54874, "taskY": 36049, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.431884743873, 17.7905353905046], [121.442871071996, 17.7905353905046], [121.442871071996, 17.800996044581], [121.431884743873, 17.800996044581], [121.431884743873, 17.7905353905046]]]]}, "properties": {"taskId": 6071, "taskX": 27437, "taskY": 18030, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.5602465002479], [121.706542946949, 17.5602465002479], [121.706542946949, 17.5654836083839], [121.701049782888, 17.5654836083839], [121.701049782888, 17.5602465002479]]]]}, "properties": {"taskId": 6059, "taskX": 54923, "taskY": 36016, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 17.7905353905046], [121.431884743873, 17.7905353905046], [121.431884743873, 17.800996044581], [121.42089841575, 17.800996044581], [121.42089841575, 17.7905353905046]]]]}, "properties": {"taskId": 6069, "taskX": 27436, "taskY": 18030, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.431884743873, 17.800996044581], [121.442871071996, 17.800996044581], [121.442871071996, 17.8114560854768], [121.431884743873, 17.8114560854768], [121.431884743873, 17.800996044581]]]]}, "properties": {"taskId": 6072, "taskX": 27437, "taskY": 18031, "taskZoom": 15, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.5497718295439], [121.690063454765, 17.5497718295439], [121.690063454765, 17.5550092406214], [121.684570290703, 17.5550092406214], [121.684570290703, 17.5497718295439]]]]}, "properties": {"taskId": 6065, "taskX": 54920, "taskY": 36014, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.690063454765, 17.5550092406214], [121.695556618826, 17.5550092406214], [121.695556618826, 17.5602465002479], [121.690063454765, 17.5602465002479], [121.690063454765, 17.5550092406214]]]]}, "properties": {"taskId": 6068, "taskX": 54921, "taskY": 36015, "taskZoom": 16, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.684570290703, 17.5550092406214], [121.690063454765, 17.5550092406214], [121.690063454765, 17.5602465002479], [121.684570290703, 17.5602465002479], [121.684570290703, 17.5550092406214]]]]}, "properties": {"taskId": 6066, "taskX": 54920, "taskY": 36015, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 17.5602465002479], [121.519775368858, 17.5602465002479], [121.519775368858, 17.5707205649901], [121.508789040735, 17.5707205649901], [121.508789040735, 17.5602465002479]]]]}, "properties": {"taskId": 6097, "taskX": 27444, "taskY": 18008, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.519775368858, 17.5707205649901], [121.530761696981, 17.5707205649901], [121.530761696981, 17.5811940234556], [121.519775368858, 17.5811940234556], [121.519775368858, 17.5707205649901]]]]}, "properties": {"taskId": 6100, "taskX": 27445, "taskY": 18009, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.519775368858, 17.5602465002479], [121.530761696981, 17.5602465002479], [121.530761696981, 17.5707205649901], [121.519775368858, 17.5707205649901], [121.519775368858, 17.5602465002479]]]]}, "properties": {"taskId": 6099, "taskX": 27445, "taskY": 18008, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.508789040735, 17.5707205649901], [121.519775368858, 17.5707205649901], [121.519775368858, 17.5811940234556], [121.508789040735, 17.5811940234556], [121.508789040735, 17.5707205649901]]]]}, "properties": {"taskId": 6098, "taskX": 27444, "taskY": 18009, "taskZoom": 15, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 17.800996044581], [121.431884743873, 17.800996044581], [121.431884743873, 17.8114560854768], [121.42089841575, 17.8114560854768], [121.42089841575, 17.800996044581]]]]}, "properties": {"taskId": 6070, "taskX": 27436, "taskY": 18031, "taskZoom": 15, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.431884743873, 17.7382229333659], [121.442871071996, 17.7382229333659], [121.442871071996, 17.7486866486513], [121.431884743873, 17.7486866486513], [121.431884743873, 17.7382229333659]]]]}, "properties": {"taskId": 6076, "taskX": 27437, "taskY": 18025, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.437377907935, 17.7277586067781], [121.442871071996, 17.7277586067781], [121.442871071996, 17.7329908464652], [121.437377907935, 17.7329908464652], [121.437377907935, 17.7277586067781]]]]}, "properties": {"taskId": 6103, "taskX": 54875, "taskY": 36048, "taskZoom": 16, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.5654836083839], [121.706542946949, 17.5654836083839], [121.706542946949, 17.5707205649901], [121.701049782888, 17.5707205649901], [121.701049782888, 17.5654836083839]]]]}, "properties": {"taskId": 6060, "taskX": 54923, "taskY": 36017, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 17.7382229333659], [121.431884743873, 17.7382229333659], [121.431884743873, 17.7486866486513], [121.42089841575, 17.7486866486513], [121.42089841575, 17.7382229333659]]]]}, "properties": {"taskId": 6074, "taskX": 27436, "taskY": 18025, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.431884743873, 17.7277586067781], [121.437377907935, 17.7277586067781], [121.437377907935, 17.7329908464652], [121.431884743873, 17.7329908464652], [121.431884743873, 17.7277586067781]]]]}, "properties": {"taskId": 6101, "taskX": 54874, "taskY": 36048, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.437377907935, 17.7329908464652], [121.442871071996, 17.7329908464652], [121.442871071996, 17.7382229333659], [121.437377907935, 17.7382229333659], [121.437377907935, 17.7329908464652]]]]}, "properties": {"taskId": 6104, "taskX": 54875, "taskY": 36049, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.5392965531931], [121.607665993842, 17.5392965531931], [121.607665993842, 17.5497718295439], [121.596679665719, 17.5497718295439], [121.596679665719, 17.5392965531931]]]]}, "properties": {"taskId": 6061, "taskX": 27452, "taskY": 18006, "taskZoom": 15, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 17.5392965531931], [121.618652321965, 17.5392965531931], [121.618652321965, 17.5497718295439], [121.607665993842, 17.5497718295439], [121.607665993842, 17.5392965531931]]]]}, "properties": {"taskId": 6063, "taskX": 27453, "taskY": 18006, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.596679665719, 17.5497718295439], [121.607665993842, 17.5497718295439], [121.607665993842, 17.5602465002479], [121.596679665719, 17.5602465002479], [121.596679665719, 17.5497718295439]]]]}, "properties": {"taskId": 6062, "taskX": 27452, "taskY": 18007, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.607665993842, 17.5497718295439], [121.618652321965, 17.5497718295439], [121.618652321965, 17.5602465002479], [121.607665993842, 17.5602465002479], [121.607665993842, 17.5497718295439]]]]}, "properties": {"taskId": 6064, "taskX": 27453, "taskY": 18007, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.5602465002479], [121.698303200857, 17.5602465002479], [121.698303200857, 17.5628650732547], [121.695556618826, 17.5628650732547], [121.695556618826, 17.5602465002479]]]]}, "properties": {"taskId": 6077, "taskX": 109844, "taskY": 72032, "taskZoom": 17, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698303200857, 17.5602465002479], [121.701049782888, 17.5602465002479], [121.701049782888, 17.5628650732547], [121.698303200857, 17.5628650732547], [121.698303200857, 17.5602465002479]]]]}, "properties": {"taskId": 6079, "taskX": 109845, "taskY": 72032, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.5628650732547], [121.698303200857, 17.5628650732547], [121.698303200857, 17.5654836083839], [121.695556618826, 17.5654836083839], [121.695556618826, 17.5628650732547]]]]}, "properties": {"taskId": 6078, "taskX": 109844, "taskY": 72033, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.698303200857, 17.5628650732547], [121.701049782888, 17.5628650732547], [121.701049782888, 17.5654836083839], [121.698303200857, 17.5654836083839], [121.698303200857, 17.5628650732547]]]]}, "properties": {"taskId": 6080, "taskX": 109845, "taskY": 72033, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.6230817882545], [121.629638650088, 17.6230817882545], [121.629638650088, 17.6335522106155], [121.618652321965, 17.6335522106155], [121.618652321965, 17.6230817882545]]]]}, "properties": {"taskId": 6085, "taskX": 27454, "taskY": 18014, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 17.6230817882545], [121.640624978211, 17.6230817882545], [121.640624978211, 17.6335522106155], [121.629638650088, 17.6335522106155], [121.629638650088, 17.6230817882545]]]]}, "properties": {"taskId": 6087, "taskX": 27455, "taskY": 18014, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 17.7382229333659], [121.445617654027, 17.7382229333659], [121.445617654027, 17.7408389195091], [121.442871071996, 17.7408389195091], [121.442871071996, 17.7382229333659]]]]}, "properties": {"taskId": 6093, "taskX": 109752, "taskY": 72100, "taskZoom": 17, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.445617654027, 17.7382229333659], [121.448364236058, 17.7382229333659], [121.448364236058, 17.7408389195091], [121.445617654027, 17.7408389195091], [121.445617654027, 17.7382229333659]]]]}, "properties": {"taskId": 6095, "taskX": 109753, "taskY": 72100, "taskZoom": 17, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 17.6858951936713], [121.431884743873, 17.6858951936713], [121.431884743873, 17.6963619623342], [121.42089841575, 17.6963619623342], [121.42089841575, 17.6858951936713]]]]}, "properties": {"taskId": 6081, "taskX": 27436, "taskY": 18020, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.431884743873, 17.6858951936713], [121.442871071996, 17.6858951936713], [121.442871071996, 17.6963619623342], [121.431884743873, 17.6963619623342], [121.431884743873, 17.6858951936713]]]]}, "properties": {"taskId": 6083, "taskX": 27437, "taskY": 18020, "taskZoom": 15, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 17.6963619623342], [121.431884743873, 17.6963619623342], [121.431884743873, 17.7068281209488], [121.42089841575, 17.7068281209488], [121.42089841575, 17.6963619623342]]]]}, "properties": {"taskId": 6082, "taskX": 27436, "taskY": 18021, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.431884743873, 17.6963619623342], [121.442871071996, 17.6963619623342], [121.442871071996, 17.7068281209488], [121.431884743873, 17.7068281209488], [121.431884743873, 17.6963619623342]]]]}, "properties": {"taskId": 6084, "taskX": 27437, "taskY": 18021, "taskZoom": 15, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.618652321965, 17.6335522106155], [121.629638650088, 17.6335522106155], [121.629638650088, 17.6440220248121], [121.618652321965, 17.6440220248121], [121.618652321965, 17.6335522106155]]]]}, "properties": {"taskId": 6086, "taskX": 27454, "taskY": 18015, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 17.6335522106155], [121.640624978211, 17.6335522106155], [121.640624978211, 17.6440220248121], [121.629638650088, 17.6440220248121], [121.629638650088, 17.6335522106155]]]]}, "properties": {"taskId": 6088, "taskX": 27455, "taskY": 18015, "taskZoom": 15, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.442871071996, 17.7408389195091], [121.445617654027, 17.7408389195091], [121.445617654027, 17.743454867441], [121.442871071996, 17.743454867441], [121.442871071996, 17.7408389195091]]]]}, "properties": {"taskId": 6094, "taskX": 109752, "taskY": 72101, "taskZoom": 17, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.445617654027, 17.7408389195091], [121.448364236058, 17.7408389195091], [121.448364236058, 17.743454867441], [121.445617654027, 17.743454867441], [121.445617654027, 17.7408389195091]]]]}, "properties": {"taskId": 6096, "taskX": 109753, "taskY": 72101, "taskZoom": 17, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.690063454765, 17.5497718295439], [121.692810036795, 17.5497718295439], [121.692810036795, 17.5523905540115], [121.690063454765, 17.5523905540115], [121.690063454765, 17.5497718295439]]]]}, "properties": {"taskId": 6089, "taskX": 109842, "taskY": 72028, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.692810036795, 17.5497718295439], [121.695556618826, 17.5497718295439], [121.695556618826, 17.5523905540115], [121.692810036795, 17.5523905540115], [121.692810036795, 17.5497718295439]]]]}, "properties": {"taskId": 6091, "taskX": 109843, "taskY": 72028, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.690063454765, 17.5523905540115], [121.692810036795, 17.5523905540115], [121.692810036795, 17.5550092406214], [121.690063454765, 17.5550092406214], [121.690063454765, 17.5523905540115]]]]}, "properties": {"taskId": 6090, "taskX": 109842, "taskY": 72029, "taskZoom": 17, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.692810036795, 17.5523905540115], [121.695556618826, 17.5523905540115], [121.695556618826, 17.5550092406214], [121.692810036795, 17.5550092406214], [121.692810036795, 17.5523905540115]]]]}, "properties": {"taskId": 6092, "taskX": 109843, "taskY": 72029, "taskZoom": 17, "taskSplittable": true, "taskStatus": "READY"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.695556618826, 17.6230817882545], [121.701049782888, 17.6230817882545], [121.701049782888, 17.6283170754359], [121.695556618826, 17.6283170754359], [121.695556618826, 17.6230817882545]]]]}, "properties": {"taskId": 4373, "taskX": 54922, "taskY": 36028, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 17.7277586067781], [121.426391579812, 17.7277586067781], [121.426391579812, 17.7329908464652], [121.42089841575, 17.7329908464652], [121.42089841575, 17.7277586067781]]]]}, "properties": {"taskId": 6105, "taskX": 54872, "taskY": 36048, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.426391579812, 17.7277586067781], [121.431884743873, 17.7277586067781], [121.431884743873, 17.7329908464652], [121.426391579812, 17.7329908464652], [121.426391579812, 17.7277586067781]]]]}, "properties": {"taskId": 6107, "taskX": 54873, "taskY": 36048, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.42089841575, 17.7329908464652], [121.426391579812, 17.7329908464652], [121.426391579812, 17.7382229333659], [121.42089841575, 17.7382229333659], [121.42089841575, 17.7329908464652]]]]}, "properties": {"taskId": 6106, "taskX": 54872, "taskY": 36049, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.426391579812, 17.7329908464652], [121.431884743873, 17.7329908464652], [121.431884743873, 17.7382229333659], [121.426391579812, 17.7382229333659], [121.426391579812, 17.7329908464652]]]]}, "properties": {"taskId": 6108, "taskX": 54873, "taskY": 36049, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.415405251689, 18.3753790908532], [121.42089841575, 18.3753790908532], [121.42089841575, 18.3805920882827], [121.415405251689, 18.3805920882827], [121.415405251689, 18.3753790908532]]]]}, "properties": {"taskId": 4911, "taskX": 54871, "taskY": 36172, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.629638650088, 18.0309747467668], [121.640624978211, 18.0309747467668], [121.640624978211, 18.0414212187671], [121.629638650088, 18.0414212187671], [121.629638650088, 18.0309747467668]]]]}, "properties": {"taskId": 4432, "taskX": 27455, "taskY": 18053, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.971588112917, 20.447602394087], [121.972961403933, 20.447602394087], [121.972961403933, 20.4488891514852], [121.971588112917, 20.4488891514852], [121.971588112917, 20.447602394087]]]]}, "properties": {"taskId": 5291, "taskX": 219889, "taskY": 146288, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.753234841472, 17.602139120297], [121.755981423503, 17.602139120297], [121.755981423503, 17.6047570866729], [121.753234841472, 17.6047570866729], [121.753234841472, 17.602139120297]]]]}, "properties": {"taskId": 5315, "taskX": 109865, "taskY": 72048, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.360473611074, 17.8428325259552], [121.365966775135, 17.8428325259552], [121.365966775135, 17.8480613953027], [121.360473611074, 17.8480613953027], [121.360473611074, 17.8428325259552]]]]}, "properties": {"taskId": 5027, "taskX": 54861, "taskY": 36070, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.659851052426, 18.1967390760021], [121.661224343442, 18.1967390760021], [121.661224343442, 18.1980436836125], [121.659851052426, 18.1980436836125], [121.659851052426, 18.1967390760021]]]]}, "properties": {"taskId": 5250, "taskX": 219662, "taskY": 144551, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.701049782888, 17.6126107580436], [121.706542946949, 17.6126107580436], [121.706542946949, 17.6178463491106], [121.701049782888, 17.6178463491106], [121.701049782888, 17.6126107580436]]]]}, "properties": {"taskId": 5271, "taskX": 54923, "taskY": 36026, "taskZoom": 16, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.333007790766, 17.8323743264764], [121.343994118889, 17.8323743264764], [121.343994118889, 17.8428325259552], [121.333007790766, 17.8428325259552], [121.333007790766, 17.8323743264764]]]]}, "properties": {"taskId": 5273, "taskX": 27428, "taskY": 18034, "taskZoom": 15, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.343994118889, 17.8480613953027], [121.349487282951, 17.8480613953027], [121.349487282951, 17.8532901110035], [121.343994118889, 17.8532901110035], [121.343994118889, 17.8480613953027]]]]}, "properties": {"taskId": 5278, "taskX": 54858, "taskY": 36071, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.690063454765, 18.2606533535982], [121.695556618826, 18.2606533535982], [121.695556618826, 18.2658698083971], [121.690063454765, 18.2658698083971], [121.690063454765, 18.2606533535982]]]]}, "properties": {"taskId": 5283, "taskX": 54921, "taskY": 36150, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.349487282951, 17.8428325259552], [121.354980447012, 17.8428325259552], [121.354980447012, 17.8480613953027], [121.349487282951, 17.8480613953027], [121.349487282951, 17.8428325259552]]]]}, "properties": {"taskId": 5279, "taskX": 54859, "taskY": 36070, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.690063454765, 18.2658698083971], [121.695556618826, 18.2658698083971], [121.695556618826, 18.271086106447], [121.690063454765, 18.271086106447], [121.690063454765, 18.2658698083971]]]]}, "properties": {"taskId": 5284, "taskX": 54921, "taskY": 36151, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.750488259441, 17.602139120297], [121.753234841472, 17.602139120297], [121.753234841472, 17.6047570866729], [121.750488259441, 17.6047570866729], [121.750488259441, 17.602139120297]]]]}, "properties": {"taskId": 5313, "taskX": 109864, "taskY": 72048, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.970214821902, 20.4488891514852], [121.971588112917, 20.4488891514852], [121.971588112917, 20.4501758981084], [121.970214821902, 20.4501758981084], [121.970214821902, 20.4488891514852]]]]}, "properties": {"taskId": 5290, "taskX": 219888, "taskY": 146289, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.753234841472, 17.6047570866729], [121.755981423503, 17.6047570866729], [121.755981423503, 17.6073750150926], [121.753234841472, 17.6073750150926], [121.753234841472, 17.6047570866729]]]]}, "properties": {"taskId": 5316, "taskX": 109865, "taskY": 72049, "taskZoom": 17, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.60217282978, 18.1458517685528], [121.607665993842, 18.1458517685528], [121.607665993842, 18.1510716620724], [121.60217282978, 18.1510716620724], [121.60217282978, 18.1458517685528]]]]}, "properties": {"taskId": 5263, "taskX": 54905, "taskY": 36128, "taskZoom": 16, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[121.661224343442, 18.1954344586268], [121.662597634457, 18.1954344586268], [121.662597634457, 18.1967390760021], [121.661224343442, 18.1967390760021], [121.661224343442, 18.1954344586268]]]]}, "properties": {"taskId": 5251, "taskX": 219663, "taskY": 144550, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}]}, "defaultLocale": "en", "projectInfo": {"locale": "en", "name": "Typhoon Ompong: Cagayan and Batanes Structures", "shortDescription": "Typhoon Ompong (Mangkhut) is projected to hit the northern areas of the Philippines, including Cagayan and Batanes. Mapping buildings is needed to augment the existing OSM layers.", "description": "This task is created to provide building footprints for Cagayan and Batanes. \n\nTyphoon Ompong (Mangkhut) is projected to hit the northern areas of the Philippines, including Cagayan and Batanes. Mapping buildings is needed to augment the existing OSM layers.", "instructions": "Project Specific Mapping Notes\n========================\n* The road network in Luzon is 'good enough' for now, please concentrate on buildings for this project.\n* Lots of this area is uninhabited, if there are no structures, mark as completely mapped and move on.\n* Some squares will already be partially or fully mapped, map in more if needed or fix up the existing mapping, or just mark it \"Completely Mapped\" if it is already done.\n\nImagery\n=========================\n* Use DigitalGlobe Standard imagery (automatically loaded with iD & JOSM remote control) - it seems to have the most consistent hi-resolution, relatively recent imagery of Luzon. Adjust offset to existing mapping if necessary.\n* Check other imagery sources if you have a tile that is either cloudy or no hi-resolution imagery available; please mark the task as Bad Imagery if none are available.\n\nBuildings\n=========================\n* Please accurately outline all the buildings you can find. The outline should be for the full size of the building even if it is partly covered by trees in the imagery.\n* Most buildings are rectangular, after drawing the outline, use the 's' key in the iD web editor to \"square\" the corners.\n* For circular buildings there is the 'o' key in the iD editor to create a circular structure.\n* Many buildings are very close, but do not actually touch each other, try to map them close to each other without letting them connect or share nodes with each other, roads or residential area outlines. In the iD web editor, holding down the \"alt\" key will keep nodes of \"snapping\" to each other and accidentally connecting.\n* In the iD web editor, the first time you map a building you will use the \"Building Features\" category and then at the top of the list select \"Building\" again, this is the most generic building tag we can use as we almost never can tell the more specific use of any building from imagery alone.\n\n**If you have personal knowledge of a building**, please add that information to the building, like the name or type of building (hospital, school, gas station, etc)", "perTaskInstructions": ""}, "mapperLevel": "BEGINNER", "enforceMapperLevel": true, "enforceValidatorRole": false, "private": false, "entitiesToMap": "buildings", "changesetComment": "#hotosm-project-5236 #OmpongPH #TyphoonOmpong Digitize buildings", "dueDate": null, "imagery": "tms[22]:https://{switch:a,b,c,d}.tiles.mapbox.com/v4/digitalglobe.0a8e44ba/{zoom}/{x}/{y}.png?access_token=pk.eyJ1IjoiZGlnaXRhbGdsb2JlIiwiYSI6ImNqZGFrZ3pjczNpaHYycXFyMGo0djY3N2IifQ.90uebT4-ow1uqZKTUrf6RQ", "mappingTypes": ["BUILDINGS"], "campaignTag": "PH disaster response", "organisationTag": "OSM-PH", "licenseId": null, "allowedUsernames": [], "priorityAreas": [{"type": "Polygon", "coordinates": [[[120.921205110193, 18.5787647026515], [120.93493802035, 18.3990323837952], [121.399110383631, 18.171276112775], [121.272767610193, 17.8918259429992], [122.181886262537, 17.5569519935463], [122.1434341141, 17.8055511801544], [122.195619172693, 17.9809615178986], [122.256043977381, 18.1767851938511], [121.981385774256, 18.2785268872605], [121.149171418787, 18.625041938116], [120.921205110193, 18.5787647026515]]]}], "created": "2018-09-14T00:23:22.171598", "lastUpdated": "2018-11-07T18:28:00.007923", "author": "feyeandal", "activeMappers": 2, "taskCreationMode": "GRID"}
diff --git a/tests/fixtures/my-bucket/example_tasks/5400?as_file=false b/tests/fixtures/my-bucket/example_tasks/5400?as_file=false
new file mode 100644
index 0000000..5eacc74
--- /dev/null
+++ b/tests/fixtures/my-bucket/example_tasks/5400?as_file=false
@@ -0,0 +1 @@
+{"projectId": 5400, "projectStatus": "PUBLISHED", "projectPriority": "URGENT", "areaOfInterest": {"type": "MultiPolygon", "coordinates": [[[[-97.6810313335696, 20.9225614697171], [-97.6739932171145, 20.9216795822717], [-97.6714182964602, 20.9173502413682], [-97.6630068889895, 20.9208778619092], [-97.6623202434817, 20.8973053673631], [-97.6565695873537, 20.89850813534], [-97.6466990581788, 20.8836733233173], [-97.6664401165284, 20.883031784867], [-97.6727057567872, 20.8948998024889], [-97.6877261272707, 20.8905696885526], [-97.6949359051027, 20.8990694237633], [-97.6894629364963, 20.9030785657247], [-97.6900637513157, 20.9091722563085], [-97.6872742539402, 20.9122190087571], [-97.6839697724339, 20.9148648225028], [-97.6860726243015, 20.9199157918133], [-97.683454788303, 20.9215098065529], [-97.6810313335696, 20.9225614697171]]]]}, "tasks": {"type": "FeatureCollection", "features": [{"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.657470685632, 20.8947395129029], [-97.657470685632, 20.8953810013247], [-97.6567840401243, 20.8953810013247], [-97.6567840401243, 20.8947395129029], [-97.657470685632, 20.8947395129029]]]]}, "properties": {"taskId": 1583, "taskX": 119920, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6595306221551, 20.8908905247962], [-97.6595306221551, 20.891532029668], [-97.6588439766474, 20.891532029668], [-97.6588439766474, 20.8908905247962], [-97.6595306221551, 20.8908905247962]]]]}, "properties": {"taskId": 1486, "taskX": 119917, "taskY": 293266, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6609039131704, 20.8947395129029], [-97.6609039131704, 20.8953810013247], [-97.6602172676627, 20.8953810013247], [-97.6602172676627, 20.8947395129029], [-97.6609039131704, 20.8947395129029]]]]}, "properties": {"taskId": 1459, "taskX": 119915, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6609039131704, 20.891532029668], [-97.6609039131704, 20.8921735317983], [-97.6602172676627, 20.8921735317983], [-97.6602172676627, 20.891532029668], [-97.6609039131704, 20.891532029668]]]]}, "properties": {"taskId": 1448, "taskX": 119915, "taskY": 293267, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.9120587376723], [-97.6732635323089, 20.9127001520379], [-97.6725768868012, 20.9127001520379], [-97.6725768868012, 20.9120587376723], [-97.6732635323089, 20.9120587376723]]]]}, "properties": {"taskId": 805, "taskX": 119897, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.9120587376723], [-97.6746368233242, 20.9127001520379], [-97.6739501778165, 20.9127001520379], [-97.6739501778165, 20.9120587376723], [-97.6746368233242, 20.9120587376723]]]]}, "properties": {"taskId": 734, "taskX": 119895, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6856231514473, 20.8934565278341], [-97.6856231514473, 20.8940980217394], [-97.6849365059396, 20.8940980217394], [-97.6849365059396, 20.8934565278341], [-97.6856231514473, 20.8934565278341]]]]}, "properties": {"taskId": 97, "taskX": 119879, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6876830879703, 20.891532029668], [-97.6876830879703, 20.8921735317983], [-97.6869964424626, 20.8921735317983], [-97.6869964424626, 20.891532029668], [-97.6876830879703, 20.891532029668]]]]}, "properties": {"taskId": 61, "taskX": 119876, "taskY": 293267, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.9094930527734], [-97.6815032784011, 20.9101344781134], [-97.6808166328934, 20.9101344781134], [-97.6808166328934, 20.9094930527734], [-97.6815032784011, 20.9094930527734]]]]}, "properties": {"taskId": 326, "taskX": 119885, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9094930527734], [-97.6801299873857, 20.9101344781134], [-97.6794433418781, 20.9101344781134], [-97.6794433418781, 20.9094930527734], [-97.6801299873857, 20.9094930527734]]]]}, "properties": {"taskId": 416, "taskX": 119887, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.8966639699422], [-97.6821899239088, 20.8973054501379], [-97.6815032784011, 20.8973054501379], [-97.6815032784011, 20.8966639699422], [-97.6821899239088, 20.8966639699422]]]]}, "properties": {"taskId": 287, "taskX": 119884, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.9133415636598], [-97.6739501778165, 20.9139829725378], [-97.6732635323089, 20.9139829725378], [-97.6732635323089, 20.9133415636598], [-97.6739501778165, 20.9133415636598]]]]}, "properties": {"taskId": 807, "taskX": 119896, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6588439766474, 20.8889659937324], [-97.6588439766474, 20.8896075068283], [-97.6581573311397, 20.8896075068283], [-97.6581573311397, 20.8889659937324], [-97.6588439766474, 20.8889659937324]]]]}, "properties": {"taskId": 1519, "taskX": 119918, "taskY": 293263, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6588439766474, 20.8896075068283], [-97.6588439766474, 20.890249017183], [-97.6581573311397, 20.890249017183], [-97.6581573311397, 20.8896075068283], [-97.6588439766474, 20.8896075068283]]]]}, "properties": {"taskId": 1522, "taskX": 119918, "taskY": 293264, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.9101344781134], [-97.6849365059396, 20.91077590071], [-97.6842498604319, 20.91077590071], [-97.6842498604319, 20.9101344781134], [-97.6849365059396, 20.9101344781134]]]]}, "properties": {"taskId": 182, "taskX": 119880, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.91077590071], [-97.6849365059396, 20.911417320563], [-97.6842498604319, 20.911417320563], [-97.6842498604319, 20.91077590071], [-97.6849365059396, 20.91077590071]]]]}, "properties": {"taskId": 183, "taskX": 119880, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.9101344781134], [-97.6835632149242, 20.91077590071], [-97.6828765694165, 20.91077590071], [-97.6828765694165, 20.9101344781134], [-97.6835632149242, 20.9101344781134]]]]}, "properties": {"taskId": 242, "taskX": 119882, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.8934565278341], [-97.6629638496935, 20.8940980217394], [-97.6622772041858, 20.8940980217394], [-97.6622772041858, 20.8934565278341], [-97.6629638496935, 20.8934565278341]]]]}, "properties": {"taskId": 1396, "taskX": 119912, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.911417320563], [-97.6849365059396, 20.9120587376723], [-97.6842498604319, 20.9120587376723], [-97.6842498604319, 20.911417320563], [-97.6849365059396, 20.911417320563]]]]}, "properties": {"taskId": 186, "taskX": 119880, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.9127001520379], [-97.677383405355, 20.9133415636598], [-97.6766967598473, 20.9133415636598], [-97.6766967598473, 20.9127001520379], [-97.677383405355, 20.9127001520379]]]]}, "properties": {"taskId": 592, "taskX": 119891, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9127001520379], [-97.6787566963704, 20.9133415636598], [-97.6780700508627, 20.9133415636598], [-97.6780700508627, 20.9127001520379], [-97.6787566963704, 20.9127001520379]]]]}, "properties": {"taskId": 511, "taskX": 119889, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6547241036012, 20.8876829593169], [-97.6547241036012, 20.8883244778952], [-97.6540374580935, 20.8883244778952], [-97.6540374580935, 20.8876829593169], [-97.6547241036012, 20.8876829593169]]]]}, "properties": {"taskId": 1644, "taskX": 119924, "taskY": 293261, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.9171899757676], [-97.6643371407089, 20.9178313681812], [-97.6636504952012, 20.9178313681812], [-97.6636504952012, 20.9171899757676], [-97.6643371407089, 20.9171899757676]]]]}, "properties": {"taskId": 1354, "taskX": 119910, "taskY": 293307, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.915907182708], [-97.6670837227396, 20.9165485806099], [-97.6663970772319, 20.9165485806099], [-97.6663970772319, 20.915907182708], [-97.6670837227396, 20.915907182708]]]]}, "properties": {"taskId": 1176, "taskX": 119906, "taskY": 293305, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.915907182708], [-97.6718902412935, 20.9165485806099], [-97.6712035957858, 20.9165485806099], [-97.6712035957858, 20.915907182708], [-97.6718902412935, 20.915907182708]]]]}, "properties": {"taskId": 886, "taskX": 119899, "taskY": 293305, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.9165485806099], [-97.6828765694165, 20.9171899757676], [-97.6821899239088, 20.9171899757676], [-97.6821899239088, 20.9165485806099], [-97.6828765694165, 20.9165485806099]]]]}, "properties": {"taskId": 264, "taskX": 119883, "taskY": 293306, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6602172676627, 20.8876829593169], [-97.6602172676627, 20.8883244778952], [-97.6595306221551, 20.8883244778952], [-97.6595306221551, 20.8876829593169], [-97.6602172676627, 20.8876829593169]]]]}, "properties": {"taskId": 1473, "taskX": 119916, "taskY": 293261, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.9171899757676], [-97.6670837227396, 20.9178313681812], [-97.6663970772319, 20.9178313681812], [-97.6663970772319, 20.9171899757676], [-97.6670837227396, 20.9171899757676]]]]}, "properties": {"taskId": 1180, "taskX": 119906, "taskY": 293307, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.9178313681812], [-97.6636504952012, 20.9184727578503], [-97.6629638496935, 20.9184727578503], [-97.6629638496935, 20.9178313681812], [-97.6636504952012, 20.9178313681812]]]]}, "properties": {"taskId": 1359, "taskX": 119911, "taskY": 293308, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9139829725378], [-97.6808166328934, 20.9146243786719], [-97.6801299873857, 20.9146243786719], [-97.6801299873857, 20.9139829725378], [-97.6808166328934, 20.9139829725378]]]]}, "properties": {"taskId": 429, "taskX": 119886, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.9069273239795], [-97.6650237862166, 20.9075687602929], [-97.6643371407089, 20.9075687602929], [-97.6643371407089, 20.9069273239795], [-97.6650237862166, 20.9069273239795]]]]}, "properties": {"taskId": 1249, "taskX": 119909, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6691436592627, 20.9005128099832], [-97.6691436592627, 20.9011542737251], [-97.668457013755, 20.9011542737251], [-97.668457013755, 20.9005128099832], [-97.6691436592627, 20.9005128099832]]]]}, "properties": {"taskId": 976, "taskX": 119903, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.8876829593169], [-97.6643371407089, 20.8883244778952], [-97.6636504952012, 20.8883244778952], [-97.6636504952012, 20.8876829593169], [-97.6643371407089, 20.8876829593169]]]]}, "properties": {"taskId": 1289, "taskX": 119910, "taskY": 293261, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.9127001520379], [-97.6815032784011, 20.9133415636598], [-97.6808166328934, 20.9133415636598], [-97.6808166328934, 20.9127001520379], [-97.6815032784011, 20.9127001520379]]]]}, "properties": {"taskId": 337, "taskX": 119885, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.911417320563], [-97.6718902412935, 20.9120587376723], [-97.6712035957858, 20.9120587376723], [-97.6712035957858, 20.911417320563], [-97.6718902412935, 20.911417320563]]]]}, "properties": {"taskId": 873, "taskX": 119899, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.899229874272], [-97.6643371407089, 20.8998713434988], [-97.6636504952012, 20.8998713434988], [-97.6636504952012, 20.899229874272], [-97.6643371407089, 20.899229874272]]]]}, "properties": {"taskId": 1313, "taskX": 119910, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6567840401243, 20.886399913937], [-97.6567840401243, 20.8870414379975], [-97.6560973946166, 20.8870414379975], [-97.6560973946166, 20.886399913937], [-97.6567840401243, 20.886399913937]]]]}, "properties": {"taskId": 1558, "taskX": 119921, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.9088516246899], [-97.6766967598473, 20.9094930527734], [-97.6760101143396, 20.9094930527734], [-97.6760101143396, 20.9088516246899], [-97.6766967598473, 20.9088516246899]]]]}, "properties": {"taskId": 658, "taskX": 119892, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.9120587376723], [-97.6753234688319, 20.9127001520379], [-97.6746368233242, 20.9127001520379], [-97.6746368233242, 20.9120587376723], [-97.6753234688319, 20.9120587376723]]]]}, "properties": {"taskId": 732, "taskX": 119894, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.9088516246899], [-97.6732635323089, 20.9094930527734], [-97.6725768868012, 20.9094930527734], [-97.6725768868012, 20.9088516246899], [-97.6732635323089, 20.9088516246899]]]]}, "properties": {"taskId": 796, "taskX": 119897, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.9075687602929], [-97.6760101143396, 20.9082101938631], [-97.6753234688319, 20.9082101938631], [-97.6753234688319, 20.9075687602929], [-97.6760101143396, 20.9075687602929]]]]}, "properties": {"taskId": 656, "taskX": 119893, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.8876829593169], [-97.6663970772319, 20.8883244778952], [-97.6657104317242, 20.8883244778952], [-97.6657104317242, 20.8876829593169], [-97.6663970772319, 20.8876829593169]]]]}, "properties": {"taskId": 1099, "taskX": 119907, "taskY": 293261, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6554107491089, 20.8851168575932], [-97.6554107491089, 20.8857583871356], [-97.6547241036012, 20.8857583871356], [-97.6547241036012, 20.8851168575932], [-97.6554107491089, 20.8851168575932]]]]}, "properties": {"taskId": 1599, "taskX": 119923, "taskY": 293257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6560973946166, 20.8851168575932], [-97.6560973946166, 20.8857583871356], [-97.6554107491089, 20.8857583871356], [-97.6554107491089, 20.8851168575932], [-97.6560973946166, 20.8851168575932]]]]}, "properties": {"taskId": 1597, "taskX": 119922, "taskY": 293257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.9120587376723], [-97.6712035957858, 20.9127001520379], [-97.6705169502781, 20.9127001520379], [-97.6705169502781, 20.9120587376723], [-97.6712035957858, 20.9120587376723]]]]}, "properties": {"taskId": 942, "taskX": 119900, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6588439766474, 20.8844753253101], [-97.6588439766474, 20.8851168575932], [-97.6581573311397, 20.8851168575932], [-97.6581573311397, 20.8844753253101], [-97.6588439766474, 20.8844753253101]]]]}, "properties": {"taskId": 1506, "taskX": 119918, "taskY": 293256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6540374580935, 20.8908905247962], [-97.6540374580935, 20.891532029668], [-97.6533508125859, 20.891532029668], [-97.6533508125859, 20.8908905247962], [-97.6540374580935, 20.8908905247962]]]]}, "properties": {"taskId": 1657, "taskX": 119925, "taskY": 293266, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6526641670782, 20.886399913937], [-97.6526641670782, 20.8870414379975], [-97.6519775215705, 20.8870414379975], [-97.6519775215705, 20.886399913937], [-97.6526641670782, 20.886399913937]]]]}, "properties": {"taskId": 1670, "taskX": 119927, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.9127001520379], [-97.6732635323089, 20.9133415636598], [-97.6725768868012, 20.9133415636598], [-97.6725768868012, 20.9127001520379], [-97.6732635323089, 20.9127001520379]]]]}, "properties": {"taskId": 808, "taskX": 119897, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.9133415636598], [-97.6698303047704, 20.9139829725378], [-97.6691436592627, 20.9139829725378], [-97.6691436592627, 20.9133415636598], [-97.6698303047704, 20.9133415636598]]]]}, "properties": {"taskId": 1014, "taskX": 119902, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.8883244778952], [-97.6657104317242, 20.8896075068283], [-97.6643371407089, 20.8896075068283], [-97.6643371407089, 20.8883244778952], [-97.6657104317242, 20.8883244778952]]]]}, "properties": {"taskId": 1196, "taskX": 59954, "taskY": 146631, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.8934565278341], [-97.6643371407089, 20.8947395129029], [-97.6629638496935, 20.8947395129029], [-97.6629638496935, 20.8934565278341], [-97.6643371407089, 20.8934565278341]]]]}, "properties": {"taskId": 1302, "taskX": 59955, "taskY": 146635, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.886399913937], [-97.6670837227396, 20.8870414379975], [-97.6663970772319, 20.8870414379975], [-97.6663970772319, 20.886399913937], [-97.6670837227396, 20.886399913937]]]]}, "properties": {"taskId": 1093, "taskX": 119906, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6777267281088, 20.9046822752807], [-97.677383405355, 20.9046822752807], [-97.677383405355, 20.9050029985807], [-97.6777267281088, 20.9050029985807], [-97.6777267281088, 20.9046822752807]]]]}, "properties": {"taskId": 1721, "taskX": 239781, "taskY": 586575, "taskZoom": 20, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6777267281088, 20.9043615512951], [-97.677383405355, 20.9043615512951], [-97.677383405355, 20.9046822752807], [-97.6777267281088, 20.9046822752807], [-97.6777267281088, 20.9043615512951]]]]}, "properties": {"taskId": 1720, "taskX": 239781, "taskY": 586574, "taskZoom": 20, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9046822752807], [-97.6777267281088, 20.9046822752807], [-97.6777267281088, 20.9050029985807], [-97.6780700508627, 20.9050029985807], [-97.6780700508627, 20.9046822752807]]]]}, "properties": {"taskId": 1719, "taskX": 239780, "taskY": 586575, "taskZoom": 20, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9043615512951], [-97.6777267281088, 20.9043615512951], [-97.6777267281088, 20.9046822752807], [-97.6780700508627, 20.9046822752807], [-97.6780700508627, 20.9043615512951]]]]}, "properties": {"taskId": 1718, "taskX": 239780, "taskY": 586574, "taskZoom": 20, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.8960224870044], [-97.6712035957858, 20.8973054501379], [-97.6698303047704, 20.8973054501379], [-97.6698303047704, 20.8960224870044], [-97.6712035957858, 20.8960224870044]]]]}, "properties": {"taskId": 896, "taskX": 59950, "taskY": 146637, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.899229874272], [-97.6650237862166, 20.8998713434988], [-97.6643371407089, 20.8998713434988], [-97.6643371407089, 20.899229874272], [-97.6650237862166, 20.899229874272]]]]}, "properties": {"taskId": 1225, "taskX": 119909, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.9152657820619], [-97.677383405355, 20.915907182708], [-97.6766967598473, 20.915907182708], [-97.6766967598473, 20.9152657820619], [-97.677383405355, 20.9152657820619]]]]}, "properties": {"taskId": 600, "taskX": 119891, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9075687602929], [-97.6787566963704, 20.9082101938631], [-97.6780700508627, 20.9082101938631], [-97.6780700508627, 20.9075687602929], [-97.6787566963704, 20.9075687602929]]]]}, "properties": {"taskId": 495, "taskX": 119889, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.906285884923], [-97.6746368233242, 20.9069273239795], [-97.6739501778165, 20.9069273239795], [-97.6739501778165, 20.906285884923], [-97.6746368233242, 20.906285884923]]]]}, "properties": {"taskId": 717, "taskX": 119895, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.9184727578503], [-97.6815032784011, 20.919114144775], [-97.6808166328934, 20.919114144775], [-97.6808166328934, 20.9184727578503], [-97.6815032784011, 20.9184727578503]]]]}, "properties": {"taskId": 354, "taskX": 119885, "taskY": 293309, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.9133415636598], [-97.6663970772319, 20.9139829725378], [-97.6657104317242, 20.9139829725378], [-97.6657104317242, 20.9133415636598], [-97.6663970772319, 20.9133415636598]]]]}, "properties": {"taskId": 1170, "taskX": 119907, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.9082101938631], [-97.6705169502781, 20.9088516246899], [-97.6698303047704, 20.9088516246899], [-97.6698303047704, 20.9082101938631], [-97.6705169502781, 20.9082101938631]]]]}, "properties": {"taskId": 932, "taskX": 119901, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.9011542737251], [-97.6718902412935, 20.9017957347244], [-97.6712035957858, 20.9017957347244], [-97.6712035957858, 20.9011542737251], [-97.6718902412935, 20.9011542737251]]]]}, "properties": {"taskId": 841, "taskX": 119899, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.892815031187], [-97.6663970772319, 20.8934565278341], [-97.6657104317242, 20.8934565278341], [-97.6657104317242, 20.892815031187], [-97.6663970772319, 20.892815031187]]]]}, "properties": {"taskId": 1112, "taskX": 119907, "taskY": 293269, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9037201012666], [-97.6801299873857, 20.9043615512951], [-97.6794433418781, 20.9043615512951], [-97.6794433418781, 20.9037201012666], [-97.6801299873857, 20.9037201012666]]]]}, "properties": {"taskId": 399, "taskX": 119887, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6691436592627, 20.9037201012666], [-97.6691436592627, 20.9043615512951], [-97.668457013755, 20.9043615512951], [-97.668457013755, 20.9037201012666], [-97.6691436592627, 20.9037201012666]]]]}, "properties": {"taskId": 987, "taskX": 119903, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.9005128099832], [-97.6698303047704, 20.9011542737251], [-97.6691436592627, 20.9011542737251], [-97.6691436592627, 20.9005128099832], [-97.6698303047704, 20.9005128099832]]]]}, "properties": {"taskId": 974, "taskX": 119902, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6581573311397, 20.8940980217394], [-97.6581573311397, 20.8947395129029], [-97.657470685632, 20.8947395129029], [-97.657470685632, 20.8940980217394], [-97.6581573311397, 20.8940980217394]]]]}, "properties": {"taskId": 1537, "taskX": 119919, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6595306221551, 20.8940980217394], [-97.6595306221551, 20.8947395129029], [-97.6588439766474, 20.8947395129029], [-97.6588439766474, 20.8940980217394], [-97.6595306221551, 20.8940980217394]]]]}, "properties": {"taskId": 1495, "taskX": 119917, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.91077590071], [-97.6753234688319, 20.911417320563], [-97.6746368233242, 20.911417320563], [-97.6746368233242, 20.91077590071], [-97.6753234688319, 20.91077590071]]]]}, "properties": {"taskId": 728, "taskX": 119894, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.9082101938631], [-97.6739501778165, 20.9088516246899], [-97.6732635323089, 20.9088516246899], [-97.6732635323089, 20.9082101938631], [-97.6739501778165, 20.9082101938631]]]]}, "properties": {"taskId": 791, "taskX": 119896, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6567840401243, 20.8851168575932], [-97.6567840401243, 20.8857583871356], [-97.6560973946166, 20.8857583871356], [-97.6560973946166, 20.8851168575932], [-97.6567840401243, 20.8851168575932]]]]}, "properties": {"taskId": 1554, "taskX": 119921, "taskY": 293257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.8876829593169], [-97.6636504952012, 20.8883244778952], [-97.6629638496935, 20.8883244778952], [-97.6629638496935, 20.8876829593169], [-97.6636504952012, 20.8876829593169]]]]}, "properties": {"taskId": 1291, "taskX": 119911, "taskY": 293261, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.8966639699422], [-97.6794433418781, 20.8973054501379], [-97.6787566963704, 20.8973054501379], [-97.6787566963704, 20.8966639699422], [-97.6794433418781, 20.8966639699422]]]]}, "properties": {"taskId": 458, "taskX": 119888, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.886399913937], [-97.6657104317242, 20.8870414379975], [-97.6650237862166, 20.8870414379975], [-97.6650237862166, 20.886399913937], [-97.6657104317242, 20.886399913937]]]]}, "properties": {"taskId": 1189, "taskX": 119908, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6602172676627, 20.8883244778952], [-97.6602172676627, 20.8889659937324], [-97.6595306221551, 20.8889659937324], [-97.6595306221551, 20.8883244778952], [-97.6602172676627, 20.8883244778952]]]]}, "properties": {"taskId": 1476, "taskX": 119916, "taskY": 293262, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.8953810013247], [-97.6828765694165, 20.8960224870044], [-97.6821899239088, 20.8960224870044], [-97.6821899239088, 20.8953810013247], [-97.6828765694165, 20.8953810013247]]]]}, "properties": {"taskId": 206, "taskX": 119883, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6581573311397, 20.8857583871356], [-97.6581573311397, 20.886399913937], [-97.657470685632, 20.886399913937], [-97.657470685632, 20.8857583871356], [-97.6581573311397, 20.8857583871356]]]]}, "properties": {"taskId": 1512, "taskX": 119919, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6622772041858, 20.8947395129029], [-97.6622772041858, 20.8953810013247], [-97.6615905586781, 20.8953810013247], [-97.6615905586781, 20.8947395129029], [-97.6622772041858, 20.8947395129029]]]]}, "properties": {"taskId": 1402, "taskX": 119913, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6609039131704, 20.8953810013247], [-97.6609039131704, 20.8960224870044], [-97.6602172676627, 20.8960224870044], [-97.6602172676627, 20.8953810013247], [-97.6609039131704, 20.8953810013247]]]]}, "properties": {"taskId": 1460, "taskX": 119915, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.8908905247962], [-97.6663970772319, 20.891532029668], [-97.6657104317242, 20.891532029668], [-97.6657104317242, 20.8908905247962], [-97.6663970772319, 20.8908905247962]]]]}, "properties": {"taskId": 1107, "taskX": 119907, "taskY": 293266, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.8908905247962], [-97.6863097969549, 20.891532029668], [-97.6856231514473, 20.891532029668], [-97.6856231514473, 20.8908905247962], [-97.6863097969549, 20.8908905247962]]]]}, "properties": {"taskId": 87, "taskX": 119878, "taskY": 293266, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.9146243786719], [-97.6760101143396, 20.9152657820619], [-97.6753234688319, 20.9152657820619], [-97.6753234688319, 20.9146243786719], [-97.6760101143396, 20.9146243786719]]]]}, "properties": {"taskId": 677, "taskX": 119893, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.8921735317983], [-97.6808166328934, 20.8934565278341], [-97.6794433418781, 20.8934565278341], [-97.6794433418781, 20.8921735317983], [-97.6808166328934, 20.8921735317983]]]]}, "properties": {"taskId": 364, "taskX": 59943, "taskY": 146634, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.8844753253101], [-97.668457013755, 20.8857583871356], [-97.6670837227396, 20.8857583871356], [-97.6670837227396, 20.8844753253101], [-97.668457013755, 20.8844753253101]]]]}, "properties": {"taskId": 1022, "taskX": 59952, "taskY": 146628, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.8831922525216], [-97.6670837227396, 20.8844753253101], [-97.6657104317242, 20.8844753253101], [-97.6657104317242, 20.8831922525216], [-97.6670837227396, 20.8831922525216]]]]}, "properties": {"taskId": 1090, "taskX": 59953, "taskY": 146627, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.8819091687706], [-97.6629638496935, 20.8831922525216], [-97.6615905586781, 20.8831922525216], [-97.6615905586781, 20.8819091687706], [-97.6629638496935, 20.8819091687706]]]]}, "properties": {"taskId": 1366, "taskX": 59956, "taskY": 146626, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6560973946166, 20.8831922525216], [-97.6560973946166, 20.8838337902862], [-97.6554107491089, 20.8838337902862], [-97.6554107491089, 20.8831922525216], [-97.6560973946166, 20.8831922525216]]]]}, "properties": {"taskId": 1592, "taskX": 119922, "taskY": 293254, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6519775215705, 20.8883244778952], [-97.6519775215705, 20.8896075068283], [-97.6506042305551, 20.8896075068283], [-97.6506042305551, 20.8883244778952], [-97.6519775215705, 20.8883244778952]]]]}, "properties": {"taskId": 1687, "taskX": 59964, "taskY": 146631, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.915907182708], [-97.6835632149242, 20.9165485806099], [-97.6828765694165, 20.9165485806099], [-97.6828765694165, 20.915907182708], [-97.6835632149242, 20.915907182708]]]]}, "properties": {"taskId": 259, "taskX": 119882, "taskY": 293305, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6842498604319, 20.8960224870044], [-97.6842498604319, 20.8966639699422], [-97.6835632149242, 20.8966639699422], [-97.6835632149242, 20.8960224870044], [-97.6842498604319, 20.8960224870044]]]]}, "properties": {"taskId": 152, "taskX": 119881, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.9024371929812], [-97.677383405355, 20.9030786484952], [-97.6766967598473, 20.9030786484952], [-97.6766967598473, 20.9024371929812], [-97.677383405355, 20.9024371929812]]]]}, "properties": {"taskId": 560, "taskX": 119891, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6547241036012, 20.890249017183], [-97.6547241036012, 20.8908905247962], [-97.6540374580935, 20.8908905247962], [-97.6540374580935, 20.890249017183], [-97.6547241036012, 20.890249017183]]]]}, "properties": {"taskId": 1652, "taskX": 119924, "taskY": 293265, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9184727578503], [-97.6801299873857, 20.919114144775], [-97.6794433418781, 20.919114144775], [-97.6794433418781, 20.9184727578503], [-97.6801299873857, 20.9184727578503]]]]}, "properties": {"taskId": 444, "taskX": 119887, "taskY": 293309, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.9152657820619], [-97.6712035957858, 20.915907182708], [-97.6705169502781, 20.915907182708], [-97.6705169502781, 20.9152657820619], [-97.6712035957858, 20.9152657820619]]]]}, "properties": {"taskId": 953, "taskX": 119900, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.906285884923], [-97.6725768868012, 20.9069273239795], [-97.6718902412935, 20.9069273239795], [-97.6718902412935, 20.906285884923], [-97.6725768868012, 20.906285884923]]]]}, "properties": {"taskId": 855, "taskX": 119898, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.9050029985807], [-97.6718902412935, 20.9056444431233], [-97.6712035957858, 20.9056444431233], [-97.6712035957858, 20.9050029985807], [-97.6718902412935, 20.9050029985807]]]]}, "properties": {"taskId": 853, "taskX": 119899, "taskY": 293288, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.9075687602929], [-97.6863097969549, 20.9088516246899], [-97.6849365059396, 20.9088516246899], [-97.6849365059396, 20.9075687602929], [-97.6863097969549, 20.9075687602929]]]]}, "properties": {"taskId": 127, "taskX": 59939, "taskY": 146646, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.8985884023029], [-97.6629638496935, 20.8998713434988], [-97.6615905586781, 20.8998713434988], [-97.6615905586781, 20.8985884023029], [-97.6629638496935, 20.8985884023029]]]]}, "properties": {"taskId": 1406, "taskX": 59956, "taskY": 146639, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9197555289553], [-97.6787566963704, 20.920396910391], [-97.6780700508627, 20.920396910391], [-97.6780700508627, 20.9197555289553], [-97.6787566963704, 20.9197555289553]]]]}, "properties": {"taskId": 532, "taskX": 119889, "taskY": 293311, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.8985884023029], [-97.6821899239088, 20.899229874272], [-97.6815032784011, 20.899229874272], [-97.6815032784011, 20.8985884023029], [-97.6821899239088, 20.8985884023029]]]]}, "properties": {"taskId": 294, "taskX": 119884, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.9043615512951], [-97.6815032784011, 20.9050029985807], [-97.6808166328934, 20.9050029985807], [-97.6808166328934, 20.9043615512951], [-97.6815032784011, 20.9043615512951]]]]}, "properties": {"taskId": 313, "taskX": 119885, "taskY": 293287, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.9050029985807], [-97.6835632149242, 20.906285884923], [-97.6821899239088, 20.906285884923], [-97.6821899239088, 20.9050029985807], [-97.6835632149242, 20.9050029985807]]]]}, "properties": {"taskId": 229, "taskX": 59941, "taskY": 146644, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6547241036012, 20.8883244778952], [-97.6547241036012, 20.8889659937324], [-97.6540374580935, 20.8889659937324], [-97.6540374580935, 20.8883244778952], [-97.6547241036012, 20.8883244778952]]]]}, "properties": {"taskId": 1647, "taskX": 119924, "taskY": 293262, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.9210382890822], [-97.677383405355, 20.9216796650287], [-97.6766967598473, 20.9216796650287], [-97.6766967598473, 20.9210382890822], [-97.677383405355, 20.9210382890822]]]]}, "properties": {"taskId": 617, "taskX": 119891, "taskY": 293313, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.920396910391], [-97.677383405355, 20.9210382890822], [-97.6766967598473, 20.9210382890822], [-97.6766967598473, 20.920396910391], [-97.677383405355, 20.920396910391]]]]}, "properties": {"taskId": 616, "taskX": 119891, "taskY": 293312, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.920396910391], [-97.6787566963704, 20.9210382890822], [-97.6780700508627, 20.9210382890822], [-97.6780700508627, 20.920396910391], [-97.6787566963704, 20.920396910391]]]]}, "properties": {"taskId": 535, "taskX": 119889, "taskY": 293312, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9210382890822], [-97.6801299873857, 20.9216796650287], [-97.6794433418781, 20.9216796650287], [-97.6794433418781, 20.9210382890822], [-97.6801299873857, 20.9210382890822]]]]}, "properties": {"taskId": 452, "taskX": 119887, "taskY": 293313, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9210382890822], [-97.6821899239088, 20.9216796650287], [-97.6815032784011, 20.9216796650287], [-97.6815032784011, 20.9210382890822], [-97.6821899239088, 20.9210382890822]]]]}, "properties": {"taskId": 360, "taskX": 119884, "taskY": 293313, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6744651619473, 20.9163882313917], [-97.6742935005704, 20.9163882313917], [-97.6742935005704, 20.9165485806099], [-97.6744651619473, 20.9165485806099], [-97.6744651619473, 20.9163882313917]]]]}, "properties": {"taskId": 1717, "taskX": 479581, "taskY": 1173223, "taskZoom": 21, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6744651619473, 20.916227882002], [-97.6742935005704, 20.916227882002], [-97.6742935005704, 20.9163882313917], [-97.6744651619473, 20.9163882313917], [-97.6744651619473, 20.916227882002]]]]}, "properties": {"taskId": 1716, "taskX": 479581, "taskY": 1173222, "taskZoom": 21, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.9163882313917], [-97.6744651619473, 20.9163882313917], [-97.6744651619473, 20.9165485806099], [-97.6746368233242, 20.9165485806099], [-97.6746368233242, 20.9163882313917]]]]}, "properties": {"taskId": 1715, "taskX": 479580, "taskY": 1173223, "taskZoom": 21, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.916227882002], [-97.6744651619473, 20.916227882002], [-97.6744651619473, 20.9163882313917], [-97.6746368233242, 20.9163882313917], [-97.6746368233242, 20.916227882002]]]]}, "properties": {"taskId": 1714, "taskX": 479580, "taskY": 1173222, "taskZoom": 21, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6742935005704, 20.916227882002], [-97.6739501778166, 20.916227882002], [-97.6739501778166, 20.9165485806099], [-97.6742935005704, 20.9165485806099], [-97.6742935005704, 20.916227882002]]]]}, "properties": {"taskId": 1713, "taskX": 239791, "taskY": 586611, "taskZoom": 20, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6742935005704, 20.915907182708], [-97.6739501778166, 20.915907182708], [-97.6739501778166, 20.916227882002], [-97.6742935005704, 20.916227882002], [-97.6742935005704, 20.915907182708]]]]}, "properties": {"taskId": 1712, "taskX": 239791, "taskY": 586610, "taskZoom": 20, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.915907182708], [-97.6742935005704, 20.915907182708], [-97.6742935005704, 20.916227882002], [-97.6746368233242, 20.916227882002], [-97.6746368233242, 20.915907182708]]]]}, "properties": {"taskId": 1710, "taskX": 239790, "taskY": 586610, "taskZoom": 20, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9069273239795], [-97.6794433418781, 20.9075687602929], [-97.6787566963704, 20.9075687602929], [-97.6787566963704, 20.9069273239795], [-97.6794433418781, 20.9069273239795]]]]}, "properties": {"taskId": 490, "taskX": 119888, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.9056444431233], [-97.6650237862166, 20.906285884923], [-97.6643371407089, 20.906285884923], [-97.6643371407089, 20.9056444431233], [-97.6650237862166, 20.9056444431233]]]]}, "properties": {"taskId": 1245, "taskX": 119909, "taskY": 293289, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.906285884923], [-97.6670837227396, 20.9069273239795], [-97.6663970772319, 20.9069273239795], [-97.6663970772319, 20.906285884923], [-97.6670837227396, 20.906285884923]]]]}, "properties": {"taskId": 1150, "taskX": 119906, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.906285884923], [-97.6698303047704, 20.9069273239795], [-97.6691436592627, 20.9069273239795], [-97.6691436592627, 20.906285884923], [-97.6698303047704, 20.906285884923]]]]}, "properties": {"taskId": 993, "taskX": 119902, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.8960224870044], [-97.6670837227396, 20.8966639699422], [-97.6663970772319, 20.8966639699422], [-97.6663970772319, 20.8960224870044], [-97.6670837227396, 20.8960224870044]]]]}, "properties": {"taskId": 1121, "taskX": 119906, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.657470685632, 20.892815031187], [-97.657470685632, 20.8934565278341], [-97.6567840401243, 20.8934565278341], [-97.6567840401243, 20.892815031187], [-97.657470685632, 20.892815031187]]]]}, "properties": {"taskId": 1576, "taskX": 119920, "taskY": 293269, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.8934565278341], [-97.6801299873857, 20.8940980217394], [-97.6794433418781, 20.8940980217394], [-97.6794433418781, 20.8934565278341], [-97.6801299873857, 20.8934565278341]]]]}, "properties": {"taskId": 367, "taskX": 119887, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9197555289553], [-97.6808166328934, 20.920396910391], [-97.6801299873857, 20.920396910391], [-97.6801299873857, 20.9197555289553], [-97.6808166328934, 20.9197555289553]]]]}, "properties": {"taskId": 446, "taskX": 119886, "taskY": 293311, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6842498604319, 20.8998713434988], [-97.6842498604319, 20.9005128099832], [-97.6835632149242, 20.9005128099832], [-97.6835632149242, 20.8998713434988], [-97.6842498604319, 20.8998713434988]]]]}, "properties": {"taskId": 164, "taskX": 119881, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6602172676627, 20.8960224870044], [-97.6602172676627, 20.8966639699422], [-97.6595306221551, 20.8966639699422], [-97.6595306221551, 20.8960224870044], [-97.6602172676627, 20.8960224870044]]]]}, "properties": {"taskId": 1500, "taskX": 119916, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.657470685632, 20.8973054501379], [-97.657470685632, 20.8985884023029], [-97.6560973946166, 20.8985884023029], [-97.6560973946166, 20.8973054501379], [-97.657470685632, 20.8973054501379]]]]}, "properties": {"taskId": 1591, "taskX": 59960, "taskY": 146638, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6533508125859, 20.8908905247962], [-97.6533508125859, 20.8921735317983], [-97.6519775215705, 20.8921735317983], [-97.6519775215705, 20.8908905247962], [-97.6533508125859, 20.8908905247962]]]]}, "properties": {"taskId": 1674, "taskX": 59963, "taskY": 146633, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6533508125859, 20.8844753253101], [-97.6533508125859, 20.8851168575932], [-97.6526641670782, 20.8851168575932], [-97.6526641670782, 20.8844753253101], [-97.6533508125859, 20.8844753253101]]]]}, "properties": {"taskId": 1663, "taskX": 119926, "taskY": 293256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6506042305551, 20.8857583871356], [-97.6506042305551, 20.886399913937], [-97.6499175850474, 20.886399913937], [-97.6499175850474, 20.8857583871356], [-97.6506042305551, 20.8857583871356]]]]}, "properties": {"taskId": 1695, "taskX": 119930, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6869964424626, 20.8979469275915], [-97.6869964424626, 20.8985884023029], [-97.6863097969549, 20.8985884023029], [-97.6863097969549, 20.8979469275915], [-97.6869964424626, 20.8979469275915]]]]}, "properties": {"taskId": 74, "taskX": 119877, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6890563789857, 20.8979469275915], [-97.6890563789857, 20.8985884023029], [-97.688369733478, 20.8985884023029], [-97.688369733478, 20.8979469275915], [-97.6890563789857, 20.8979469275915]]]]}, "properties": {"taskId": 42, "taskX": 119874, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.8960224870044], [-97.6725768868012, 20.8973054501379], [-97.6712035957858, 20.8973054501379], [-97.6712035957858, 20.8960224870044], [-97.6725768868012, 20.8960224870044]]]]}, "properties": {"taskId": 826, "taskX": 59949, "taskY": 146637, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.9005128099832], [-97.6753234688319, 20.9011542737251], [-97.6746368233242, 20.9011542737251], [-97.6746368233242, 20.9005128099832], [-97.6753234688319, 20.9005128099832]]]]}, "properties": {"taskId": 696, "taskX": 119894, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.9037201012666], [-97.6712035957858, 20.9043615512951], [-97.6705169502781, 20.9043615512951], [-97.6705169502781, 20.9037201012666], [-97.6712035957858, 20.9037201012666]]]]}, "properties": {"taskId": 917, "taskX": 119900, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.8896075068283], [-97.6629638496935, 20.890249017183], [-97.6622772041858, 20.890249017183], [-97.6622772041858, 20.8896075068283], [-97.6629638496935, 20.8896075068283]]]]}, "properties": {"taskId": 1384, "taskX": 119912, "taskY": 293264, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6890563789857, 20.9075687602929], [-97.6890563789857, 20.9088516246899], [-97.6876830879703, 20.9088516246899], [-97.6876830879703, 20.9075687602929], [-97.6890563789857, 20.9075687602929]]]]}, "properties": {"taskId": 55, "taskX": 59937, "taskY": 146646, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.9043615512951], [-97.6705169502781, 20.9050029985807], [-97.6698303047704, 20.9050029985807], [-97.6698303047704, 20.9043615512951], [-97.6705169502781, 20.9043615512951]]]]}, "properties": {"taskId": 920, "taskX": 119901, "taskY": 293287, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.8985884023029], [-97.6670837227396, 20.8998713434988], [-97.6657104317242, 20.8998713434988], [-97.6657104317242, 20.8985884023029], [-97.6670837227396, 20.8985884023029]]]]}, "properties": {"taskId": 1129, "taskX": 59953, "taskY": 146639, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.9152657820619], [-97.6663970772319, 20.915907182708], [-97.6657104317242, 20.915907182708], [-97.6657104317242, 20.9152657820619], [-97.6663970772319, 20.9152657820619]]]]}, "properties": {"taskId": 1177, "taskX": 119907, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6890563789857, 20.8921735317983], [-97.6890563789857, 20.8934565278341], [-97.6876830879703, 20.8934565278341], [-97.6876830879703, 20.8921735317983], [-97.6890563789857, 20.8921735317983]]]]}, "properties": {"taskId": 37, "taskX": 59937, "taskY": 146634, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6856231514473, 20.9011542737251], [-97.6856231514473, 20.9017957347244], [-97.6849365059396, 20.9017957347244], [-97.6849365059396, 20.9011542737251], [-97.6856231514473, 20.9011542737251]]]]}, "properties": {"taskId": 121, "taskX": 119879, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.9165485806099], [-97.6657104317242, 20.9171899757676], [-97.6650237862166, 20.9171899757676], [-97.6650237862166, 20.9165485806099], [-97.6657104317242, 20.9165485806099]]]]}, "properties": {"taskId": 1269, "taskX": 119908, "taskY": 293306, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.9165485806099], [-97.6698303047704, 20.9178313681812], [-97.668457013755, 20.9178313681812], [-97.668457013755, 20.9165485806099], [-97.6698303047704, 20.9165485806099]]]]}, "properties": {"taskId": 1019, "taskX": 59951, "taskY": 146653, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.9037201012666], [-97.6760101143396, 20.9043615512951], [-97.6753234688319, 20.9043615512951], [-97.6753234688319, 20.9037201012666], [-97.6760101143396, 20.9037201012666]]]]}, "properties": {"taskId": 644, "taskX": 119893, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.9146243786719], [-97.6828765694165, 20.9152657820619], [-97.6821899239088, 20.9152657820619], [-97.6821899239088, 20.9146243786719], [-97.6828765694165, 20.9146243786719]]]]}, "properties": {"taskId": 257, "taskX": 119883, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.9075687602929], [-97.6835632149242, 20.9082101938631], [-97.6828765694165, 20.9082101938631], [-97.6828765694165, 20.9075687602929], [-97.6835632149242, 20.9075687602929]]]]}, "properties": {"taskId": 234, "taskX": 119882, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.688369733478, 20.8973054501379], [-97.688369733478, 20.8979469275915], [-97.6876830879703, 20.8979469275915], [-97.6876830879703, 20.8973054501379], [-97.688369733478, 20.8973054501379]]]]}, "properties": {"taskId": 43, "taskX": 119875, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.919114144775], [-97.6863097969549, 20.920396910391], [-97.6849365059396, 20.920396910391], [-97.6849365059396, 20.919114144775], [-97.6863097969549, 20.919114144775]]]]}, "properties": {"taskId": 135, "taskX": 59939, "taskY": 146655, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.9178313681812], [-97.6643371407089, 20.9184727578503], [-97.6636504952012, 20.9184727578503], [-97.6636504952012, 20.9178313681812], [-97.6643371407089, 20.9178313681812]]]]}, "properties": {"taskId": 1357, "taskX": 119910, "taskY": 293308, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6519775215705, 20.8831922525216], [-97.6519775215705, 20.8844753253101], [-97.6506042305551, 20.8844753253101], [-97.6506042305551, 20.8831922525216], [-97.6519775215705, 20.8831922525216]]]]}, "properties": {"taskId": 1677, "taskX": 59964, "taskY": 146627, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6588439766474, 20.8831922525216], [-97.6588439766474, 20.8844753253101], [-97.657470685632, 20.8844753253101], [-97.657470685632, 20.8831922525216], [-97.6588439766474, 20.8831922525216]]]]}, "properties": {"taskId": 1505, "taskX": 59959, "taskY": 146627, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.919114144775], [-97.6780700508627, 20.9197555289553], [-97.677383405355, 20.9197555289553], [-97.677383405355, 20.919114144775], [-97.6780700508627, 20.919114144775]]]]}, "properties": {"taskId": 610, "taskX": 119890, "taskY": 293310, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.8998713434988], [-97.6863097969549, 20.9005128099832], [-97.6856231514473, 20.9005128099832], [-97.6856231514473, 20.8998713434988], [-97.6863097969549, 20.8998713434988]]]]}, "properties": {"taskId": 115, "taskX": 119878, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6615905586781, 20.8819091687706], [-97.6615905586781, 20.8831922525216], [-97.6602172676627, 20.8831922525216], [-97.6602172676627, 20.8819091687706], [-97.6615905586781, 20.8819091687706]]]]}, "properties": {"taskId": 1423, "taskX": 59957, "taskY": 146626, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.919114144775], [-97.677383405355, 20.9197555289553], [-97.6766967598473, 20.9197555289553], [-97.6766967598473, 20.919114144775], [-97.677383405355, 20.919114144775]]]]}, "properties": {"taskId": 612, "taskX": 119891, "taskY": 293310, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.8819091687706], [-97.6643371407089, 20.8831922525216], [-97.6629638496935, 20.8831922525216], [-97.6629638496935, 20.8819091687706], [-97.6643371407089, 20.8819091687706]]]]}, "properties": {"taskId": 1278, "taskX": 59955, "taskY": 146626, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.8857583871356], [-97.6663970772319, 20.886399913937], [-97.6657104317242, 20.886399913937], [-97.6657104317242, 20.8857583871356], [-97.6663970772319, 20.8857583871356]]]]}, "properties": {"taskId": 1094, "taskX": 119907, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.8921735317983], [-97.6725768868012, 20.8934565278341], [-97.6712035957858, 20.8934565278341], [-97.6712035957858, 20.8921735317983], [-97.6725768868012, 20.8921735317983]]]]}, "properties": {"taskId": 823, "taskX": 59949, "taskY": 146634, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.8857583871356], [-97.668457013755, 20.8870414379975], [-97.6670837227396, 20.8870414379975], [-97.6670837227396, 20.8857583871356], [-97.668457013755, 20.8857583871356]]]]}, "properties": {"taskId": 1023, "taskX": 59952, "taskY": 146629, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6876830879703, 20.9050029985807], [-97.6876830879703, 20.906285884923], [-97.6863097969549, 20.906285884923], [-97.6863097969549, 20.9050029985807], [-97.6876830879703, 20.9050029985807]]]]}, "properties": {"taskId": 80, "taskX": 59938, "taskY": 146644, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.8973054501379], [-97.6753234688319, 20.8985884023029], [-97.6739501778165, 20.8985884023029], [-97.6739501778165, 20.8973054501379], [-97.6753234688319, 20.8973054501379]]]]}, "properties": {"taskId": 693, "taskX": 59947, "taskY": 146638, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6554107491089, 20.8857583871356], [-97.6554107491089, 20.886399913937], [-97.6547241036012, 20.886399913937], [-97.6547241036012, 20.8857583871356], [-97.6554107491089, 20.8857583871356]]]]}, "properties": {"taskId": 1602, "taskX": 119923, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9165485806099], [-97.6780700508627, 20.9171899757676], [-97.677383405355, 20.9171899757676], [-97.677383405355, 20.9165485806099], [-97.6780700508627, 20.9165485806099]]]]}, "properties": {"taskId": 602, "taskX": 119890, "taskY": 293306, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.8985884023029], [-97.6835632149242, 20.899229874272], [-97.6828765694165, 20.899229874272], [-97.6828765694165, 20.8985884023029], [-97.6835632149242, 20.8985884023029]]]]}, "properties": {"taskId": 215, "taskX": 119882, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.8985884023029], [-97.6828765694165, 20.899229874272], [-97.6821899239088, 20.899229874272], [-97.6821899239088, 20.8985884023029], [-97.6828765694165, 20.8985884023029]]]]}, "properties": {"taskId": 217, "taskX": 119883, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.915907182708], [-97.6663970772319, 20.9165485806099], [-97.6657104317242, 20.9165485806099], [-97.6657104317242, 20.915907182708], [-97.6663970772319, 20.915907182708]]]]}, "properties": {"taskId": 1178, "taskX": 119907, "taskY": 293305, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.8876829593169], [-97.6629638496935, 20.8883244778952], [-97.6622772041858, 20.8883244778952], [-97.6622772041858, 20.8876829593169], [-97.6629638496935, 20.8876829593169]]]]}, "properties": {"taskId": 1377, "taskX": 119912, "taskY": 293261, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.9017957347244], [-97.6849365059396, 20.9024371929812], [-97.6842498604319, 20.9024371929812], [-97.6842498604319, 20.9017957347244], [-97.6849365059396, 20.9017957347244]]]]}, "properties": {"taskId": 167, "taskX": 119880, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6567840401243, 20.8883244778952], [-97.6567840401243, 20.8889659937324], [-97.6560973946166, 20.8889659937324], [-97.6560973946166, 20.8883244778952], [-97.6567840401243, 20.8883244778952]]]]}, "properties": {"taskId": 1565, "taskX": 119921, "taskY": 293262, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.657470685632, 20.8857583871356], [-97.657470685632, 20.886399913937], [-97.6567840401243, 20.886399913937], [-97.6567840401243, 20.8857583871356], [-97.657470685632, 20.8857583871356]]]]}, "properties": {"taskId": 1555, "taskX": 119920, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.91077590071], [-97.6670837227396, 20.911417320563], [-97.6663970772319, 20.911417320563], [-97.6663970772319, 20.91077590071], [-97.6670837227396, 20.91077590071]]]]}, "properties": {"taskId": 1163, "taskX": 119906, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6602172676627, 20.8851168575932], [-97.6602172676627, 20.8857583871356], [-97.6595306221551, 20.8857583871356], [-97.6595306221551, 20.8851168575932], [-97.6602172676627, 20.8851168575932]]]]}, "properties": {"taskId": 1465, "taskX": 119916, "taskY": 293257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.9139829725378], [-97.6849365059396, 20.9152657820619], [-97.6835632149242, 20.9152657820619], [-97.6835632149242, 20.9139829725378], [-97.6849365059396, 20.9139829725378]]]]}, "properties": {"taskId": 191, "taskX": 59940, "taskY": 146651, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.9088516246899], [-97.6650237862166, 20.9094930527734], [-97.6643371407089, 20.9094930527734], [-97.6643371407089, 20.9088516246899], [-97.6650237862166, 20.9088516246899]]]]}, "properties": {"taskId": 1253, "taskX": 119909, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6609039131704, 20.8889659937324], [-97.6609039131704, 20.8896075068283], [-97.6602172676627, 20.8896075068283], [-97.6602172676627, 20.8889659937324], [-97.6609039131704, 20.8889659937324]]]]}, "properties": {"taskId": 1440, "taskX": 119915, "taskY": 293263, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9139829725378], [-97.6794433418781, 20.9146243786719], [-97.6787566963704, 20.9146243786719], [-97.6787566963704, 20.9139829725378], [-97.6794433418781, 20.9139829725378]]]]}, "properties": {"taskId": 513, "taskX": 119888, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.9082101938631], [-97.6636504952012, 20.9088516246899], [-97.6629638496935, 20.9088516246899], [-97.6629638496935, 20.9082101938631], [-97.6636504952012, 20.9082101938631]]]]}, "properties": {"taskId": 1331, "taskX": 119911, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.9082101938631], [-97.6643371407089, 20.9088516246899], [-97.6636504952012, 20.9088516246899], [-97.6636504952012, 20.9082101938631], [-97.6643371407089, 20.9082101938631]]]]}, "properties": {"taskId": 1329, "taskX": 119910, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.9075687602929], [-97.6636504952012, 20.9082101938631], [-97.6629638496935, 20.9082101938631], [-97.6629638496935, 20.9075687602929], [-97.6636504952012, 20.9075687602929]]]]}, "properties": {"taskId": 1330, "taskX": 119911, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9069273239795], [-97.6821899239088, 20.9075687602929], [-97.6815032784011, 20.9075687602929], [-97.6815032784011, 20.9069273239795], [-97.6821899239088, 20.9069273239795]]]]}, "properties": {"taskId": 316, "taskX": 119884, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.9069273239795], [-97.6670837227396, 20.9075687602929], [-97.6663970772319, 20.9075687602929], [-97.6663970772319, 20.9069273239795], [-97.6670837227396, 20.9069273239795]]]]}, "properties": {"taskId": 1151, "taskX": 119906, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.9069273239795], [-97.6677703682473, 20.9075687602929], [-97.6670837227396, 20.9075687602929], [-97.6670837227396, 20.9069273239795], [-97.6677703682473, 20.9069273239795]]]]}, "properties": {"taskId": 1060, "taskX": 119905, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.9075687602929], [-97.6712035957858, 20.9082101938631], [-97.6705169502781, 20.9082101938631], [-97.6705169502781, 20.9075687602929], [-97.6712035957858, 20.9075687602929]]]]}, "properties": {"taskId": 929, "taskX": 119900, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.9075687602929], [-97.6705169502781, 20.9082101938631], [-97.6698303047704, 20.9082101938631], [-97.6698303047704, 20.9075687602929], [-97.6705169502781, 20.9075687602929]]]]}, "properties": {"taskId": 931, "taskX": 119901, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.920396910391], [-97.6849365059396, 20.9216796650287], [-97.6835632149242, 20.9216796650287], [-97.6835632149242, 20.920396910391], [-97.6849365059396, 20.920396910391]]]]}, "properties": {"taskId": 196, "taskX": 59940, "taskY": 146656, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.9088516246899], [-97.6863097969549, 20.9101344781134], [-97.6849365059396, 20.9101344781134], [-97.6849365059396, 20.9088516246899], [-97.6863097969549, 20.9088516246899]]]]}, "properties": {"taskId": 128, "taskX": 59939, "taskY": 146647, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.91077590071], [-97.6739501778165, 20.911417320563], [-97.6732635323089, 20.911417320563], [-97.6732635323089, 20.91077590071], [-97.6739501778165, 20.91077590071]]]]}, "properties": {"taskId": 799, "taskX": 119896, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.9152657820619], [-97.668457013755, 20.9165485806099], [-97.6670837227396, 20.9165485806099], [-97.6670837227396, 20.9152657820619], [-97.668457013755, 20.9152657820619]]]]}, "properties": {"taskId": 1085, "taskX": 59952, "taskY": 146652, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6478576485243, 20.8831922525216], [-97.6478576485243, 20.8844753253101], [-97.646484357509, 20.8844753253101], [-97.646484357509, 20.8831922525216], [-97.6478576485243, 20.8831922525216]]]]}, "properties": {"taskId": 1708, "taskX": 59967, "taskY": 146627, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6560973946166, 20.8973054501379], [-97.6560973946166, 20.8985884023029], [-97.6547241036012, 20.8985884023029], [-97.6547241036012, 20.8973054501379], [-97.6560973946166, 20.8973054501379]]]]}, "properties": {"taskId": 1633, "taskX": 59961, "taskY": 146638, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.8831922525216], [-97.668457013755, 20.8844753253101], [-97.6670837227396, 20.8844753253101], [-97.6670837227396, 20.8831922525216], [-97.668457013755, 20.8831922525216]]]]}, "properties": {"taskId": 1021, "taskX": 59952, "taskY": 146627, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.8908905247962], [-97.6821899239088, 20.8921735317983], [-97.6808166328934, 20.8921735317983], [-97.6808166328934, 20.8908905247962], [-97.6821899239088, 20.8908905247962]]]]}, "properties": {"taskId": 276, "taskX": 59942, "taskY": 146633, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9088516246899], [-97.6801299873857, 20.9094930527734], [-97.6794433418781, 20.9094930527734], [-97.6794433418781, 20.9088516246899], [-97.6801299873857, 20.9088516246899]]]]}, "properties": {"taskId": 415, "taskX": 119887, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9088516246899], [-97.6808166328934, 20.9094930527734], [-97.6801299873857, 20.9094930527734], [-97.6801299873857, 20.9088516246899], [-97.6808166328934, 20.9088516246899]]]]}, "properties": {"taskId": 413, "taskX": 119886, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9088516246899], [-97.6821899239088, 20.9094930527734], [-97.6815032784011, 20.9094930527734], [-97.6815032784011, 20.9088516246899], [-97.6821899239088, 20.9088516246899]]]]}, "properties": {"taskId": 323, "taskX": 119884, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.9152657820619], [-97.6629638496935, 20.9165485806099], [-97.6615905586781, 20.9165485806099], [-97.6615905586781, 20.9152657820619], [-97.6629638496935, 20.9152657820619]]]]}, "properties": {"taskId": 1419, "taskX": 59956, "taskY": 146652, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.8934565278341], [-97.6863097969549, 20.8940980217394], [-97.6856231514473, 20.8940980217394], [-97.6856231514473, 20.8934565278341], [-97.6863097969549, 20.8934565278341]]]]}, "properties": {"taskId": 95, "taskX": 119878, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6876830879703, 20.8998713434988], [-97.6876830879703, 20.9011542737251], [-97.6863097969549, 20.9011542737251], [-97.6863097969549, 20.8998713434988], [-97.6876830879703, 20.8998713434988]]]]}, "properties": {"taskId": 76, "taskX": 59938, "taskY": 146640, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9146243786719], [-97.6787566963704, 20.9152657820619], [-97.6780700508627, 20.9152657820619], [-97.6780700508627, 20.9146243786719], [-97.6787566963704, 20.9146243786719]]]]}, "properties": {"taskId": 516, "taskX": 119889, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.9101344781134], [-97.6629638496935, 20.911417320563], [-97.6615905586781, 20.911417320563], [-97.6615905586781, 20.9101344781134], [-97.6629638496935, 20.9101344781134]]]]}, "properties": {"taskId": 1415, "taskX": 59956, "taskY": 146648, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9075687602929], [-97.6808166328934, 20.9082101938631], [-97.6801299873857, 20.9082101938631], [-97.6801299873857, 20.9075687602929], [-97.6808166328934, 20.9075687602929]]]]}, "properties": {"taskId": 409, "taskX": 119886, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6615905586781, 20.8921735317983], [-97.6615905586781, 20.892815031187], [-97.6609039131704, 20.892815031187], [-97.6609039131704, 20.8921735317983], [-97.6615905586781, 20.8921735317983]]]]}, "properties": {"taskId": 1449, "taskX": 119914, "taskY": 293268, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6869964424626, 20.891532029668], [-97.6869964424626, 20.8921735317983], [-97.6863097969549, 20.8921735317983], [-97.6863097969549, 20.891532029668], [-97.6869964424626, 20.891532029668]]]]}, "properties": {"taskId": 63, "taskX": 119877, "taskY": 293267, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.9088516246899], [-97.6815032784011, 20.9094930527734], [-97.6808166328934, 20.9094930527734], [-97.6808166328934, 20.9088516246899], [-97.6815032784011, 20.9088516246899]]]]}, "properties": {"taskId": 325, "taskX": 119885, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "INVALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.9152657820619], [-97.6760101143396, 20.915907182708], [-97.6753234688319, 20.915907182708], [-97.6753234688319, 20.9152657820619], [-97.6760101143396, 20.9152657820619]]]]}, "properties": {"taskId": 680, "taskX": 119893, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.915907182708], [-97.6657104317242, 20.9165485806099], [-97.6650237862166, 20.9165485806099], [-97.6650237862166, 20.915907182708], [-97.6657104317242, 20.915907182708]]]]}, "properties": {"taskId": 1266, "taskX": 119908, "taskY": 293305, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.9075687602929], [-97.6698303047704, 20.9082101938631], [-97.6691436592627, 20.9082101938631], [-97.6691436592627, 20.9075687602929], [-97.6698303047704, 20.9075687602929]]]]}, "properties": {"taskId": 997, "taskX": 119902, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6560973946166, 20.8947395129029], [-97.6560973946166, 20.8953810013247], [-97.6554107491089, 20.8953810013247], [-97.6554107491089, 20.8947395129029], [-97.6560973946166, 20.8947395129029]]]]}, "properties": {"taskId": 1625, "taskX": 119922, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.920396910391], [-97.6835632149242, 20.9216796650287], [-97.6821899239088, 20.9216796650287], [-97.6821899239088, 20.920396910391], [-97.6835632149242, 20.920396910391]]]]}, "properties": {"taskId": 274, "taskX": 59941, "taskY": 146656, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6588439766474, 20.8857583871356], [-97.6588439766474, 20.886399913937], [-97.6581573311397, 20.886399913937], [-97.6581573311397, 20.8857583871356], [-97.6588439766474, 20.8857583871356]]]]}, "properties": {"taskId": 1510, "taskX": 119918, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.8896075068283], [-97.6698303047704, 20.8908905247962], [-97.668457013755, 20.8908905247962], [-97.668457013755, 20.8896075068283], [-97.6698303047704, 20.8896075068283]]]]}, "properties": {"taskId": 962, "taskX": 59951, "taskY": 146632, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.919114144775], [-97.6725768868012, 20.920396910391], [-97.6712035957858, 20.920396910391], [-97.6712035957858, 20.919114144775], [-97.6725768868012, 20.919114144775]]]]}, "properties": {"taskId": 889, "taskX": 59949, "taskY": 146655, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.919114144775], [-97.6753234688319, 20.920396910391], [-97.6739501778165, 20.920396910391], [-97.6739501778165, 20.919114144775], [-97.6753234688319, 20.919114144775]]]]}, "properties": {"taskId": 752, "taskX": 59947, "taskY": 146655, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.9165485806099], [-97.6643371407089, 20.9171899757676], [-97.6636504952012, 20.9171899757676], [-97.6636504952012, 20.9165485806099], [-97.6643371407089, 20.9165485806099]]]]}, "properties": {"taskId": 1353, "taskX": 119910, "taskY": 293306, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.9088516246899], [-97.6657104317242, 20.9094930527734], [-97.6650237862166, 20.9094930527734], [-97.6650237862166, 20.9088516246899], [-97.6657104317242, 20.9088516246899]]]]}, "properties": {"taskId": 1251, "taskX": 119908, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.920396910391], [-97.6739501778165, 20.9216796650287], [-97.6725768868012, 20.9216796650287], [-97.6725768868012, 20.920396910391], [-97.6739501778165, 20.920396910391]]]]}, "properties": {"taskId": 821, "taskX": 59948, "taskY": 146656, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.9050029985807], [-97.677383405355, 20.9056444431233], [-97.6766967598473, 20.9056444431233], [-97.6766967598473, 20.9050029985807], [-97.677383405355, 20.9050029985807]]]]}, "properties": {"taskId": 568, "taskX": 119891, "taskY": 293288, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.9216796650287], [-97.6753234688319, 20.9229624086873], [-97.6739501778165, 20.9229624086873], [-97.6739501778165, 20.9216796650287], [-97.6753234688319, 20.9216796650287]]]]}, "properties": {"taskId": 754, "taskX": 59947, "taskY": 146657, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9210382890822], [-97.6787566963704, 20.9216796650287], [-97.6780700508627, 20.9216796650287], [-97.6780700508627, 20.9210382890822], [-97.6787566963704, 20.9210382890822]]]]}, "properties": {"taskId": 536, "taskX": 119889, "taskY": 293313, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.891532029668], [-97.6650237862166, 20.8921735317983], [-97.6643371407089, 20.8921735317983], [-97.6643371407089, 20.891532029668], [-97.6650237862166, 20.891532029668]]]]}, "properties": {"taskId": 1201, "taskX": 119909, "taskY": 293267, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.9216796650287], [-97.6766967598473, 20.9229624086873], [-97.6753234688319, 20.9229624086873], [-97.6753234688319, 20.9216796650287], [-97.6766967598473, 20.9216796650287]]]]}, "properties": {"taskId": 689, "taskX": 59946, "taskY": 146657, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9216796650287], [-97.6794433418781, 20.9229624086873], [-97.6780700508627, 20.9229624086873], [-97.6780700508627, 20.9216796650287], [-97.6794433418781, 20.9216796650287]]]]}, "properties": {"taskId": 537, "taskX": 59944, "taskY": 146657, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.9216796650287], [-97.6835632149242, 20.9229624086873], [-97.6821899239088, 20.9229624086873], [-97.6821899239088, 20.9216796650287], [-97.6835632149242, 20.9216796650287]]]]}, "properties": {"taskId": 275, "taskX": 59941, "taskY": 146657, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.9120587376723], [-97.6643371407089, 20.9127001520379], [-97.6636504952012, 20.9127001520379], [-97.6636504952012, 20.9120587376723], [-97.6643371407089, 20.9120587376723]]]]}, "properties": {"taskId": 1338, "taskX": 119910, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.911417320563], [-97.6643371407089, 20.9120587376723], [-97.6636504952012, 20.9120587376723], [-97.6636504952012, 20.911417320563], [-97.6643371407089, 20.911417320563]]]]}, "properties": {"taskId": 1337, "taskX": 119910, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.9101344781134], [-97.6643371407089, 20.911417320563], [-97.6629638496935, 20.911417320563], [-97.6629638496935, 20.9101344781134], [-97.6643371407089, 20.9101344781134]]]]}, "properties": {"taskId": 1336, "taskX": 59955, "taskY": 146648, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.9094930527734], [-97.6636504952012, 20.9101344781134], [-97.6629638496935, 20.9101344781134], [-97.6629638496935, 20.9094930527734], [-97.6636504952012, 20.9094930527734]]]]}, "properties": {"taskId": 1335, "taskX": 119911, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.9088516246899], [-97.6636504952012, 20.9094930527734], [-97.6629638496935, 20.9094930527734], [-97.6629638496935, 20.9088516246899], [-97.6636504952012, 20.9088516246899]]]]}, "properties": {"taskId": 1334, "taskX": 119911, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.9094930527734], [-97.6643371407089, 20.9101344781134], [-97.6636504952012, 20.9101344781134], [-97.6636504952012, 20.9094930527734], [-97.6643371407089, 20.9094930527734]]]]}, "properties": {"taskId": 1333, "taskX": 119910, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.9088516246899], [-97.6643371407089, 20.9094930527734], [-97.6636504952012, 20.9094930527734], [-97.6636504952012, 20.9088516246899], [-97.6643371407089, 20.9088516246899]]]]}, "properties": {"taskId": 1332, "taskX": 119910, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.9075687602929], [-97.6643371407089, 20.9082101938631], [-97.6636504952012, 20.9082101938631], [-97.6636504952012, 20.9075687602929], [-97.6643371407089, 20.9075687602929]]]]}, "properties": {"taskId": 1328, "taskX": 119910, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.906285884923], [-97.6643371407089, 20.9075687602929], [-97.6629638496935, 20.9075687602929], [-97.6629638496935, 20.906285884923], [-97.6643371407089, 20.906285884923]]]]}, "properties": {"taskId": 1327, "taskX": 59955, "taskY": 146645, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.9050029985807], [-97.6643371407089, 20.906285884923], [-97.6629638496935, 20.906285884923], [-97.6629638496935, 20.9050029985807], [-97.6643371407089, 20.9050029985807]]]]}, "properties": {"taskId": 1326, "taskX": 59955, "taskY": 146644, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.9037201012666], [-97.6643371407089, 20.9050029985807], [-97.6629638496935, 20.9050029985807], [-97.6629638496935, 20.9037201012666], [-97.6643371407089, 20.9037201012666]]]]}, "properties": {"taskId": 1325, "taskX": 59955, "taskY": 146643, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.9024371929812], [-97.6643371407089, 20.9037201012666], [-97.6629638496935, 20.9037201012666], [-97.6629638496935, 20.9024371929812], [-97.6643371407089, 20.9024371929812]]]]}, "properties": {"taskId": 1324, "taskX": 59955, "taskY": 146642, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.9017957347244], [-97.6636504952012, 20.9024371929812], [-97.6629638496935, 20.9024371929812], [-97.6629638496935, 20.9017957347244], [-97.6636504952012, 20.9017957347244]]]]}, "properties": {"taskId": 1323, "taskX": 119911, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.9011542737251], [-97.6636504952012, 20.9017957347244], [-97.6629638496935, 20.9017957347244], [-97.6629638496935, 20.9011542737251], [-97.6636504952012, 20.9011542737251]]]]}, "properties": {"taskId": 1322, "taskX": 119911, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.9017957347244], [-97.6643371407089, 20.9024371929812], [-97.6636504952012, 20.9024371929812], [-97.6636504952012, 20.9017957347244], [-97.6643371407089, 20.9017957347244]]]]}, "properties": {"taskId": 1321, "taskX": 119910, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.9011542737251], [-97.6643371407089, 20.9017957347244], [-97.6636504952012, 20.9017957347244], [-97.6636504952012, 20.9011542737251], [-97.6643371407089, 20.9011542737251]]]]}, "properties": {"taskId": 1320, "taskX": 119910, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.9005128099832], [-97.6636504952012, 20.9011542737251], [-97.6629638496935, 20.9011542737251], [-97.6629638496935, 20.9005128099832], [-97.6636504952012, 20.9005128099832]]]]}, "properties": {"taskId": 1319, "taskX": 119911, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.8998713434988], [-97.6636504952012, 20.9005128099832], [-97.6629638496935, 20.9005128099832], [-97.6629638496935, 20.8998713434988], [-97.6636504952012, 20.8998713434988]]]]}, "properties": {"taskId": 1318, "taskX": 119911, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.9005128099832], [-97.6643371407089, 20.9011542737251], [-97.6636504952012, 20.9011542737251], [-97.6636504952012, 20.9005128099832], [-97.6643371407089, 20.9005128099832]]]]}, "properties": {"taskId": 1317, "taskX": 119910, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.8998713434988], [-97.6643371407089, 20.9005128099832], [-97.6636504952012, 20.9005128099832], [-97.6636504952012, 20.8998713434988], [-97.6643371407089, 20.8998713434988]]]]}, "properties": {"taskId": 1316, "taskX": 119910, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.899229874272], [-97.6636504952012, 20.8998713434988], [-97.6629638496935, 20.8998713434988], [-97.6629638496935, 20.899229874272], [-97.6636504952012, 20.899229874272]]]]}, "properties": {"taskId": 1315, "taskX": 119911, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.8985884023029], [-97.6636504952012, 20.899229874272], [-97.6629638496935, 20.899229874272], [-97.6629638496935, 20.8985884023029], [-97.6636504952012, 20.8985884023029]]]]}, "properties": {"taskId": 1314, "taskX": 119911, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.8985884023029], [-97.6643371407089, 20.899229874272], [-97.6636504952012, 20.899229874272], [-97.6636504952012, 20.8985884023029], [-97.6643371407089, 20.8985884023029]]]]}, "properties": {"taskId": 1312, "taskX": 119910, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.8973054501379], [-97.6643371407089, 20.8985884023029], [-97.6629638496935, 20.8985884023029], [-97.6629638496935, 20.8973054501379], [-97.6643371407089, 20.8973054501379]]]]}, "properties": {"taskId": 1311, "taskX": 59955, "taskY": 146638, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.8966639699422], [-97.6636504952012, 20.8973054501379], [-97.6629638496935, 20.8973054501379], [-97.6629638496935, 20.8966639699422], [-97.6636504952012, 20.8966639699422]]]]}, "properties": {"taskId": 1310, "taskX": 119911, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.8960224870044], [-97.6636504952012, 20.8966639699422], [-97.6629638496935, 20.8966639699422], [-97.6629638496935, 20.8960224870044], [-97.6636504952012, 20.8960224870044]]]]}, "properties": {"taskId": 1309, "taskX": 119911, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.8966639699422], [-97.6643371407089, 20.8973054501379], [-97.6636504952012, 20.8973054501379], [-97.6636504952012, 20.8966639699422], [-97.6643371407089, 20.8966639699422]]]]}, "properties": {"taskId": 1308, "taskX": 119910, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.8960224870044], [-97.6643371407089, 20.8966639699422], [-97.6636504952012, 20.8966639699422], [-97.6636504952012, 20.8960224870044], [-97.6643371407089, 20.8960224870044]]]]}, "properties": {"taskId": 1307, "taskX": 119910, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.8953810013247], [-97.6636504952012, 20.8960224870044], [-97.6629638496935, 20.8960224870044], [-97.6629638496935, 20.8953810013247], [-97.6636504952012, 20.8953810013247]]]]}, "properties": {"taskId": 1306, "taskX": 119911, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.8947395129029], [-97.6636504952012, 20.8953810013247], [-97.6629638496935, 20.8953810013247], [-97.6629638496935, 20.8947395129029], [-97.6636504952012, 20.8947395129029]]]]}, "properties": {"taskId": 1305, "taskX": 119911, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.8953810013247], [-97.6643371407089, 20.8960224870044], [-97.6636504952012, 20.8960224870044], [-97.6636504952012, 20.8953810013247], [-97.6643371407089, 20.8953810013247]]]]}, "properties": {"taskId": 1304, "taskX": 119910, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.8947395129029], [-97.6643371407089, 20.8953810013247], [-97.6636504952012, 20.8953810013247], [-97.6636504952012, 20.8947395129029], [-97.6643371407089, 20.8947395129029]]]]}, "properties": {"taskId": 1303, "taskX": 119910, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.8921735317983], [-97.6643371407089, 20.8934565278341], [-97.6629638496935, 20.8934565278341], [-97.6629638496935, 20.8921735317983], [-97.6643371407089, 20.8921735317983]]]]}, "properties": {"taskId": 1301, "taskX": 59955, "taskY": 146634, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.891532029668], [-97.6636504952012, 20.8921735317983], [-97.6629638496935, 20.8921735317983], [-97.6629638496935, 20.891532029668], [-97.6636504952012, 20.891532029668]]]]}, "properties": {"taskId": 1300, "taskX": 119911, "taskY": 293267, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.8908905247962], [-97.6636504952012, 20.891532029668], [-97.6629638496935, 20.891532029668], [-97.6629638496935, 20.8908905247962], [-97.6636504952012, 20.8908905247962]]]]}, "properties": {"taskId": 1299, "taskX": 119911, "taskY": 293266, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.891532029668], [-97.6643371407089, 20.8921735317983], [-97.6636504952012, 20.8921735317983], [-97.6636504952012, 20.891532029668], [-97.6643371407089, 20.891532029668]]]]}, "properties": {"taskId": 1298, "taskX": 119910, "taskY": 293267, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.8908905247962], [-97.6643371407089, 20.891532029668], [-97.6636504952012, 20.891532029668], [-97.6636504952012, 20.8908905247962], [-97.6643371407089, 20.8908905247962]]]]}, "properties": {"taskId": 1297, "taskX": 119910, "taskY": 293266, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.890249017183], [-97.6636504952012, 20.8908905247962], [-97.6629638496935, 20.8908905247962], [-97.6629638496935, 20.890249017183], [-97.6636504952012, 20.890249017183]]]]}, "properties": {"taskId": 1296, "taskX": 119911, "taskY": 293265, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.8896075068283], [-97.6636504952012, 20.890249017183], [-97.6629638496935, 20.890249017183], [-97.6629638496935, 20.8896075068283], [-97.6636504952012, 20.8896075068283]]]]}, "properties": {"taskId": 1295, "taskX": 119911, "taskY": 293264, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.890249017183], [-97.6643371407089, 20.8908905247962], [-97.6636504952012, 20.8908905247962], [-97.6636504952012, 20.890249017183], [-97.6643371407089, 20.890249017183]]]]}, "properties": {"taskId": 1294, "taskX": 119910, "taskY": 293265, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.8896075068283], [-97.6643371407089, 20.890249017183], [-97.6636504952012, 20.890249017183], [-97.6636504952012, 20.8896075068283], [-97.6643371407089, 20.8896075068283]]]]}, "properties": {"taskId": 1293, "taskX": 119910, "taskY": 293264, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.8883244778952], [-97.6643371407089, 20.8896075068283], [-97.6629638496935, 20.8896075068283], [-97.6629638496935, 20.8883244778952], [-97.6643371407089, 20.8883244778952]]]]}, "properties": {"taskId": 1292, "taskX": 59955, "taskY": 146631, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.8870414379975], [-97.6636504952012, 20.8876829593169], [-97.6629638496935, 20.8876829593169], [-97.6629638496935, 20.8870414379975], [-97.6636504952012, 20.8870414379975]]]]}, "properties": {"taskId": 1290, "taskX": 119911, "taskY": 293260, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.8870414379975], [-97.6643371407089, 20.8876829593169], [-97.6636504952012, 20.8876829593169], [-97.6636504952012, 20.8870414379975], [-97.6643371407089, 20.8870414379975]]]]}, "properties": {"taskId": 1288, "taskX": 119910, "taskY": 293260, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.886399913937], [-97.6636504952012, 20.8870414379975], [-97.6629638496935, 20.8870414379975], [-97.6629638496935, 20.886399913937], [-97.6636504952012, 20.886399913937]]]]}, "properties": {"taskId": 1287, "taskX": 119911, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.8857583871356], [-97.6636504952012, 20.886399913937], [-97.6629638496935, 20.886399913937], [-97.6629638496935, 20.8857583871356], [-97.6636504952012, 20.8857583871356]]]]}, "properties": {"taskId": 1286, "taskX": 119911, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.886399913937], [-97.6643371407089, 20.8870414379975], [-97.6636504952012, 20.8870414379975], [-97.6636504952012, 20.886399913937], [-97.6643371407089, 20.886399913937]]]]}, "properties": {"taskId": 1285, "taskX": 119910, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.8857583871356], [-97.6643371407089, 20.886399913937], [-97.6636504952012, 20.886399913937], [-97.6636504952012, 20.8857583871356], [-97.6643371407089, 20.8857583871356]]]]}, "properties": {"taskId": 1284, "taskX": 119910, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.8851168575932], [-97.6636504952012, 20.8857583871356], [-97.6629638496935, 20.8857583871356], [-97.6629638496935, 20.8851168575932], [-97.6636504952012, 20.8851168575932]]]]}, "properties": {"taskId": 1283, "taskX": 119911, "taskY": 293257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.8844753253101], [-97.6636504952012, 20.8851168575932], [-97.6629638496935, 20.8851168575932], [-97.6629638496935, 20.8844753253101], [-97.6636504952012, 20.8844753253101]]]]}, "properties": {"taskId": 1282, "taskX": 119911, "taskY": 293256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.8851168575932], [-97.6643371407089, 20.8857583871356], [-97.6636504952012, 20.8857583871356], [-97.6636504952012, 20.8851168575932], [-97.6643371407089, 20.8851168575932]]]]}, "properties": {"taskId": 1281, "taskX": 119910, "taskY": 293257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.8844753253101], [-97.6643371407089, 20.8851168575932], [-97.6636504952012, 20.8851168575932], [-97.6636504952012, 20.8844753253101], [-97.6643371407089, 20.8844753253101]]]]}, "properties": {"taskId": 1280, "taskX": 119910, "taskY": 293256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.8831922525216], [-97.6643371407089, 20.8844753253101], [-97.6629638496935, 20.8844753253101], [-97.6629638496935, 20.8831922525216], [-97.6643371407089, 20.8831922525216]]]]}, "properties": {"taskId": 1279, "taskX": 59955, "taskY": 146627, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.919114144775], [-97.6657104317242, 20.920396910391], [-97.6643371407089, 20.920396910391], [-97.6643371407089, 20.919114144775], [-97.6657104317242, 20.919114144775]]]]}, "properties": {"taskId": 1277, "taskX": 59954, "taskY": 146655, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.9184727578503], [-97.6650237862166, 20.919114144775], [-97.6643371407089, 20.919114144775], [-97.6643371407089, 20.9184727578503], [-97.6650237862166, 20.9184727578503]]]]}, "properties": {"taskId": 1276, "taskX": 119909, "taskY": 293309, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.9178313681812], [-97.6650237862166, 20.9184727578503], [-97.6643371407089, 20.9184727578503], [-97.6643371407089, 20.9178313681812], [-97.6650237862166, 20.9178313681812]]]]}, "properties": {"taskId": 1275, "taskX": 119909, "taskY": 293308, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.9184727578503], [-97.6657104317242, 20.919114144775], [-97.6650237862166, 20.919114144775], [-97.6650237862166, 20.9184727578503], [-97.6657104317242, 20.9184727578503]]]]}, "properties": {"taskId": 1274, "taskX": 119908, "taskY": 293309, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.9178313681812], [-97.6657104317242, 20.9184727578503], [-97.6650237862166, 20.9184727578503], [-97.6650237862166, 20.9178313681812], [-97.6657104317242, 20.9178313681812]]]]}, "properties": {"taskId": 1273, "taskX": 119908, "taskY": 293308, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.9171899757676], [-97.6650237862166, 20.9178313681812], [-97.6643371407089, 20.9178313681812], [-97.6643371407089, 20.9171899757676], [-97.6650237862166, 20.9171899757676]]]]}, "properties": {"taskId": 1272, "taskX": 119909, "taskY": 293307, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.9165485806099], [-97.6650237862166, 20.9171899757676], [-97.6643371407089, 20.9171899757676], [-97.6643371407089, 20.9165485806099], [-97.6650237862166, 20.9165485806099]]]]}, "properties": {"taskId": 1271, "taskX": 119909, "taskY": 293306, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.9171899757676], [-97.6657104317242, 20.9178313681812], [-97.6650237862166, 20.9178313681812], [-97.6650237862166, 20.9171899757676], [-97.6657104317242, 20.9171899757676]]]]}, "properties": {"taskId": 1270, "taskX": 119908, "taskY": 293307, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.915907182708], [-97.6650237862166, 20.9165485806099], [-97.6643371407089, 20.9165485806099], [-97.6643371407089, 20.915907182708], [-97.6650237862166, 20.915907182708]]]]}, "properties": {"taskId": 1268, "taskX": 119909, "taskY": 293305, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.9152657820619], [-97.6650237862166, 20.915907182708], [-97.6643371407089, 20.915907182708], [-97.6643371407089, 20.9152657820619], [-97.6650237862166, 20.9152657820619]]]]}, "properties": {"taskId": 1267, "taskX": 119909, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.9152657820619], [-97.6657104317242, 20.915907182708], [-97.6650237862166, 20.915907182708], [-97.6650237862166, 20.9152657820619], [-97.6657104317242, 20.9152657820619]]]]}, "properties": {"taskId": 1265, "taskX": 119908, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.9146243786719], [-97.6650237862166, 20.9152657820619], [-97.6643371407089, 20.9152657820619], [-97.6643371407089, 20.9146243786719], [-97.6650237862166, 20.9146243786719]]]]}, "properties": {"taskId": 1264, "taskX": 119909, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.9139829725378], [-97.6650237862166, 20.9146243786719], [-97.6643371407089, 20.9146243786719], [-97.6643371407089, 20.9139829725378], [-97.6650237862166, 20.9139829725378]]]]}, "properties": {"taskId": 1263, "taskX": 119909, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.9146243786719], [-97.6657104317242, 20.9152657820619], [-97.6650237862166, 20.9152657820619], [-97.6650237862166, 20.9146243786719], [-97.6657104317242, 20.9146243786719]]]]}, "properties": {"taskId": 1262, "taskX": 119908, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.9139829725378], [-97.6657104317242, 20.9146243786719], [-97.6650237862166, 20.9146243786719], [-97.6650237862166, 20.9139829725378], [-97.6657104317242, 20.9139829725378]]]]}, "properties": {"taskId": 1261, "taskX": 119908, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.9133415636598], [-97.6650237862166, 20.9139829725378], [-97.6643371407089, 20.9139829725378], [-97.6643371407089, 20.9133415636598], [-97.6650237862166, 20.9133415636598]]]]}, "properties": {"taskId": 1260, "taskX": 119909, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.9127001520379], [-97.6650237862166, 20.9133415636598], [-97.6643371407089, 20.9133415636598], [-97.6643371407089, 20.9127001520379], [-97.6650237862166, 20.9127001520379]]]]}, "properties": {"taskId": 1259, "taskX": 119909, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.9133415636598], [-97.6657104317242, 20.9139829725378], [-97.6650237862166, 20.9139829725378], [-97.6650237862166, 20.9133415636598], [-97.6657104317242, 20.9133415636598]]]]}, "properties": {"taskId": 1258, "taskX": 119908, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.9127001520379], [-97.6657104317242, 20.9133415636598], [-97.6650237862166, 20.9133415636598], [-97.6650237862166, 20.9127001520379], [-97.6657104317242, 20.9127001520379]]]]}, "properties": {"taskId": 1257, "taskX": 119908, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.911417320563], [-97.6657104317242, 20.9127001520379], [-97.6643371407089, 20.9127001520379], [-97.6643371407089, 20.911417320563], [-97.6657104317242, 20.911417320563]]]]}, "properties": {"taskId": 1256, "taskX": 59954, "taskY": 146649, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.9101344781134], [-97.6657104317242, 20.911417320563], [-97.6643371407089, 20.911417320563], [-97.6643371407089, 20.9101344781134], [-97.6657104317242, 20.9101344781134]]]]}, "properties": {"taskId": 1255, "taskX": 59954, "taskY": 146648, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.9094930527734], [-97.6650237862166, 20.9101344781134], [-97.6643371407089, 20.9101344781134], [-97.6643371407089, 20.9094930527734], [-97.6650237862166, 20.9094930527734]]]]}, "properties": {"taskId": 1254, "taskX": 119909, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.9094930527734], [-97.6657104317242, 20.9101344781134], [-97.6650237862166, 20.9101344781134], [-97.6650237862166, 20.9094930527734], [-97.6657104317242, 20.9094930527734]]]]}, "properties": {"taskId": 1252, "taskX": 119908, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.9075687602929], [-97.6657104317242, 20.9088516246899], [-97.6643371407089, 20.9088516246899], [-97.6643371407089, 20.9075687602929], [-97.6657104317242, 20.9075687602929]]]]}, "properties": {"taskId": 1250, "taskX": 59954, "taskY": 146646, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.906285884923], [-97.6650237862166, 20.9069273239795], [-97.6643371407089, 20.9069273239795], [-97.6643371407089, 20.906285884923], [-97.6650237862166, 20.906285884923]]]]}, "properties": {"taskId": 1248, "taskX": 119909, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.9069273239795], [-97.6657104317242, 20.9075687602929], [-97.6650237862166, 20.9075687602929], [-97.6650237862166, 20.9069273239795], [-97.6657104317242, 20.9069273239795]]]]}, "properties": {"taskId": 1247, "taskX": 119908, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.906285884923], [-97.6657104317242, 20.9069273239795], [-97.6650237862166, 20.9069273239795], [-97.6650237862166, 20.906285884923], [-97.6657104317242, 20.906285884923]]]]}, "properties": {"taskId": 1246, "taskX": 119908, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.9050029985807], [-97.6650237862166, 20.9056444431233], [-97.6643371407089, 20.9056444431233], [-97.6643371407089, 20.9050029985807], [-97.6650237862166, 20.9050029985807]]]]}, "properties": {"taskId": 1244, "taskX": 119909, "taskY": 293288, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.9056444431233], [-97.6657104317242, 20.906285884923], [-97.6650237862166, 20.906285884923], [-97.6650237862166, 20.9056444431233], [-97.6657104317242, 20.9056444431233]]]]}, "properties": {"taskId": 1243, "taskX": 119908, "taskY": 293289, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.9050029985807], [-97.6657104317242, 20.9056444431233], [-97.6650237862166, 20.9056444431233], [-97.6650237862166, 20.9050029985807], [-97.6657104317242, 20.9050029985807]]]]}, "properties": {"taskId": 1242, "taskX": 119908, "taskY": 293288, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.9043615512951], [-97.6650237862166, 20.9050029985807], [-97.6643371407089, 20.9050029985807], [-97.6643371407089, 20.9043615512951], [-97.6650237862166, 20.9043615512951]]]]}, "properties": {"taskId": 1241, "taskX": 119909, "taskY": 293287, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.9037201012666], [-97.6650237862166, 20.9043615512951], [-97.6643371407089, 20.9043615512951], [-97.6643371407089, 20.9037201012666], [-97.6650237862166, 20.9037201012666]]]]}, "properties": {"taskId": 1240, "taskX": 119909, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.9043615512951], [-97.6657104317242, 20.9050029985807], [-97.6650237862166, 20.9050029985807], [-97.6650237862166, 20.9043615512951], [-97.6657104317242, 20.9043615512951]]]]}, "properties": {"taskId": 1239, "taskX": 119908, "taskY": 293287, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.9037201012666], [-97.6657104317242, 20.9043615512951], [-97.6650237862166, 20.9043615512951], [-97.6650237862166, 20.9037201012666], [-97.6657104317242, 20.9037201012666]]]]}, "properties": {"taskId": 1238, "taskX": 119908, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.9030786484952], [-97.6650237862166, 20.9037201012666], [-97.6643371407089, 20.9037201012666], [-97.6643371407089, 20.9030786484952], [-97.6650237862166, 20.9030786484952]]]]}, "properties": {"taskId": 1237, "taskX": 119909, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.9024371929812], [-97.6650237862166, 20.9030786484952], [-97.6643371407089, 20.9030786484952], [-97.6643371407089, 20.9024371929812], [-97.6650237862166, 20.9024371929812]]]]}, "properties": {"taskId": 1236, "taskX": 119909, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.9030786484952], [-97.6657104317242, 20.9037201012666], [-97.6650237862166, 20.9037201012666], [-97.6650237862166, 20.9030786484952], [-97.6657104317242, 20.9030786484952]]]]}, "properties": {"taskId": 1235, "taskX": 119908, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.9024371929812], [-97.6657104317242, 20.9030786484952], [-97.6650237862166, 20.9030786484952], [-97.6650237862166, 20.9024371929812], [-97.6657104317242, 20.9024371929812]]]]}, "properties": {"taskId": 1234, "taskX": 119908, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.9017957347244], [-97.6650237862166, 20.9024371929812], [-97.6643371407089, 20.9024371929812], [-97.6643371407089, 20.9017957347244], [-97.6650237862166, 20.9017957347244]]]]}, "properties": {"taskId": 1233, "taskX": 119909, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.9011542737251], [-97.6650237862166, 20.9017957347244], [-97.6643371407089, 20.9017957347244], [-97.6643371407089, 20.9011542737251], [-97.6650237862166, 20.9011542737251]]]]}, "properties": {"taskId": 1232, "taskX": 119909, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.9017957347244], [-97.6657104317242, 20.9024371929812], [-97.6650237862166, 20.9024371929812], [-97.6650237862166, 20.9017957347244], [-97.6657104317242, 20.9017957347244]]]]}, "properties": {"taskId": 1231, "taskX": 119908, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.9011542737251], [-97.6657104317242, 20.9017957347244], [-97.6650237862166, 20.9017957347244], [-97.6650237862166, 20.9011542737251], [-97.6657104317242, 20.9011542737251]]]]}, "properties": {"taskId": 1230, "taskX": 119908, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.9005128099832], [-97.6650237862166, 20.9011542737251], [-97.6643371407089, 20.9011542737251], [-97.6643371407089, 20.9005128099832], [-97.6650237862166, 20.9005128099832]]]]}, "properties": {"taskId": 1229, "taskX": 119909, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.8998713434988], [-97.6650237862166, 20.9005128099832], [-97.6643371407089, 20.9005128099832], [-97.6643371407089, 20.8998713434988], [-97.6650237862166, 20.8998713434988]]]]}, "properties": {"taskId": 1228, "taskX": 119909, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.9005128099832], [-97.6657104317242, 20.9011542737251], [-97.6650237862166, 20.9011542737251], [-97.6650237862166, 20.9005128099832], [-97.6657104317242, 20.9005128099832]]]]}, "properties": {"taskId": 1227, "taskX": 119908, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.8998713434988], [-97.6657104317242, 20.9005128099832], [-97.6650237862166, 20.9005128099832], [-97.6650237862166, 20.8998713434988], [-97.6657104317242, 20.8998713434988]]]]}, "properties": {"taskId": 1226, "taskX": 119908, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.8985884023029], [-97.6650237862166, 20.899229874272], [-97.6643371407089, 20.899229874272], [-97.6643371407089, 20.8985884023029], [-97.6650237862166, 20.8985884023029]]]]}, "properties": {"taskId": 1224, "taskX": 119909, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.899229874272], [-97.6657104317242, 20.8998713434988], [-97.6650237862166, 20.8998713434988], [-97.6650237862166, 20.899229874272], [-97.6657104317242, 20.899229874272]]]]}, "properties": {"taskId": 1223, "taskX": 119908, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.8985884023029], [-97.6657104317242, 20.899229874272], [-97.6650237862166, 20.899229874272], [-97.6650237862166, 20.8985884023029], [-97.6657104317242, 20.8985884023029]]]]}, "properties": {"taskId": 1222, "taskX": 119908, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.8979469275915], [-97.6650237862166, 20.8985884023029], [-97.6643371407089, 20.8985884023029], [-97.6643371407089, 20.8979469275915], [-97.6650237862166, 20.8979469275915]]]]}, "properties": {"taskId": 1221, "taskX": 119909, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.8973054501379], [-97.6650237862166, 20.8979469275915], [-97.6643371407089, 20.8979469275915], [-97.6643371407089, 20.8973054501379], [-97.6650237862166, 20.8973054501379]]]]}, "properties": {"taskId": 1220, "taskX": 119909, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.8979469275915], [-97.6657104317242, 20.8985884023029], [-97.6650237862166, 20.8985884023029], [-97.6650237862166, 20.8979469275915], [-97.6657104317242, 20.8979469275915]]]]}, "properties": {"taskId": 1219, "taskX": 119908, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.8973054501379], [-97.6657104317242, 20.8979469275915], [-97.6650237862166, 20.8979469275915], [-97.6650237862166, 20.8973054501379], [-97.6657104317242, 20.8973054501379]]]]}, "properties": {"taskId": 1218, "taskX": 119908, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.8966639699422], [-97.6650237862166, 20.8973054501379], [-97.6643371407089, 20.8973054501379], [-97.6643371407089, 20.8966639699422], [-97.6650237862166, 20.8966639699422]]]]}, "properties": {"taskId": 1217, "taskX": 119909, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.8960224870044], [-97.6650237862166, 20.8966639699422], [-97.6643371407089, 20.8966639699422], [-97.6643371407089, 20.8960224870044], [-97.6650237862166, 20.8960224870044]]]]}, "properties": {"taskId": 1216, "taskX": 119909, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.8966639699422], [-97.6657104317242, 20.8973054501379], [-97.6650237862166, 20.8973054501379], [-97.6650237862166, 20.8966639699422], [-97.6657104317242, 20.8966639699422]]]]}, "properties": {"taskId": 1215, "taskX": 119908, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.8960224870044], [-97.6657104317242, 20.8966639699422], [-97.6650237862166, 20.8966639699422], [-97.6650237862166, 20.8960224870044], [-97.6657104317242, 20.8960224870044]]]]}, "properties": {"taskId": 1214, "taskX": 119908, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.8953810013247], [-97.6650237862166, 20.8960224870044], [-97.6643371407089, 20.8960224870044], [-97.6643371407089, 20.8953810013247], [-97.6650237862166, 20.8953810013247]]]]}, "properties": {"taskId": 1213, "taskX": 119909, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.8947395129029], [-97.6650237862166, 20.8953810013247], [-97.6643371407089, 20.8953810013247], [-97.6643371407089, 20.8947395129029], [-97.6650237862166, 20.8947395129029]]]]}, "properties": {"taskId": 1212, "taskX": 119909, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.8953810013247], [-97.6657104317242, 20.8960224870044], [-97.6650237862166, 20.8960224870044], [-97.6650237862166, 20.8953810013247], [-97.6657104317242, 20.8953810013247]]]]}, "properties": {"taskId": 1211, "taskX": 119908, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.8947395129029], [-97.6657104317242, 20.8953810013247], [-97.6650237862166, 20.8953810013247], [-97.6650237862166, 20.8947395129029], [-97.6657104317242, 20.8947395129029]]]]}, "properties": {"taskId": 1210, "taskX": 119908, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.8940980217394], [-97.6650237862166, 20.8947395129029], [-97.6643371407089, 20.8947395129029], [-97.6643371407089, 20.8940980217394], [-97.6650237862166, 20.8940980217394]]]]}, "properties": {"taskId": 1209, "taskX": 119909, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.8934565278341], [-97.6650237862166, 20.8940980217394], [-97.6643371407089, 20.8940980217394], [-97.6643371407089, 20.8934565278341], [-97.6650237862166, 20.8934565278341]]]]}, "properties": {"taskId": 1208, "taskX": 119909, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.8940980217394], [-97.6657104317242, 20.8947395129029], [-97.6650237862166, 20.8947395129029], [-97.6650237862166, 20.8940980217394], [-97.6657104317242, 20.8940980217394]]]]}, "properties": {"taskId": 1207, "taskX": 119908, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.8934565278341], [-97.6657104317242, 20.8940980217394], [-97.6650237862166, 20.8940980217394], [-97.6650237862166, 20.8934565278341], [-97.6657104317242, 20.8934565278341]]]]}, "properties": {"taskId": 1206, "taskX": 119908, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.892815031187], [-97.6650237862166, 20.8934565278341], [-97.6643371407089, 20.8934565278341], [-97.6643371407089, 20.892815031187], [-97.6650237862166, 20.892815031187]]]]}, "properties": {"taskId": 1205, "taskX": 119909, "taskY": 293269, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.8921735317983], [-97.6650237862166, 20.892815031187], [-97.6643371407089, 20.892815031187], [-97.6643371407089, 20.8921735317983], [-97.6650237862166, 20.8921735317983]]]]}, "properties": {"taskId": 1204, "taskX": 119909, "taskY": 293268, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.892815031187], [-97.6657104317242, 20.8934565278341], [-97.6650237862166, 20.8934565278341], [-97.6650237862166, 20.892815031187], [-97.6657104317242, 20.892815031187]]]]}, "properties": {"taskId": 1203, "taskX": 119908, "taskY": 293269, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.8921735317983], [-97.6657104317242, 20.892815031187], [-97.6650237862166, 20.892815031187], [-97.6650237862166, 20.8921735317983], [-97.6657104317242, 20.8921735317983]]]]}, "properties": {"taskId": 1202, "taskX": 119908, "taskY": 293268, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.8908905247962], [-97.6650237862166, 20.891532029668], [-97.6643371407089, 20.891532029668], [-97.6643371407089, 20.8908905247962], [-97.6650237862166, 20.8908905247962]]]]}, "properties": {"taskId": 1200, "taskX": 119909, "taskY": 293266, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.891532029668], [-97.6657104317242, 20.8921735317983], [-97.6650237862166, 20.8921735317983], [-97.6650237862166, 20.891532029668], [-97.6657104317242, 20.891532029668]]]]}, "properties": {"taskId": 1199, "taskX": 119908, "taskY": 293267, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.8908905247962], [-97.6657104317242, 20.891532029668], [-97.6650237862166, 20.891532029668], [-97.6650237862166, 20.8908905247962], [-97.6657104317242, 20.8908905247962]]]]}, "properties": {"taskId": 1198, "taskX": 119908, "taskY": 293266, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.8896075068283], [-97.6657104317242, 20.8908905247962], [-97.6643371407089, 20.8908905247962], [-97.6643371407089, 20.8896075068283], [-97.6657104317242, 20.8896075068283]]]]}, "properties": {"taskId": 1197, "taskX": 59954, "taskY": 146632, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.8876829593169], [-97.6650237862166, 20.8883244778952], [-97.6643371407089, 20.8883244778952], [-97.6643371407089, 20.8876829593169], [-97.6650237862166, 20.8876829593169]]]]}, "properties": {"taskId": 1195, "taskX": 119909, "taskY": 293261, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.8870414379975], [-97.6650237862166, 20.8876829593169], [-97.6643371407089, 20.8876829593169], [-97.6643371407089, 20.8870414379975], [-97.6650237862166, 20.8870414379975]]]]}, "properties": {"taskId": 1194, "taskX": 119909, "taskY": 293260, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.8876829593169], [-97.6657104317242, 20.8883244778952], [-97.6650237862166, 20.8883244778952], [-97.6650237862166, 20.8876829593169], [-97.6657104317242, 20.8876829593169]]]]}, "properties": {"taskId": 1193, "taskX": 119908, "taskY": 293261, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.8870414379975], [-97.6657104317242, 20.8876829593169], [-97.6650237862166, 20.8876829593169], [-97.6650237862166, 20.8870414379975], [-97.6657104317242, 20.8870414379975]]]]}, "properties": {"taskId": 1192, "taskX": 119908, "taskY": 293260, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.886399913937], [-97.6650237862166, 20.8870414379975], [-97.6643371407089, 20.8870414379975], [-97.6643371407089, 20.886399913937], [-97.6650237862166, 20.886399913937]]]]}, "properties": {"taskId": 1191, "taskX": 119909, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6650237862166, 20.8857583871356], [-97.6650237862166, 20.886399913937], [-97.6643371407089, 20.886399913937], [-97.6643371407089, 20.8857583871356], [-97.6650237862166, 20.8857583871356]]]]}, "properties": {"taskId": 1190, "taskX": 119909, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.8857583871356], [-97.6657104317242, 20.886399913937], [-97.6650237862166, 20.886399913937], [-97.6650237862166, 20.8857583871356], [-97.6657104317242, 20.8857583871356]]]]}, "properties": {"taskId": 1188, "taskX": 119908, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.8844753253101], [-97.6657104317242, 20.8857583871356], [-97.6643371407089, 20.8857583871356], [-97.6643371407089, 20.8844753253101], [-97.6657104317242, 20.8844753253101]]]]}, "properties": {"taskId": 1187, "taskX": 59954, "taskY": 146628, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.8831922525216], [-97.6657104317242, 20.8844753253101], [-97.6643371407089, 20.8844753253101], [-97.6643371407089, 20.8831922525216], [-97.6657104317242, 20.8831922525216]]]]}, "properties": {"taskId": 1186, "taskX": 59954, "taskY": 146627, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6657104317242, 20.8819091687706], [-97.6657104317242, 20.8831922525216], [-97.6643371407089, 20.8831922525216], [-97.6643371407089, 20.8819091687706], [-97.6657104317242, 20.8819091687706]]]]}, "properties": {"taskId": 1185, "taskX": 59954, "taskY": 146626, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.919114144775], [-97.6670837227396, 20.920396910391], [-97.6657104317242, 20.920396910391], [-97.6657104317242, 20.919114144775], [-97.6670837227396, 20.919114144775]]]]}, "properties": {"taskId": 1184, "taskX": 59953, "taskY": 146655, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.9178313681812], [-97.6670837227396, 20.919114144775], [-97.6657104317242, 20.919114144775], [-97.6657104317242, 20.9178313681812], [-97.6670837227396, 20.9178313681812]]]]}, "properties": {"taskId": 1183, "taskX": 59953, "taskY": 146654, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.9171899757676], [-97.6663970772319, 20.9178313681812], [-97.6657104317242, 20.9178313681812], [-97.6657104317242, 20.9171899757676], [-97.6663970772319, 20.9171899757676]]]]}, "properties": {"taskId": 1182, "taskX": 119907, "taskY": 293307, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.9165485806099], [-97.6663970772319, 20.9171899757676], [-97.6657104317242, 20.9171899757676], [-97.6657104317242, 20.9165485806099], [-97.6663970772319, 20.9165485806099]]]]}, "properties": {"taskId": 1181, "taskX": 119907, "taskY": 293306, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.9165485806099], [-97.6670837227396, 20.9171899757676], [-97.6663970772319, 20.9171899757676], [-97.6663970772319, 20.9165485806099], [-97.6670837227396, 20.9165485806099]]]]}, "properties": {"taskId": 1179, "taskX": 119906, "taskY": 293306, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.9152657820619], [-97.6670837227396, 20.915907182708], [-97.6663970772319, 20.915907182708], [-97.6663970772319, 20.9152657820619], [-97.6670837227396, 20.9152657820619]]]]}, "properties": {"taskId": 1175, "taskX": 119906, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.9146243786719], [-97.6663970772319, 20.9152657820619], [-97.6657104317242, 20.9152657820619], [-97.6657104317242, 20.9146243786719], [-97.6663970772319, 20.9146243786719]]]]}, "properties": {"taskId": 1174, "taskX": 119907, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.9139829725378], [-97.6663970772319, 20.9146243786719], [-97.6657104317242, 20.9146243786719], [-97.6657104317242, 20.9139829725378], [-97.6663970772319, 20.9139829725378]]]]}, "properties": {"taskId": 1173, "taskX": 119907, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.9146243786719], [-97.6670837227396, 20.9152657820619], [-97.6663970772319, 20.9152657820619], [-97.6663970772319, 20.9146243786719], [-97.6670837227396, 20.9146243786719]]]]}, "properties": {"taskId": 1172, "taskX": 119906, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.9139829725378], [-97.6670837227396, 20.9146243786719], [-97.6663970772319, 20.9146243786719], [-97.6663970772319, 20.9139829725378], [-97.6670837227396, 20.9139829725378]]]]}, "properties": {"taskId": 1171, "taskX": 119906, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.9127001520379], [-97.6663970772319, 20.9133415636598], [-97.6657104317242, 20.9133415636598], [-97.6657104317242, 20.9127001520379], [-97.6663970772319, 20.9127001520379]]]]}, "properties": {"taskId": 1169, "taskX": 119907, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.9133415636598], [-97.6670837227396, 20.9139829725378], [-97.6663970772319, 20.9139829725378], [-97.6663970772319, 20.9133415636598], [-97.6670837227396, 20.9133415636598]]]]}, "properties": {"taskId": 1168, "taskX": 119906, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.9127001520379], [-97.6670837227396, 20.9133415636598], [-97.6663970772319, 20.9133415636598], [-97.6663970772319, 20.9127001520379], [-97.6670837227396, 20.9127001520379]]]]}, "properties": {"taskId": 1167, "taskX": 119906, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.911417320563], [-97.6670837227396, 20.9127001520379], [-97.6657104317242, 20.9127001520379], [-97.6657104317242, 20.911417320563], [-97.6670837227396, 20.911417320563]]]]}, "properties": {"taskId": 1166, "taskX": 59953, "taskY": 146649, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.91077590071], [-97.6663970772319, 20.911417320563], [-97.6657104317242, 20.911417320563], [-97.6657104317242, 20.91077590071], [-97.6663970772319, 20.91077590071]]]]}, "properties": {"taskId": 1165, "taskX": 119907, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.9101344781134], [-97.6663970772319, 20.91077590071], [-97.6657104317242, 20.91077590071], [-97.6657104317242, 20.9101344781134], [-97.6663970772319, 20.9101344781134]]]]}, "properties": {"taskId": 1164, "taskX": 119907, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.9101344781134], [-97.6670837227396, 20.91077590071], [-97.6663970772319, 20.91077590071], [-97.6663970772319, 20.9101344781134], [-97.6670837227396, 20.9101344781134]]]]}, "properties": {"taskId": 1162, "taskX": 119906, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.9094930527734], [-97.6663970772319, 20.9101344781134], [-97.6657104317242, 20.9101344781134], [-97.6657104317242, 20.9094930527734], [-97.6663970772319, 20.9094930527734]]]]}, "properties": {"taskId": 1161, "taskX": 119907, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.9088516246899], [-97.6663970772319, 20.9094930527734], [-97.6657104317242, 20.9094930527734], [-97.6657104317242, 20.9088516246899], [-97.6663970772319, 20.9088516246899]]]]}, "properties": {"taskId": 1160, "taskX": 119907, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.9094930527734], [-97.6670837227396, 20.9101344781134], [-97.6663970772319, 20.9101344781134], [-97.6663970772319, 20.9094930527734], [-97.6670837227396, 20.9094930527734]]]]}, "properties": {"taskId": 1159, "taskX": 119906, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.9088516246899], [-97.6670837227396, 20.9094930527734], [-97.6663970772319, 20.9094930527734], [-97.6663970772319, 20.9088516246899], [-97.6670837227396, 20.9088516246899]]]]}, "properties": {"taskId": 1158, "taskX": 119906, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.9082101938631], [-97.6663970772319, 20.9088516246899], [-97.6657104317242, 20.9088516246899], [-97.6657104317242, 20.9082101938631], [-97.6663970772319, 20.9082101938631]]]]}, "properties": {"taskId": 1157, "taskX": 119907, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.9075687602929], [-97.6663970772319, 20.9082101938631], [-97.6657104317242, 20.9082101938631], [-97.6657104317242, 20.9075687602929], [-97.6663970772319, 20.9075687602929]]]]}, "properties": {"taskId": 1156, "taskX": 119907, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.9082101938631], [-97.6670837227396, 20.9088516246899], [-97.6663970772319, 20.9088516246899], [-97.6663970772319, 20.9082101938631], [-97.6670837227396, 20.9082101938631]]]]}, "properties": {"taskId": 1155, "taskX": 119906, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.9075687602929], [-97.6670837227396, 20.9082101938631], [-97.6663970772319, 20.9082101938631], [-97.6663970772319, 20.9075687602929], [-97.6670837227396, 20.9075687602929]]]]}, "properties": {"taskId": 1154, "taskX": 119906, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.9069273239795], [-97.6663970772319, 20.9075687602929], [-97.6657104317242, 20.9075687602929], [-97.6657104317242, 20.9069273239795], [-97.6663970772319, 20.9069273239795]]]]}, "properties": {"taskId": 1153, "taskX": 119907, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.906285884923], [-97.6663970772319, 20.9069273239795], [-97.6657104317242, 20.9069273239795], [-97.6657104317242, 20.906285884923], [-97.6663970772319, 20.906285884923]]]]}, "properties": {"taskId": 1152, "taskX": 119907, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.9056444431233], [-97.6663970772319, 20.906285884923], [-97.6657104317242, 20.906285884923], [-97.6657104317242, 20.9056444431233], [-97.6663970772319, 20.9056444431233]]]]}, "properties": {"taskId": 1149, "taskX": 119907, "taskY": 293289, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.9050029985807], [-97.6663970772319, 20.9056444431233], [-97.6657104317242, 20.9056444431233], [-97.6657104317242, 20.9050029985807], [-97.6663970772319, 20.9050029985807]]]]}, "properties": {"taskId": 1148, "taskX": 119907, "taskY": 293288, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.9056444431233], [-97.6670837227396, 20.906285884923], [-97.6663970772319, 20.906285884923], [-97.6663970772319, 20.9056444431233], [-97.6670837227396, 20.9056444431233]]]]}, "properties": {"taskId": 1147, "taskX": 119906, "taskY": 293289, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.9050029985807], [-97.6670837227396, 20.9056444431233], [-97.6663970772319, 20.9056444431233], [-97.6663970772319, 20.9050029985807], [-97.6670837227396, 20.9050029985807]]]]}, "properties": {"taskId": 1146, "taskX": 119906, "taskY": 293288, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.9043615512951], [-97.6663970772319, 20.9050029985807], [-97.6657104317242, 20.9050029985807], [-97.6657104317242, 20.9043615512951], [-97.6663970772319, 20.9043615512951]]]]}, "properties": {"taskId": 1145, "taskX": 119907, "taskY": 293287, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.9037201012666], [-97.6663970772319, 20.9043615512951], [-97.6657104317242, 20.9043615512951], [-97.6657104317242, 20.9037201012666], [-97.6663970772319, 20.9037201012666]]]]}, "properties": {"taskId": 1144, "taskX": 119907, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.9043615512951], [-97.6670837227396, 20.9050029985807], [-97.6663970772319, 20.9050029985807], [-97.6663970772319, 20.9043615512951], [-97.6670837227396, 20.9043615512951]]]]}, "properties": {"taskId": 1143, "taskX": 119906, "taskY": 293287, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.9037201012666], [-97.6670837227396, 20.9043615512951], [-97.6663970772319, 20.9043615512951], [-97.6663970772319, 20.9037201012666], [-97.6670837227396, 20.9037201012666]]]]}, "properties": {"taskId": 1142, "taskX": 119906, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.9030786484952], [-97.6663970772319, 20.9037201012666], [-97.6657104317242, 20.9037201012666], [-97.6657104317242, 20.9030786484952], [-97.6663970772319, 20.9030786484952]]]]}, "properties": {"taskId": 1141, "taskX": 119907, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.9024371929812], [-97.6663970772319, 20.9030786484952], [-97.6657104317242, 20.9030786484952], [-97.6657104317242, 20.9024371929812], [-97.6663970772319, 20.9024371929812]]]]}, "properties": {"taskId": 1140, "taskX": 119907, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.9030786484952], [-97.6670837227396, 20.9037201012666], [-97.6663970772319, 20.9037201012666], [-97.6663970772319, 20.9030786484952], [-97.6670837227396, 20.9030786484952]]]]}, "properties": {"taskId": 1139, "taskX": 119906, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.9024371929812], [-97.6670837227396, 20.9030786484952], [-97.6663970772319, 20.9030786484952], [-97.6663970772319, 20.9024371929812], [-97.6670837227396, 20.9024371929812]]]]}, "properties": {"taskId": 1138, "taskX": 119906, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.9017957347244], [-97.6663970772319, 20.9024371929812], [-97.6657104317242, 20.9024371929812], [-97.6657104317242, 20.9017957347244], [-97.6663970772319, 20.9017957347244]]]]}, "properties": {"taskId": 1137, "taskX": 119907, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.9011542737251], [-97.6663970772319, 20.9017957347244], [-97.6657104317242, 20.9017957347244], [-97.6657104317242, 20.9011542737251], [-97.6663970772319, 20.9011542737251]]]]}, "properties": {"taskId": 1136, "taskX": 119907, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.9017957347244], [-97.6670837227396, 20.9024371929812], [-97.6663970772319, 20.9024371929812], [-97.6663970772319, 20.9017957347244], [-97.6670837227396, 20.9017957347244]]]]}, "properties": {"taskId": 1135, "taskX": 119906, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.9011542737251], [-97.6670837227396, 20.9017957347244], [-97.6663970772319, 20.9017957347244], [-97.6663970772319, 20.9011542737251], [-97.6670837227396, 20.9011542737251]]]]}, "properties": {"taskId": 1134, "taskX": 119906, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.9005128099832], [-97.6663970772319, 20.9011542737251], [-97.6657104317242, 20.9011542737251], [-97.6657104317242, 20.9005128099832], [-97.6663970772319, 20.9005128099832]]]]}, "properties": {"taskId": 1133, "taskX": 119907, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.8998713434988], [-97.6663970772319, 20.9005128099832], [-97.6657104317242, 20.9005128099832], [-97.6657104317242, 20.8998713434988], [-97.6663970772319, 20.8998713434988]]]]}, "properties": {"taskId": 1132, "taskX": 119907, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.9005128099832], [-97.6670837227396, 20.9011542737251], [-97.6663970772319, 20.9011542737251], [-97.6663970772319, 20.9005128099832], [-97.6670837227396, 20.9005128099832]]]]}, "properties": {"taskId": 1131, "taskX": 119906, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.8998713434988], [-97.6670837227396, 20.9005128099832], [-97.6663970772319, 20.9005128099832], [-97.6663970772319, 20.8998713434988], [-97.6670837227396, 20.8998713434988]]]]}, "properties": {"taskId": 1130, "taskX": 119906, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.8979469275915], [-97.6663970772319, 20.8985884023029], [-97.6657104317242, 20.8985884023029], [-97.6657104317242, 20.8979469275915], [-97.6663970772319, 20.8979469275915]]]]}, "properties": {"taskId": 1128, "taskX": 119907, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.8973054501379], [-97.6663970772319, 20.8979469275915], [-97.6657104317242, 20.8979469275915], [-97.6657104317242, 20.8973054501379], [-97.6663970772319, 20.8973054501379]]]]}, "properties": {"taskId": 1127, "taskX": 119907, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.8979469275915], [-97.6670837227396, 20.8985884023029], [-97.6663970772319, 20.8985884023029], [-97.6663970772319, 20.8979469275915], [-97.6670837227396, 20.8979469275915]]]]}, "properties": {"taskId": 1126, "taskX": 119906, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.8973054501379], [-97.6670837227396, 20.8979469275915], [-97.6663970772319, 20.8979469275915], [-97.6663970772319, 20.8973054501379], [-97.6670837227396, 20.8973054501379]]]]}, "properties": {"taskId": 1125, "taskX": 119906, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.8966639699422], [-97.6663970772319, 20.8973054501379], [-97.6657104317242, 20.8973054501379], [-97.6657104317242, 20.8966639699422], [-97.6663970772319, 20.8966639699422]]]]}, "properties": {"taskId": 1124, "taskX": 119907, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.8960224870044], [-97.6663970772319, 20.8966639699422], [-97.6657104317242, 20.8966639699422], [-97.6657104317242, 20.8960224870044], [-97.6663970772319, 20.8960224870044]]]]}, "properties": {"taskId": 1123, "taskX": 119907, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.9178313681812], [-97.6698303047704, 20.919114144775], [-97.668457013755, 20.919114144775], [-97.668457013755, 20.9178313681812], [-97.6698303047704, 20.9178313681812]]]]}, "properties": {"taskId": 1020, "taskX": 59951, "taskY": 146654, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.9152657820619], [-97.6698303047704, 20.9165485806099], [-97.668457013755, 20.9165485806099], [-97.668457013755, 20.9152657820619], [-97.6698303047704, 20.9152657820619]]]]}, "properties": {"taskId": 1018, "taskX": 59951, "taskY": 146652, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.9139829725378], [-97.6698303047704, 20.9152657820619], [-97.668457013755, 20.9152657820619], [-97.668457013755, 20.9139829725378], [-97.6698303047704, 20.9139829725378]]]]}, "properties": {"taskId": 1017, "taskX": 59951, "taskY": 146651, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6691436592627, 20.9133415636598], [-97.6691436592627, 20.9139829725378], [-97.668457013755, 20.9139829725378], [-97.668457013755, 20.9133415636598], [-97.6691436592627, 20.9133415636598]]]]}, "properties": {"taskId": 1016, "taskX": 119903, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6691436592627, 20.9127001520379], [-97.6691436592627, 20.9133415636598], [-97.668457013755, 20.9133415636598], [-97.668457013755, 20.9127001520379], [-97.6691436592627, 20.9127001520379]]]]}, "properties": {"taskId": 1015, "taskX": 119903, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.9127001520379], [-97.6698303047704, 20.9133415636598], [-97.6691436592627, 20.9133415636598], [-97.6691436592627, 20.9127001520379], [-97.6698303047704, 20.9127001520379]]]]}, "properties": {"taskId": 1013, "taskX": 119902, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6691436592627, 20.9120587376723], [-97.6691436592627, 20.9127001520379], [-97.668457013755, 20.9127001520379], [-97.668457013755, 20.9120587376723], [-97.6691436592627, 20.9120587376723]]]]}, "properties": {"taskId": 1012, "taskX": 119903, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6691436592627, 20.911417320563], [-97.6691436592627, 20.9120587376723], [-97.668457013755, 20.9120587376723], [-97.668457013755, 20.911417320563], [-97.6691436592627, 20.911417320563]]]]}, "properties": {"taskId": 1011, "taskX": 119903, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.9120587376723], [-97.6698303047704, 20.9127001520379], [-97.6691436592627, 20.9127001520379], [-97.6691436592627, 20.9120587376723], [-97.6698303047704, 20.9120587376723]]]]}, "properties": {"taskId": 1010, "taskX": 119902, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.911417320563], [-97.6698303047704, 20.9120587376723], [-97.6691436592627, 20.9120587376723], [-97.6691436592627, 20.911417320563], [-97.6698303047704, 20.911417320563]]]]}, "properties": {"taskId": 1009, "taskX": 119902, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6691436592627, 20.91077590071], [-97.6691436592627, 20.911417320563], [-97.668457013755, 20.911417320563], [-97.668457013755, 20.91077590071], [-97.6691436592627, 20.91077590071]]]]}, "properties": {"taskId": 1008, "taskX": 119903, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6691436592627, 20.9101344781134], [-97.6691436592627, 20.91077590071], [-97.668457013755, 20.91077590071], [-97.668457013755, 20.9101344781134], [-97.6691436592627, 20.9101344781134]]]]}, "properties": {"taskId": 1007, "taskX": 119903, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.91077590071], [-97.6698303047704, 20.911417320563], [-97.6691436592627, 20.911417320563], [-97.6691436592627, 20.91077590071], [-97.6698303047704, 20.91077590071]]]]}, "properties": {"taskId": 1006, "taskX": 119902, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.9101344781134], [-97.6698303047704, 20.91077590071], [-97.6691436592627, 20.91077590071], [-97.6691436592627, 20.9101344781134], [-97.6698303047704, 20.9101344781134]]]]}, "properties": {"taskId": 1005, "taskX": 119902, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6691436592627, 20.9094930527734], [-97.6691436592627, 20.9101344781134], [-97.668457013755, 20.9101344781134], [-97.668457013755, 20.9094930527734], [-97.6691436592627, 20.9094930527734]]]]}, "properties": {"taskId": 1004, "taskX": 119903, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6691436592627, 20.9088516246899], [-97.6691436592627, 20.9094930527734], [-97.668457013755, 20.9094930527734], [-97.668457013755, 20.9088516246899], [-97.6691436592627, 20.9088516246899]]]]}, "properties": {"taskId": 1003, "taskX": 119903, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.9094930527734], [-97.6698303047704, 20.9101344781134], [-97.6691436592627, 20.9101344781134], [-97.6691436592627, 20.9094930527734], [-97.6698303047704, 20.9094930527734]]]]}, "properties": {"taskId": 1002, "taskX": 119902, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.9088516246899], [-97.6698303047704, 20.9094930527734], [-97.6691436592627, 20.9094930527734], [-97.6691436592627, 20.9088516246899], [-97.6698303047704, 20.9088516246899]]]]}, "properties": {"taskId": 1001, "taskX": 119902, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6691436592627, 20.9082101938631], [-97.6691436592627, 20.9088516246899], [-97.668457013755, 20.9088516246899], [-97.668457013755, 20.9082101938631], [-97.6691436592627, 20.9082101938631]]]]}, "properties": {"taskId": 1000, "taskX": 119903, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6691436592627, 20.9075687602929], [-97.6691436592627, 20.9082101938631], [-97.668457013755, 20.9082101938631], [-97.668457013755, 20.9075687602929], [-97.6691436592627, 20.9075687602929]]]]}, "properties": {"taskId": 999, "taskX": 119903, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.9082101938631], [-97.6698303047704, 20.9088516246899], [-97.6691436592627, 20.9088516246899], [-97.6691436592627, 20.9082101938631], [-97.6698303047704, 20.9082101938631]]]]}, "properties": {"taskId": 998, "taskX": 119902, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6691436592627, 20.9069273239795], [-97.6691436592627, 20.9075687602929], [-97.668457013755, 20.9075687602929], [-97.668457013755, 20.9069273239795], [-97.6691436592627, 20.9069273239795]]]]}, "properties": {"taskId": 996, "taskX": 119903, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6691436592627, 20.906285884923], [-97.6691436592627, 20.9069273239795], [-97.668457013755, 20.9069273239795], [-97.668457013755, 20.906285884923], [-97.6691436592627, 20.906285884923]]]]}, "properties": {"taskId": 995, "taskX": 119903, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.9069273239795], [-97.6698303047704, 20.9075687602929], [-97.6691436592627, 20.9075687602929], [-97.6691436592627, 20.9069273239795], [-97.6698303047704, 20.9069273239795]]]]}, "properties": {"taskId": 994, "taskX": 119902, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6691436592627, 20.9056444431233], [-97.6691436592627, 20.906285884923], [-97.668457013755, 20.906285884923], [-97.668457013755, 20.9056444431233], [-97.6691436592627, 20.9056444431233]]]]}, "properties": {"taskId": 992, "taskX": 119903, "taskY": 293289, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6691436592627, 20.9050029985807], [-97.6691436592627, 20.9056444431233], [-97.668457013755, 20.9056444431233], [-97.668457013755, 20.9050029985807], [-97.6691436592627, 20.9050029985807]]]]}, "properties": {"taskId": 991, "taskX": 119903, "taskY": 293288, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.9056444431233], [-97.6698303047704, 20.906285884923], [-97.6691436592627, 20.906285884923], [-97.6691436592627, 20.9056444431233], [-97.6698303047704, 20.9056444431233]]]]}, "properties": {"taskId": 990, "taskX": 119902, "taskY": 293289, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.9050029985807], [-97.6698303047704, 20.9056444431233], [-97.6691436592627, 20.9056444431233], [-97.6691436592627, 20.9050029985807], [-97.6698303047704, 20.9050029985807]]]]}, "properties": {"taskId": 989, "taskX": 119902, "taskY": 293288, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6691436592627, 20.9043615512951], [-97.6691436592627, 20.9050029985807], [-97.668457013755, 20.9050029985807], [-97.668457013755, 20.9043615512951], [-97.6691436592627, 20.9043615512951]]]]}, "properties": {"taskId": 988, "taskX": 119903, "taskY": 293287, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.9043615512951], [-97.6698303047704, 20.9050029985807], [-97.6691436592627, 20.9050029985807], [-97.6691436592627, 20.9043615512951], [-97.6698303047704, 20.9043615512951]]]]}, "properties": {"taskId": 986, "taskX": 119902, "taskY": 293287, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.9037201012666], [-97.6698303047704, 20.9043615512951], [-97.6691436592627, 20.9043615512951], [-97.6691436592627, 20.9037201012666], [-97.6698303047704, 20.9037201012666]]]]}, "properties": {"taskId": 985, "taskX": 119902, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6691436592627, 20.9030786484952], [-97.6691436592627, 20.9037201012666], [-97.668457013755, 20.9037201012666], [-97.668457013755, 20.9030786484952], [-97.6691436592627, 20.9030786484952]]]]}, "properties": {"taskId": 984, "taskX": 119903, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6691436592627, 20.9024371929812], [-97.6691436592627, 20.9030786484952], [-97.668457013755, 20.9030786484952], [-97.668457013755, 20.9024371929812], [-97.6691436592627, 20.9024371929812]]]]}, "properties": {"taskId": 983, "taskX": 119903, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.9030786484952], [-97.6698303047704, 20.9037201012666], [-97.6691436592627, 20.9037201012666], [-97.6691436592627, 20.9030786484952], [-97.6698303047704, 20.9030786484952]]]]}, "properties": {"taskId": 982, "taskX": 119902, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.9024371929812], [-97.6698303047704, 20.9030786484952], [-97.6691436592627, 20.9030786484952], [-97.6691436592627, 20.9024371929812], [-97.6698303047704, 20.9024371929812]]]]}, "properties": {"taskId": 981, "taskX": 119902, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6691436592627, 20.9017957347244], [-97.6691436592627, 20.9024371929812], [-97.668457013755, 20.9024371929812], [-97.668457013755, 20.9017957347244], [-97.6691436592627, 20.9017957347244]]]]}, "properties": {"taskId": 980, "taskX": 119903, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6691436592627, 20.9011542737251], [-97.6691436592627, 20.9017957347244], [-97.668457013755, 20.9017957347244], [-97.668457013755, 20.9011542737251], [-97.6691436592627, 20.9011542737251]]]]}, "properties": {"taskId": 979, "taskX": 119903, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.9017957347244], [-97.6698303047704, 20.9024371929812], [-97.6691436592627, 20.9024371929812], [-97.6691436592627, 20.9017957347244], [-97.6698303047704, 20.9017957347244]]]]}, "properties": {"taskId": 978, "taskX": 119902, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.9011542737251], [-97.6698303047704, 20.9017957347244], [-97.6691436592627, 20.9017957347244], [-97.6691436592627, 20.9011542737251], [-97.6698303047704, 20.9011542737251]]]]}, "properties": {"taskId": 977, "taskX": 119902, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6691436592627, 20.8998713434988], [-97.6691436592627, 20.9005128099832], [-97.668457013755, 20.9005128099832], [-97.668457013755, 20.8998713434988], [-97.6691436592627, 20.8998713434988]]]]}, "properties": {"taskId": 975, "taskX": 119903, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.8998713434988], [-97.6698303047704, 20.9005128099832], [-97.6691436592627, 20.9005128099832], [-97.6691436592627, 20.8998713434988], [-97.6698303047704, 20.8998713434988]]]]}, "properties": {"taskId": 973, "taskX": 119902, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6691436592627, 20.899229874272], [-97.6691436592627, 20.8998713434988], [-97.668457013755, 20.8998713434988], [-97.668457013755, 20.899229874272], [-97.6691436592627, 20.899229874272]]]]}, "properties": {"taskId": 972, "taskX": 119903, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6691436592627, 20.8985884023029], [-97.6691436592627, 20.899229874272], [-97.668457013755, 20.899229874272], [-97.668457013755, 20.8985884023029], [-97.6691436592627, 20.8985884023029]]]]}, "properties": {"taskId": 971, "taskX": 119903, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.899229874272], [-97.6698303047704, 20.8998713434988], [-97.6691436592627, 20.8998713434988], [-97.6691436592627, 20.899229874272], [-97.6698303047704, 20.899229874272]]]]}, "properties": {"taskId": 970, "taskX": 119902, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.8985884023029], [-97.6698303047704, 20.899229874272], [-97.6691436592627, 20.899229874272], [-97.6691436592627, 20.8985884023029], [-97.6698303047704, 20.8985884023029]]]]}, "properties": {"taskId": 969, "taskX": 119902, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.8973054501379], [-97.6698303047704, 20.8985884023029], [-97.668457013755, 20.8985884023029], [-97.668457013755, 20.8973054501379], [-97.6698303047704, 20.8973054501379]]]]}, "properties": {"taskId": 968, "taskX": 59951, "taskY": 146638, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.8960224870044], [-97.6698303047704, 20.8973054501379], [-97.668457013755, 20.8973054501379], [-97.668457013755, 20.8960224870044], [-97.6698303047704, 20.8960224870044]]]]}, "properties": {"taskId": 967, "taskX": 59951, "taskY": 146637, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.8947395129029], [-97.6698303047704, 20.8960224870044], [-97.668457013755, 20.8960224870044], [-97.668457013755, 20.8947395129029], [-97.6698303047704, 20.8947395129029]]]]}, "properties": {"taskId": 966, "taskX": 59951, "taskY": 146636, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.8934565278341], [-97.6698303047704, 20.8947395129029], [-97.668457013755, 20.8947395129029], [-97.668457013755, 20.8934565278341], [-97.6698303047704, 20.8934565278341]]]]}, "properties": {"taskId": 965, "taskX": 59951, "taskY": 146635, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.8921735317983], [-97.6698303047704, 20.8934565278341], [-97.668457013755, 20.8934565278341], [-97.668457013755, 20.8921735317983], [-97.6698303047704, 20.8921735317983]]]]}, "properties": {"taskId": 964, "taskX": 59951, "taskY": 146634, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.8908905247962], [-97.6698303047704, 20.8921735317983], [-97.668457013755, 20.8921735317983], [-97.668457013755, 20.8908905247962], [-97.6698303047704, 20.8908905247962]]]]}, "properties": {"taskId": 963, "taskX": 59951, "taskY": 146633, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.8883244778952], [-97.6698303047704, 20.8896075068283], [-97.668457013755, 20.8896075068283], [-97.668457013755, 20.8883244778952], [-97.6698303047704, 20.8883244778952]]]]}, "properties": {"taskId": 961, "taskX": 59951, "taskY": 146631, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.8870414379975], [-97.6698303047704, 20.8883244778952], [-97.668457013755, 20.8883244778952], [-97.668457013755, 20.8870414379975], [-97.6698303047704, 20.8870414379975]]]]}, "properties": {"taskId": 960, "taskX": 59951, "taskY": 146630, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6698303047704, 20.8857583871356], [-97.6698303047704, 20.8870414379975], [-97.668457013755, 20.8870414379975], [-97.668457013755, 20.8857583871356], [-97.6698303047704, 20.8857583871356]]]]}, "properties": {"taskId": 959, "taskX": 59951, "taskY": 146629, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.9178313681812], [-97.6712035957858, 20.919114144775], [-97.6698303047704, 20.919114144775], [-97.6698303047704, 20.9178313681812], [-97.6712035957858, 20.9178313681812]]]]}, "properties": {"taskId": 958, "taskX": 59950, "taskY": 146654, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.9165485806099], [-97.6712035957858, 20.9178313681812], [-97.6698303047704, 20.9178313681812], [-97.6698303047704, 20.9165485806099], [-97.6712035957858, 20.9165485806099]]]]}, "properties": {"taskId": 957, "taskX": 59950, "taskY": 146653, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.915907182708], [-97.6705169502781, 20.9165485806099], [-97.6698303047704, 20.9165485806099], [-97.6698303047704, 20.915907182708], [-97.6705169502781, 20.915907182708]]]]}, "properties": {"taskId": 956, "taskX": 119901, "taskY": 293305, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.9152657820619], [-97.6705169502781, 20.915907182708], [-97.6698303047704, 20.915907182708], [-97.6698303047704, 20.9152657820619], [-97.6705169502781, 20.9152657820619]]]]}, "properties": {"taskId": 955, "taskX": 119901, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.915907182708], [-97.6712035957858, 20.9165485806099], [-97.6705169502781, 20.9165485806099], [-97.6705169502781, 20.915907182708], [-97.6712035957858, 20.915907182708]]]]}, "properties": {"taskId": 954, "taskX": 119900, "taskY": 293305, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.9146243786719], [-97.6705169502781, 20.9152657820619], [-97.6698303047704, 20.9152657820619], [-97.6698303047704, 20.9146243786719], [-97.6705169502781, 20.9146243786719]]]]}, "properties": {"taskId": 952, "taskX": 119901, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.9139829725378], [-97.6705169502781, 20.9146243786719], [-97.6698303047704, 20.9146243786719], [-97.6698303047704, 20.9139829725378], [-97.6705169502781, 20.9139829725378]]]]}, "properties": {"taskId": 951, "taskX": 119901, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.9146243786719], [-97.6712035957858, 20.9152657820619], [-97.6705169502781, 20.9152657820619], [-97.6705169502781, 20.9146243786719], [-97.6712035957858, 20.9146243786719]]]]}, "properties": {"taskId": 950, "taskX": 119900, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.9139829725378], [-97.6712035957858, 20.9146243786719], [-97.6705169502781, 20.9146243786719], [-97.6705169502781, 20.9139829725378], [-97.6712035957858, 20.9139829725378]]]]}, "properties": {"taskId": 949, "taskX": 119900, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.9133415636598], [-97.6705169502781, 20.9139829725378], [-97.6698303047704, 20.9139829725378], [-97.6698303047704, 20.9133415636598], [-97.6705169502781, 20.9133415636598]]]]}, "properties": {"taskId": 948, "taskX": 119901, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.9127001520379], [-97.6705169502781, 20.9133415636598], [-97.6698303047704, 20.9133415636598], [-97.6698303047704, 20.9127001520379], [-97.6705169502781, 20.9127001520379]]]]}, "properties": {"taskId": 947, "taskX": 119901, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.9133415636598], [-97.6712035957858, 20.9139829725378], [-97.6705169502781, 20.9139829725378], [-97.6705169502781, 20.9133415636598], [-97.6712035957858, 20.9133415636598]]]]}, "properties": {"taskId": 946, "taskX": 119900, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.9127001520379], [-97.6712035957858, 20.9133415636598], [-97.6705169502781, 20.9133415636598], [-97.6705169502781, 20.9127001520379], [-97.6712035957858, 20.9127001520379]]]]}, "properties": {"taskId": 945, "taskX": 119900, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.9120587376723], [-97.6705169502781, 20.9127001520379], [-97.6698303047704, 20.9127001520379], [-97.6698303047704, 20.9120587376723], [-97.6705169502781, 20.9120587376723]]]]}, "properties": {"taskId": 944, "taskX": 119901, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.911417320563], [-97.6705169502781, 20.9120587376723], [-97.6698303047704, 20.9120587376723], [-97.6698303047704, 20.911417320563], [-97.6705169502781, 20.911417320563]]]]}, "properties": {"taskId": 943, "taskX": 119901, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.911417320563], [-97.6712035957858, 20.9120587376723], [-97.6705169502781, 20.9120587376723], [-97.6705169502781, 20.911417320563], [-97.6712035957858, 20.911417320563]]]]}, "properties": {"taskId": 941, "taskX": 119900, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.91077590071], [-97.6705169502781, 20.911417320563], [-97.6698303047704, 20.911417320563], [-97.6698303047704, 20.91077590071], [-97.6705169502781, 20.91077590071]]]]}, "properties": {"taskId": 940, "taskX": 119901, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.9101344781134], [-97.6705169502781, 20.91077590071], [-97.6698303047704, 20.91077590071], [-97.6698303047704, 20.9101344781134], [-97.6705169502781, 20.9101344781134]]]]}, "properties": {"taskId": 939, "taskX": 119901, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.91077590071], [-97.6712035957858, 20.911417320563], [-97.6705169502781, 20.911417320563], [-97.6705169502781, 20.91077590071], [-97.6712035957858, 20.91077590071]]]]}, "properties": {"taskId": 938, "taskX": 119900, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.9101344781134], [-97.6712035957858, 20.91077590071], [-97.6705169502781, 20.91077590071], [-97.6705169502781, 20.9101344781134], [-97.6712035957858, 20.9101344781134]]]]}, "properties": {"taskId": 937, "taskX": 119900, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.9094930527734], [-97.6705169502781, 20.9101344781134], [-97.6698303047704, 20.9101344781134], [-97.6698303047704, 20.9094930527734], [-97.6705169502781, 20.9094930527734]]]]}, "properties": {"taskId": 936, "taskX": 119901, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.9088516246899], [-97.6705169502781, 20.9094930527734], [-97.6698303047704, 20.9094930527734], [-97.6698303047704, 20.9088516246899], [-97.6705169502781, 20.9088516246899]]]]}, "properties": {"taskId": 935, "taskX": 119901, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.9094930527734], [-97.6712035957858, 20.9101344781134], [-97.6705169502781, 20.9101344781134], [-97.6705169502781, 20.9094930527734], [-97.6712035957858, 20.9094930527734]]]]}, "properties": {"taskId": 934, "taskX": 119900, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.9088516246899], [-97.6712035957858, 20.9094930527734], [-97.6705169502781, 20.9094930527734], [-97.6705169502781, 20.9088516246899], [-97.6712035957858, 20.9088516246899]]]]}, "properties": {"taskId": 933, "taskX": 119900, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.9082101938631], [-97.6712035957858, 20.9088516246899], [-97.6705169502781, 20.9088516246899], [-97.6705169502781, 20.9082101938631], [-97.6712035957858, 20.9082101938631]]]]}, "properties": {"taskId": 930, "taskX": 119900, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.9069273239795], [-97.6705169502781, 20.9075687602929], [-97.6698303047704, 20.9075687602929], [-97.6698303047704, 20.9069273239795], [-97.6705169502781, 20.9069273239795]]]]}, "properties": {"taskId": 928, "taskX": 119901, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.906285884923], [-97.6705169502781, 20.9069273239795], [-97.6698303047704, 20.9069273239795], [-97.6698303047704, 20.906285884923], [-97.6705169502781, 20.906285884923]]]]}, "properties": {"taskId": 927, "taskX": 119901, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.9069273239795], [-97.6712035957858, 20.9075687602929], [-97.6705169502781, 20.9075687602929], [-97.6705169502781, 20.9069273239795], [-97.6712035957858, 20.9069273239795]]]]}, "properties": {"taskId": 926, "taskX": 119900, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.906285884923], [-97.6712035957858, 20.9069273239795], [-97.6705169502781, 20.9069273239795], [-97.6705169502781, 20.906285884923], [-97.6712035957858, 20.906285884923]]]]}, "properties": {"taskId": 925, "taskX": 119900, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.9056444431233], [-97.6705169502781, 20.906285884923], [-97.6698303047704, 20.906285884923], [-97.6698303047704, 20.9056444431233], [-97.6705169502781, 20.9056444431233]]]]}, "properties": {"taskId": 924, "taskX": 119901, "taskY": 293289, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.9050029985807], [-97.6705169502781, 20.9056444431233], [-97.6698303047704, 20.9056444431233], [-97.6698303047704, 20.9050029985807], [-97.6705169502781, 20.9050029985807]]]]}, "properties": {"taskId": 923, "taskX": 119901, "taskY": 293288, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.9056444431233], [-97.6712035957858, 20.906285884923], [-97.6705169502781, 20.906285884923], [-97.6705169502781, 20.9056444431233], [-97.6712035957858, 20.9056444431233]]]]}, "properties": {"taskId": 922, "taskX": 119900, "taskY": 293289, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.9050029985807], [-97.6712035957858, 20.9056444431233], [-97.6705169502781, 20.9056444431233], [-97.6705169502781, 20.9050029985807], [-97.6712035957858, 20.9050029985807]]]]}, "properties": {"taskId": 921, "taskX": 119900, "taskY": 293288, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.9037201012666], [-97.6705169502781, 20.9043615512951], [-97.6698303047704, 20.9043615512951], [-97.6698303047704, 20.9037201012666], [-97.6705169502781, 20.9037201012666]]]]}, "properties": {"taskId": 919, "taskX": 119901, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.9043615512951], [-97.6712035957858, 20.9050029985807], [-97.6705169502781, 20.9050029985807], [-97.6705169502781, 20.9043615512951], [-97.6712035957858, 20.9043615512951]]]]}, "properties": {"taskId": 918, "taskX": 119900, "taskY": 293287, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.9030786484952], [-97.6705169502781, 20.9037201012666], [-97.6698303047704, 20.9037201012666], [-97.6698303047704, 20.9030786484952], [-97.6705169502781, 20.9030786484952]]]]}, "properties": {"taskId": 916, "taskX": 119901, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.9024371929812], [-97.6705169502781, 20.9030786484952], [-97.6698303047704, 20.9030786484952], [-97.6698303047704, 20.9024371929812], [-97.6705169502781, 20.9024371929812]]]]}, "properties": {"taskId": 915, "taskX": 119901, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.9030786484952], [-97.6712035957858, 20.9037201012666], [-97.6705169502781, 20.9037201012666], [-97.6705169502781, 20.9030786484952], [-97.6712035957858, 20.9030786484952]]]]}, "properties": {"taskId": 914, "taskX": 119900, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.9024371929812], [-97.6712035957858, 20.9030786484952], [-97.6705169502781, 20.9030786484952], [-97.6705169502781, 20.9024371929812], [-97.6712035957858, 20.9024371929812]]]]}, "properties": {"taskId": 913, "taskX": 119900, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.9017957347244], [-97.6705169502781, 20.9024371929812], [-97.6698303047704, 20.9024371929812], [-97.6698303047704, 20.9017957347244], [-97.6705169502781, 20.9017957347244]]]]}, "properties": {"taskId": 912, "taskX": 119901, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.9011542737251], [-97.6705169502781, 20.9017957347244], [-97.6698303047704, 20.9017957347244], [-97.6698303047704, 20.9011542737251], [-97.6705169502781, 20.9011542737251]]]]}, "properties": {"taskId": 911, "taskX": 119901, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.9017957347244], [-97.6712035957858, 20.9024371929812], [-97.6705169502781, 20.9024371929812], [-97.6705169502781, 20.9017957347244], [-97.6712035957858, 20.9017957347244]]]]}, "properties": {"taskId": 910, "taskX": 119900, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.9011542737251], [-97.6712035957858, 20.9017957347244], [-97.6705169502781, 20.9017957347244], [-97.6705169502781, 20.9011542737251], [-97.6712035957858, 20.9011542737251]]]]}, "properties": {"taskId": 909, "taskX": 119900, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.9005128099832], [-97.6705169502781, 20.9011542737251], [-97.6698303047704, 20.9011542737251], [-97.6698303047704, 20.9005128099832], [-97.6705169502781, 20.9005128099832]]]]}, "properties": {"taskId": 908, "taskX": 119901, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.8998713434988], [-97.6705169502781, 20.9005128099832], [-97.6698303047704, 20.9005128099832], [-97.6698303047704, 20.8998713434988], [-97.6705169502781, 20.8998713434988]]]]}, "properties": {"taskId": 907, "taskX": 119901, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.9005128099832], [-97.6712035957858, 20.9011542737251], [-97.6705169502781, 20.9011542737251], [-97.6705169502781, 20.9005128099832], [-97.6712035957858, 20.9005128099832]]]]}, "properties": {"taskId": 906, "taskX": 119900, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.8998713434988], [-97.6712035957858, 20.9005128099832], [-97.6705169502781, 20.9005128099832], [-97.6705169502781, 20.8998713434988], [-97.6712035957858, 20.8998713434988]]]]}, "properties": {"taskId": 905, "taskX": 119900, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.899229874272], [-97.6705169502781, 20.8998713434988], [-97.6698303047704, 20.8998713434988], [-97.6698303047704, 20.899229874272], [-97.6705169502781, 20.899229874272]]]]}, "properties": {"taskId": 904, "taskX": 119901, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.8985884023029], [-97.6705169502781, 20.899229874272], [-97.6698303047704, 20.899229874272], [-97.6698303047704, 20.8985884023029], [-97.6705169502781, 20.8985884023029]]]]}, "properties": {"taskId": 903, "taskX": 119901, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.899229874272], [-97.6712035957858, 20.8998713434988], [-97.6705169502781, 20.8998713434988], [-97.6705169502781, 20.899229874272], [-97.6712035957858, 20.899229874272]]]]}, "properties": {"taskId": 902, "taskX": 119900, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.8985884023029], [-97.6712035957858, 20.899229874272], [-97.6705169502781, 20.899229874272], [-97.6705169502781, 20.8985884023029], [-97.6712035957858, 20.8985884023029]]]]}, "properties": {"taskId": 901, "taskX": 119900, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.8979469275915], [-97.6705169502781, 20.8985884023029], [-97.6698303047704, 20.8985884023029], [-97.6698303047704, 20.8979469275915], [-97.6705169502781, 20.8979469275915]]]]}, "properties": {"taskId": 900, "taskX": 119901, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6705169502781, 20.8973054501379], [-97.6705169502781, 20.8979469275915], [-97.6698303047704, 20.8979469275915], [-97.6698303047704, 20.8973054501379], [-97.6705169502781, 20.8973054501379]]]]}, "properties": {"taskId": 899, "taskX": 119901, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.8979469275915], [-97.6712035957858, 20.8985884023029], [-97.6705169502781, 20.8985884023029], [-97.6705169502781, 20.8979469275915], [-97.6712035957858, 20.8979469275915]]]]}, "properties": {"taskId": 898, "taskX": 119900, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.8973054501379], [-97.6712035957858, 20.8979469275915], [-97.6705169502781, 20.8979469275915], [-97.6705169502781, 20.8973054501379], [-97.6712035957858, 20.8973054501379]]]]}, "properties": {"taskId": 897, "taskX": 119900, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.8947395129029], [-97.6712035957858, 20.8960224870044], [-97.6698303047704, 20.8960224870044], [-97.6698303047704, 20.8947395129029], [-97.6712035957858, 20.8947395129029]]]]}, "properties": {"taskId": 895, "taskX": 59950, "taskY": 146636, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.8934565278341], [-97.6712035957858, 20.8947395129029], [-97.6698303047704, 20.8947395129029], [-97.6698303047704, 20.8934565278341], [-97.6712035957858, 20.8934565278341]]]]}, "properties": {"taskId": 894, "taskX": 59950, "taskY": 146635, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.8921735317983], [-97.6712035957858, 20.8934565278341], [-97.6698303047704, 20.8934565278341], [-97.6698303047704, 20.8921735317983], [-97.6712035957858, 20.8921735317983]]]]}, "properties": {"taskId": 893, "taskX": 59950, "taskY": 146634, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.8908905247962], [-97.6712035957858, 20.8921735317983], [-97.6698303047704, 20.8921735317983], [-97.6698303047704, 20.8908905247962], [-97.6712035957858, 20.8908905247962]]]]}, "properties": {"taskId": 892, "taskX": 59950, "taskY": 146633, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.8896075068283], [-97.6712035957858, 20.8908905247962], [-97.6698303047704, 20.8908905247962], [-97.6698303047704, 20.8896075068283], [-97.6712035957858, 20.8896075068283]]]]}, "properties": {"taskId": 891, "taskX": 59950, "taskY": 146632, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6712035957858, 20.8883244778952], [-97.6712035957858, 20.8896075068283], [-97.6698303047704, 20.8896075068283], [-97.6698303047704, 20.8883244778952], [-97.6712035957858, 20.8883244778952]]]]}, "properties": {"taskId": 890, "taskX": 59950, "taskY": 146631, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.9178313681812], [-97.6725768868012, 20.919114144775], [-97.6712035957858, 20.919114144775], [-97.6712035957858, 20.9178313681812], [-97.6725768868012, 20.9178313681812]]]]}, "properties": {"taskId": 888, "taskX": 59949, "taskY": 146654, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.9165485806099], [-97.6725768868012, 20.9178313681812], [-97.6712035957858, 20.9178313681812], [-97.6712035957858, 20.9165485806099], [-97.6725768868012, 20.9165485806099]]]]}, "properties": {"taskId": 887, "taskX": 59949, "taskY": 146653, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.9152657820619], [-97.6718902412935, 20.915907182708], [-97.6712035957858, 20.915907182708], [-97.6712035957858, 20.9152657820619], [-97.6718902412935, 20.9152657820619]]]]}, "properties": {"taskId": 885, "taskX": 119899, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.915907182708], [-97.6725768868012, 20.9165485806099], [-97.6718902412935, 20.9165485806099], [-97.6718902412935, 20.915907182708], [-97.6725768868012, 20.915907182708]]]]}, "properties": {"taskId": 884, "taskX": 119898, "taskY": 293305, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.9152657820619], [-97.6725768868012, 20.915907182708], [-97.6718902412935, 20.915907182708], [-97.6718902412935, 20.9152657820619], [-97.6725768868012, 20.9152657820619]]]]}, "properties": {"taskId": 883, "taskX": 119898, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.9146243786719], [-97.6718902412935, 20.9152657820619], [-97.6712035957858, 20.9152657820619], [-97.6712035957858, 20.9146243786719], [-97.6718902412935, 20.9146243786719]]]]}, "properties": {"taskId": 882, "taskX": 119899, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.9139829725378], [-97.6718902412935, 20.9146243786719], [-97.6712035957858, 20.9146243786719], [-97.6712035957858, 20.9139829725378], [-97.6718902412935, 20.9139829725378]]]]}, "properties": {"taskId": 881, "taskX": 119899, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.9146243786719], [-97.6725768868012, 20.9152657820619], [-97.6718902412935, 20.9152657820619], [-97.6718902412935, 20.9146243786719], [-97.6725768868012, 20.9146243786719]]]]}, "properties": {"taskId": 880, "taskX": 119898, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.9139829725378], [-97.6725768868012, 20.9146243786719], [-97.6718902412935, 20.9146243786719], [-97.6718902412935, 20.9139829725378], [-97.6725768868012, 20.9139829725378]]]]}, "properties": {"taskId": 879, "taskX": 119898, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.9133415636598], [-97.6718902412935, 20.9139829725378], [-97.6712035957858, 20.9139829725378], [-97.6712035957858, 20.9133415636598], [-97.6718902412935, 20.9133415636598]]]]}, "properties": {"taskId": 878, "taskX": 119899, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.9127001520379], [-97.6718902412935, 20.9133415636598], [-97.6712035957858, 20.9133415636598], [-97.6712035957858, 20.9127001520379], [-97.6718902412935, 20.9127001520379]]]]}, "properties": {"taskId": 877, "taskX": 119899, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.9133415636598], [-97.6725768868012, 20.9139829725378], [-97.6718902412935, 20.9139829725378], [-97.6718902412935, 20.9133415636598], [-97.6725768868012, 20.9133415636598]]]]}, "properties": {"taskId": 876, "taskX": 119898, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.9127001520379], [-97.6725768868012, 20.9133415636598], [-97.6718902412935, 20.9133415636598], [-97.6718902412935, 20.9127001520379], [-97.6725768868012, 20.9127001520379]]]]}, "properties": {"taskId": 875, "taskX": 119898, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9216796650287], [-97.6808166328934, 20.9229624086873], [-97.6794433418781, 20.9229624086873], [-97.6794433418781, 20.9216796650287], [-97.6808166328934, 20.9216796650287]]]]}, "properties": {"taskId": 453, "taskX": 59943, "taskY": 146657, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9216796650287], [-97.6821899239088, 20.9229624086873], [-97.6808166328934, 20.9229624086873], [-97.6808166328934, 20.9216796650287], [-97.6821899239088, 20.9216796650287]]]]}, "properties": {"taskId": 363, "taskX": 59942, "taskY": 146657, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.9197555289553], [-97.677383405355, 20.920396910391], [-97.6766967598473, 20.920396910391], [-97.6766967598473, 20.9197555289553], [-97.677383405355, 20.9197555289553]]]]}, "properties": {"taskId": 613, "taskX": 119891, "taskY": 293311, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6478576485243, 20.8844753253101], [-97.6478576485243, 20.8857583871356], [-97.646484357509, 20.8857583871356], [-97.646484357509, 20.8844753253101], [-97.6478576485243, 20.8844753253101]]]]}, "properties": {"taskId": 1709, "taskX": 59967, "taskY": 146628, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6492309395397, 20.8870414379975], [-97.6492309395397, 20.8883244778952], [-97.6478576485243, 20.8883244778952], [-97.6478576485243, 20.8870414379975], [-97.6492309395397, 20.8870414379975]]]]}, "properties": {"taskId": 1707, "taskX": 59966, "taskY": 146630, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6492309395397, 20.8857583871356], [-97.6492309395397, 20.8870414379975], [-97.6478576485243, 20.8870414379975], [-97.6478576485243, 20.8857583871356], [-97.6492309395397, 20.8857583871356]]]]}, "properties": {"taskId": 1706, "taskX": 59966, "taskY": 146629, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.648544294032, 20.8851168575932], [-97.648544294032, 20.8857583871356], [-97.6478576485243, 20.8857583871356], [-97.6478576485243, 20.8851168575932], [-97.648544294032, 20.8851168575932]]]]}, "properties": {"taskId": 1705, "taskX": 119933, "taskY": 293257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.648544294032, 20.8844753253101], [-97.648544294032, 20.8851168575932], [-97.6478576485243, 20.8851168575932], [-97.6478576485243, 20.8844753253101], [-97.648544294032, 20.8844753253101]]]]}, "properties": {"taskId": 1704, "taskX": 119933, "taskY": 293256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6492309395397, 20.8851168575932], [-97.6492309395397, 20.8857583871356], [-97.648544294032, 20.8857583871356], [-97.648544294032, 20.8851168575932], [-97.6492309395397, 20.8851168575932]]]]}, "properties": {"taskId": 1703, "taskX": 119932, "taskY": 293257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6492309395397, 20.8844753253101], [-97.6492309395397, 20.8851168575932], [-97.648544294032, 20.8851168575932], [-97.648544294032, 20.8844753253101], [-97.6492309395397, 20.8844753253101]]]]}, "properties": {"taskId": 1702, "taskX": 119932, "taskY": 293256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6492309395397, 20.8831922525216], [-97.6492309395397, 20.8844753253101], [-97.6478576485243, 20.8844753253101], [-97.6478576485243, 20.8831922525216], [-97.6492309395397, 20.8831922525216]]]]}, "properties": {"taskId": 1701, "taskX": 59966, "taskY": 146627, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6506042305551, 20.8883244778952], [-97.6506042305551, 20.8896075068283], [-97.6492309395397, 20.8896075068283], [-97.6492309395397, 20.8883244778952], [-97.6506042305551, 20.8883244778952]]]]}, "properties": {"taskId": 1700, "taskX": 59965, "taskY": 146631, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6506042305551, 20.8870414379975], [-97.6506042305551, 20.8883244778952], [-97.6492309395397, 20.8883244778952], [-97.6492309395397, 20.8870414379975], [-97.6506042305551, 20.8870414379975]]]]}, "properties": {"taskId": 1699, "taskX": 59965, "taskY": 146630, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6499175850474, 20.886399913937], [-97.6499175850474, 20.8870414379975], [-97.6492309395397, 20.8870414379975], [-97.6492309395397, 20.886399913937], [-97.6499175850474, 20.886399913937]]]]}, "properties": {"taskId": 1698, "taskX": 119931, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6499175850474, 20.8857583871356], [-97.6499175850474, 20.886399913937], [-97.6492309395397, 20.886399913937], [-97.6492309395397, 20.8857583871356], [-97.6499175850474, 20.8857583871356]]]]}, "properties": {"taskId": 1697, "taskX": 119931, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6506042305551, 20.886399913937], [-97.6506042305551, 20.8870414379975], [-97.6499175850474, 20.8870414379975], [-97.6499175850474, 20.886399913937], [-97.6506042305551, 20.886399913937]]]]}, "properties": {"taskId": 1696, "taskX": 119930, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6499175850474, 20.8851168575932], [-97.6499175850474, 20.8857583871356], [-97.6492309395397, 20.8857583871356], [-97.6492309395397, 20.8851168575932], [-97.6499175850474, 20.8851168575932]]]]}, "properties": {"taskId": 1694, "taskX": 119931, "taskY": 293257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6499175850474, 20.8844753253101], [-97.6499175850474, 20.8851168575932], [-97.6492309395397, 20.8851168575932], [-97.6492309395397, 20.8844753253101], [-97.6499175850474, 20.8844753253101]]]]}, "properties": {"taskId": 1693, "taskX": 119931, "taskY": 293256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6506042305551, 20.8851168575932], [-97.6506042305551, 20.8857583871356], [-97.6499175850474, 20.8857583871356], [-97.6499175850474, 20.8851168575932], [-97.6506042305551, 20.8851168575932]]]]}, "properties": {"taskId": 1692, "taskX": 119930, "taskY": 293257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6506042305551, 20.8844753253101], [-97.6506042305551, 20.8851168575932], [-97.6499175850474, 20.8851168575932], [-97.6499175850474, 20.8844753253101], [-97.6506042305551, 20.8844753253101]]]]}, "properties": {"taskId": 1691, "taskX": 119930, "taskY": 293256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6506042305551, 20.8831922525216], [-97.6506042305551, 20.8844753253101], [-97.6492309395397, 20.8844753253101], [-97.6492309395397, 20.8831922525216], [-97.6506042305551, 20.8831922525216]]]]}, "properties": {"taskId": 1690, "taskX": 59965, "taskY": 146627, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6519775215705, 20.8908905247962], [-97.6519775215705, 20.8921735317983], [-97.6506042305551, 20.8921735317983], [-97.6506042305551, 20.8908905247962], [-97.6519775215705, 20.8908905247962]]]]}, "properties": {"taskId": 1689, "taskX": 59964, "taskY": 146633, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6519775215705, 20.8896075068283], [-97.6519775215705, 20.8908905247962], [-97.6506042305551, 20.8908905247962], [-97.6506042305551, 20.8896075068283], [-97.6519775215705, 20.8896075068283]]]]}, "properties": {"taskId": 1688, "taskX": 59964, "taskY": 146632, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6519775215705, 20.8870414379975], [-97.6519775215705, 20.8883244778952], [-97.6506042305551, 20.8883244778952], [-97.6506042305551, 20.8870414379975], [-97.6519775215705, 20.8870414379975]]]]}, "properties": {"taskId": 1686, "taskX": 59964, "taskY": 146630, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6512908760628, 20.886399913937], [-97.6512908760628, 20.8870414379975], [-97.6506042305551, 20.8870414379975], [-97.6506042305551, 20.886399913937], [-97.6512908760628, 20.886399913937]]]]}, "properties": {"taskId": 1685, "taskX": 119929, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6512908760628, 20.8857583871356], [-97.6512908760628, 20.886399913937], [-97.6506042305551, 20.886399913937], [-97.6506042305551, 20.8857583871356], [-97.6512908760628, 20.8857583871356]]]]}, "properties": {"taskId": 1684, "taskX": 119929, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6519775215705, 20.886399913937], [-97.6519775215705, 20.8870414379975], [-97.6512908760628, 20.8870414379975], [-97.6512908760628, 20.886399913937], [-97.6519775215705, 20.886399913937]]]]}, "properties": {"taskId": 1683, "taskX": 119928, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6519775215705, 20.8857583871356], [-97.6519775215705, 20.886399913937], [-97.6512908760628, 20.886399913937], [-97.6512908760628, 20.8857583871356], [-97.6519775215705, 20.8857583871356]]]]}, "properties": {"taskId": 1682, "taskX": 119928, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6512908760628, 20.8851168575932], [-97.6512908760628, 20.8857583871356], [-97.6506042305551, 20.8857583871356], [-97.6506042305551, 20.8851168575932], [-97.6512908760628, 20.8851168575932]]]]}, "properties": {"taskId": 1681, "taskX": 119929, "taskY": 293257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6512908760628, 20.8844753253101], [-97.6512908760628, 20.8851168575932], [-97.6506042305551, 20.8851168575932], [-97.6506042305551, 20.8844753253101], [-97.6512908760628, 20.8844753253101]]]]}, "properties": {"taskId": 1680, "taskX": 119929, "taskY": 293256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6519775215705, 20.8851168575932], [-97.6519775215705, 20.8857583871356], [-97.6512908760628, 20.8857583871356], [-97.6512908760628, 20.8851168575932], [-97.6519775215705, 20.8851168575932]]]]}, "properties": {"taskId": 1679, "taskX": 119928, "taskY": 293257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6519775215705, 20.8844753253101], [-97.6519775215705, 20.8851168575932], [-97.6512908760628, 20.8851168575932], [-97.6512908760628, 20.8844753253101], [-97.6519775215705, 20.8844753253101]]]]}, "properties": {"taskId": 1678, "taskX": 119928, "taskY": 293256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6533508125859, 20.8934565278341], [-97.6533508125859, 20.8947395129029], [-97.6519775215705, 20.8947395129029], [-97.6519775215705, 20.8934565278341], [-97.6533508125859, 20.8934565278341]]]]}, "properties": {"taskId": 1676, "taskX": 59963, "taskY": 146635, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6533508125859, 20.8921735317983], [-97.6533508125859, 20.8934565278341], [-97.6519775215705, 20.8934565278341], [-97.6519775215705, 20.8921735317983], [-97.6533508125859, 20.8921735317983]]]]}, "properties": {"taskId": 1675, "taskX": 59963, "taskY": 146634, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6533508125859, 20.8896075068283], [-97.6533508125859, 20.8908905247962], [-97.6519775215705, 20.8908905247962], [-97.6519775215705, 20.8896075068283], [-97.6533508125859, 20.8896075068283]]]]}, "properties": {"taskId": 1673, "taskX": 59963, "taskY": 146632, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6533508125859, 20.8883244778952], [-97.6533508125859, 20.8896075068283], [-97.6519775215705, 20.8896075068283], [-97.6519775215705, 20.8883244778952], [-97.6533508125859, 20.8883244778952]]]]}, "properties": {"taskId": 1672, "taskX": 59963, "taskY": 146631, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6533508125859, 20.8870414379975], [-97.6533508125859, 20.8883244778952], [-97.6519775215705, 20.8883244778952], [-97.6519775215705, 20.8870414379975], [-97.6533508125859, 20.8870414379975]]]]}, "properties": {"taskId": 1671, "taskX": 59963, "taskY": 146630, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6526641670782, 20.8857583871356], [-97.6526641670782, 20.886399913937], [-97.6519775215705, 20.886399913937], [-97.6519775215705, 20.8857583871356], [-97.6526641670782, 20.8857583871356]]]]}, "properties": {"taskId": 1669, "taskX": 119927, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6533508125859, 20.886399913937], [-97.6533508125859, 20.8870414379975], [-97.6526641670782, 20.8870414379975], [-97.6526641670782, 20.886399913937], [-97.6533508125859, 20.886399913937]]]]}, "properties": {"taskId": 1668, "taskX": 119926, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6533508125859, 20.8857583871356], [-97.6533508125859, 20.886399913937], [-97.6526641670782, 20.886399913937], [-97.6526641670782, 20.8857583871356], [-97.6533508125859, 20.8857583871356]]]]}, "properties": {"taskId": 1667, "taskX": 119926, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6526641670782, 20.8851168575932], [-97.6526641670782, 20.8857583871356], [-97.6519775215705, 20.8857583871356], [-97.6519775215705, 20.8851168575932], [-97.6526641670782, 20.8851168575932]]]]}, "properties": {"taskId": 1666, "taskX": 119927, "taskY": 293257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6526641670782, 20.8844753253101], [-97.6526641670782, 20.8851168575932], [-97.6519775215705, 20.8851168575932], [-97.6519775215705, 20.8844753253101], [-97.6526641670782, 20.8844753253101]]]]}, "properties": {"taskId": 1665, "taskX": 119927, "taskY": 293256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6533508125859, 20.8851168575932], [-97.6533508125859, 20.8857583871356], [-97.6526641670782, 20.8857583871356], [-97.6526641670782, 20.8851168575932], [-97.6533508125859, 20.8851168575932]]]]}, "properties": {"taskId": 1664, "taskX": 119926, "taskY": 293257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6533508125859, 20.8831922525216], [-97.6533508125859, 20.8844753253101], [-97.6519775215705, 20.8844753253101], [-97.6519775215705, 20.8831922525216], [-97.6533508125859, 20.8831922525216]]]]}, "properties": {"taskId": 1662, "taskX": 59963, "taskY": 146627, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6547241036012, 20.8947395129029], [-97.6547241036012, 20.8960224870044], [-97.6533508125859, 20.8960224870044], [-97.6533508125859, 20.8947395129029], [-97.6547241036012, 20.8947395129029]]]]}, "properties": {"taskId": 1661, "taskX": 59962, "taskY": 146636, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6547241036012, 20.8934565278341], [-97.6547241036012, 20.8947395129029], [-97.6533508125859, 20.8947395129029], [-97.6533508125859, 20.8934565278341], [-97.6547241036012, 20.8934565278341]]]]}, "properties": {"taskId": 1660, "taskX": 59962, "taskY": 146635, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6547241036012, 20.8921735317983], [-97.6547241036012, 20.8934565278341], [-97.6533508125859, 20.8934565278341], [-97.6533508125859, 20.8921735317983], [-97.6547241036012, 20.8921735317983]]]]}, "properties": {"taskId": 1659, "taskX": 59962, "taskY": 146634, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6540374580935, 20.891532029668], [-97.6540374580935, 20.8921735317983], [-97.6533508125859, 20.8921735317983], [-97.6533508125859, 20.891532029668], [-97.6540374580935, 20.891532029668]]]]}, "properties": {"taskId": 1658, "taskX": 119925, "taskY": 293267, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6547241036012, 20.891532029668], [-97.6547241036012, 20.8921735317983], [-97.6540374580935, 20.8921735317983], [-97.6540374580935, 20.891532029668], [-97.6547241036012, 20.891532029668]]]]}, "properties": {"taskId": 1656, "taskX": 119924, "taskY": 293267, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6547241036012, 20.8908905247962], [-97.6547241036012, 20.891532029668], [-97.6540374580935, 20.891532029668], [-97.6540374580935, 20.8908905247962], [-97.6547241036012, 20.8908905247962]]]]}, "properties": {"taskId": 1655, "taskX": 119924, "taskY": 293266, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6540374580935, 20.890249017183], [-97.6540374580935, 20.8908905247962], [-97.6533508125859, 20.8908905247962], [-97.6533508125859, 20.890249017183], [-97.6540374580935, 20.890249017183]]]]}, "properties": {"taskId": 1654, "taskX": 119925, "taskY": 293265, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6540374580935, 20.8896075068283], [-97.6540374580935, 20.890249017183], [-97.6533508125859, 20.890249017183], [-97.6533508125859, 20.8896075068283], [-97.6540374580935, 20.8896075068283]]]]}, "properties": {"taskId": 1653, "taskX": 119925, "taskY": 293264, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6547241036012, 20.8896075068283], [-97.6547241036012, 20.890249017183], [-97.6540374580935, 20.890249017183], [-97.6540374580935, 20.8896075068283], [-97.6547241036012, 20.8896075068283]]]]}, "properties": {"taskId": 1651, "taskX": 119924, "taskY": 293264, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6540374580935, 20.8889659937324], [-97.6540374580935, 20.8896075068283], [-97.6533508125859, 20.8896075068283], [-97.6533508125859, 20.8889659937324], [-97.6540374580935, 20.8889659937324]]]]}, "properties": {"taskId": 1650, "taskX": 119925, "taskY": 293263, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6540374580935, 20.8883244778952], [-97.6540374580935, 20.8889659937324], [-97.6533508125859, 20.8889659937324], [-97.6533508125859, 20.8883244778952], [-97.6540374580935, 20.8883244778952]]]]}, "properties": {"taskId": 1649, "taskX": 119925, "taskY": 293262, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6547241036012, 20.8889659937324], [-97.6547241036012, 20.8896075068283], [-97.6540374580935, 20.8896075068283], [-97.6540374580935, 20.8889659937324], [-97.6547241036012, 20.8889659937324]]]]}, "properties": {"taskId": 1648, "taskX": 119924, "taskY": 293263, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6540374580935, 20.8876829593169], [-97.6540374580935, 20.8883244778952], [-97.6533508125859, 20.8883244778952], [-97.6533508125859, 20.8876829593169], [-97.6540374580935, 20.8876829593169]]]]}, "properties": {"taskId": 1646, "taskX": 119925, "taskY": 293261, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6540374580935, 20.8870414379975], [-97.6540374580935, 20.8876829593169], [-97.6533508125859, 20.8876829593169], [-97.6533508125859, 20.8870414379975], [-97.6540374580935, 20.8870414379975]]]]}, "properties": {"taskId": 1645, "taskX": 119925, "taskY": 293260, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6547241036012, 20.8870414379975], [-97.6547241036012, 20.8876829593169], [-97.6540374580935, 20.8876829593169], [-97.6540374580935, 20.8870414379975], [-97.6547241036012, 20.8870414379975]]]]}, "properties": {"taskId": 1643, "taskX": 119924, "taskY": 293260, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6540374580935, 20.886399913937], [-97.6540374580935, 20.8870414379975], [-97.6533508125859, 20.8870414379975], [-97.6533508125859, 20.886399913937], [-97.6540374580935, 20.886399913937]]]]}, "properties": {"taskId": 1642, "taskX": 119925, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6540374580935, 20.8857583871356], [-97.6540374580935, 20.886399913937], [-97.6533508125859, 20.886399913937], [-97.6533508125859, 20.8857583871356], [-97.6540374580935, 20.8857583871356]]]]}, "properties": {"taskId": 1641, "taskX": 119925, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6547241036012, 20.886399913937], [-97.6547241036012, 20.8870414379975], [-97.6540374580935, 20.8870414379975], [-97.6540374580935, 20.886399913937], [-97.6547241036012, 20.886399913937]]]]}, "properties": {"taskId": 1640, "taskX": 119924, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6547241036012, 20.8857583871356], [-97.6547241036012, 20.886399913937], [-97.6540374580935, 20.886399913937], [-97.6540374580935, 20.8857583871356], [-97.6547241036012, 20.8857583871356]]]]}, "properties": {"taskId": 1639, "taskX": 119924, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6540374580935, 20.8851168575932], [-97.6540374580935, 20.8857583871356], [-97.6533508125859, 20.8857583871356], [-97.6533508125859, 20.8851168575932], [-97.6540374580935, 20.8851168575932]]]]}, "properties": {"taskId": 1638, "taskX": 119925, "taskY": 293257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6540374580935, 20.8844753253101], [-97.6540374580935, 20.8851168575932], [-97.6533508125859, 20.8851168575932], [-97.6533508125859, 20.8844753253101], [-97.6540374580935, 20.8844753253101]]]]}, "properties": {"taskId": 1637, "taskX": 119925, "taskY": 293256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6547241036012, 20.8851168575932], [-97.6547241036012, 20.8857583871356], [-97.6540374580935, 20.8857583871356], [-97.6540374580935, 20.8851168575932], [-97.6547241036012, 20.8851168575932]]]]}, "properties": {"taskId": 1636, "taskX": 119924, "taskY": 293257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6547241036012, 20.8844753253101], [-97.6547241036012, 20.8851168575932], [-97.6540374580935, 20.8851168575932], [-97.6540374580935, 20.8844753253101], [-97.6547241036012, 20.8844753253101]]]]}, "properties": {"taskId": 1635, "taskX": 119924, "taskY": 293256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6547241036012, 20.8831922525216], [-97.6547241036012, 20.8844753253101], [-97.6533508125859, 20.8844753253101], [-97.6533508125859, 20.8831922525216], [-97.6547241036012, 20.8831922525216]]]]}, "properties": {"taskId": 1634, "taskX": 59962, "taskY": 146627, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6554107491089, 20.8966639699422], [-97.6554107491089, 20.8973054501379], [-97.6547241036012, 20.8973054501379], [-97.6547241036012, 20.8966639699422], [-97.6554107491089, 20.8966639699422]]]]}, "properties": {"taskId": 1632, "taskX": 119923, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6554107491089, 20.8960224870044], [-97.6554107491089, 20.8966639699422], [-97.6547241036012, 20.8966639699422], [-97.6547241036012, 20.8960224870044], [-97.6554107491089, 20.8960224870044]]]]}, "properties": {"taskId": 1631, "taskX": 119923, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6560973946166, 20.8966639699422], [-97.6560973946166, 20.8973054501379], [-97.6554107491089, 20.8973054501379], [-97.6554107491089, 20.8966639699422], [-97.6560973946166, 20.8966639699422]]]]}, "properties": {"taskId": 1630, "taskX": 119922, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6560973946166, 20.8960224870044], [-97.6560973946166, 20.8966639699422], [-97.6554107491089, 20.8966639699422], [-97.6554107491089, 20.8960224870044], [-97.6560973946166, 20.8960224870044]]]]}, "properties": {"taskId": 1629, "taskX": 119922, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6554107491089, 20.8953810013247], [-97.6554107491089, 20.8960224870044], [-97.6547241036012, 20.8960224870044], [-97.6547241036012, 20.8953810013247], [-97.6554107491089, 20.8953810013247]]]]}, "properties": {"taskId": 1628, "taskX": 119923, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6554107491089, 20.8947395129029], [-97.6554107491089, 20.8953810013247], [-97.6547241036012, 20.8953810013247], [-97.6547241036012, 20.8947395129029], [-97.6554107491089, 20.8947395129029]]]]}, "properties": {"taskId": 1627, "taskX": 119923, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6560973946166, 20.8953810013247], [-97.6560973946166, 20.8960224870044], [-97.6554107491089, 20.8960224870044], [-97.6554107491089, 20.8953810013247], [-97.6560973946166, 20.8953810013247]]]]}, "properties": {"taskId": 1626, "taskX": 119922, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6554107491089, 20.8940980217394], [-97.6554107491089, 20.8947395129029], [-97.6547241036012, 20.8947395129029], [-97.6547241036012, 20.8940980217394], [-97.6554107491089, 20.8940980217394]]]]}, "properties": {"taskId": 1624, "taskX": 119923, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6554107491089, 20.8934565278341], [-97.6554107491089, 20.8940980217394], [-97.6547241036012, 20.8940980217394], [-97.6547241036012, 20.8934565278341], [-97.6554107491089, 20.8934565278341]]]]}, "properties": {"taskId": 1623, "taskX": 119923, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6560973946166, 20.8940980217394], [-97.6560973946166, 20.8947395129029], [-97.6554107491089, 20.8947395129029], [-97.6554107491089, 20.8940980217394], [-97.6560973946166, 20.8940980217394]]]]}, "properties": {"taskId": 1622, "taskX": 119922, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6560973946166, 20.8934565278341], [-97.6560973946166, 20.8940980217394], [-97.6554107491089, 20.8940980217394], [-97.6554107491089, 20.8934565278341], [-97.6560973946166, 20.8934565278341]]]]}, "properties": {"taskId": 1621, "taskX": 119922, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6560973946166, 20.8921735317983], [-97.6560973946166, 20.8934565278341], [-97.6547241036012, 20.8934565278341], [-97.6547241036012, 20.8921735317983], [-97.6560973946166, 20.8921735317983]]]]}, "properties": {"taskId": 1620, "taskX": 59961, "taskY": 146634, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6554107491089, 20.891532029668], [-97.6554107491089, 20.8921735317983], [-97.6547241036012, 20.8921735317983], [-97.6547241036012, 20.891532029668], [-97.6554107491089, 20.891532029668]]]]}, "properties": {"taskId": 1619, "taskX": 119923, "taskY": 293267, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6554107491089, 20.8908905247962], [-97.6554107491089, 20.891532029668], [-97.6547241036012, 20.891532029668], [-97.6547241036012, 20.8908905247962], [-97.6554107491089, 20.8908905247962]]]]}, "properties": {"taskId": 1618, "taskX": 119923, "taskY": 293266, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6560973946166, 20.891532029668], [-97.6560973946166, 20.8921735317983], [-97.6554107491089, 20.8921735317983], [-97.6554107491089, 20.891532029668], [-97.6560973946166, 20.891532029668]]]]}, "properties": {"taskId": 1617, "taskX": 119922, "taskY": 293267, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6560973946166, 20.8908905247962], [-97.6560973946166, 20.891532029668], [-97.6554107491089, 20.891532029668], [-97.6554107491089, 20.8908905247962], [-97.6560973946166, 20.8908905247962]]]]}, "properties": {"taskId": 1616, "taskX": 119922, "taskY": 293266, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6554107491089, 20.890249017183], [-97.6554107491089, 20.8908905247962], [-97.6547241036012, 20.8908905247962], [-97.6547241036012, 20.890249017183], [-97.6554107491089, 20.890249017183]]]]}, "properties": {"taskId": 1615, "taskX": 119923, "taskY": 293265, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6554107491089, 20.8896075068283], [-97.6554107491089, 20.890249017183], [-97.6547241036012, 20.890249017183], [-97.6547241036012, 20.8896075068283], [-97.6554107491089, 20.8896075068283]]]]}, "properties": {"taskId": 1614, "taskX": 119923, "taskY": 293264, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6560973946166, 20.890249017183], [-97.6560973946166, 20.8908905247962], [-97.6554107491089, 20.8908905247962], [-97.6554107491089, 20.890249017183], [-97.6560973946166, 20.890249017183]]]]}, "properties": {"taskId": 1613, "taskX": 119922, "taskY": 293265, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6560973946166, 20.8896075068283], [-97.6560973946166, 20.890249017183], [-97.6554107491089, 20.890249017183], [-97.6554107491089, 20.8896075068283], [-97.6560973946166, 20.8896075068283]]]]}, "properties": {"taskId": 1612, "taskX": 119922, "taskY": 293264, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6554107491089, 20.8889659937324], [-97.6554107491089, 20.8896075068283], [-97.6547241036012, 20.8896075068283], [-97.6547241036012, 20.8889659937324], [-97.6554107491089, 20.8889659937324]]]]}, "properties": {"taskId": 1611, "taskX": 119923, "taskY": 293263, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6554107491089, 20.8883244778952], [-97.6554107491089, 20.8889659937324], [-97.6547241036012, 20.8889659937324], [-97.6547241036012, 20.8883244778952], [-97.6554107491089, 20.8883244778952]]]]}, "properties": {"taskId": 1610, "taskX": 119923, "taskY": 293262, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6560973946166, 20.8889659937324], [-97.6560973946166, 20.8896075068283], [-97.6554107491089, 20.8896075068283], [-97.6554107491089, 20.8889659937324], [-97.6560973946166, 20.8889659937324]]]]}, "properties": {"taskId": 1609, "taskX": 119922, "taskY": 293263, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6560973946166, 20.8883244778952], [-97.6560973946166, 20.8889659937324], [-97.6554107491089, 20.8889659937324], [-97.6554107491089, 20.8883244778952], [-97.6560973946166, 20.8883244778952]]]]}, "properties": {"taskId": 1608, "taskX": 119922, "taskY": 293262, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6554107491089, 20.8876829593169], [-97.6554107491089, 20.8883244778952], [-97.6547241036012, 20.8883244778952], [-97.6547241036012, 20.8876829593169], [-97.6554107491089, 20.8876829593169]]]]}, "properties": {"taskId": 1607, "taskX": 119923, "taskY": 293261, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6554107491089, 20.8870414379975], [-97.6554107491089, 20.8876829593169], [-97.6547241036012, 20.8876829593169], [-97.6547241036012, 20.8870414379975], [-97.6554107491089, 20.8870414379975]]]]}, "properties": {"taskId": 1606, "taskX": 119923, "taskY": 293260, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6560973946166, 20.8876829593169], [-97.6560973946166, 20.8883244778952], [-97.6554107491089, 20.8883244778952], [-97.6554107491089, 20.8876829593169], [-97.6560973946166, 20.8876829593169]]]]}, "properties": {"taskId": 1605, "taskX": 119922, "taskY": 293261, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6560973946166, 20.8870414379975], [-97.6560973946166, 20.8876829593169], [-97.6554107491089, 20.8876829593169], [-97.6554107491089, 20.8870414379975], [-97.6560973946166, 20.8870414379975]]]]}, "properties": {"taskId": 1604, "taskX": 119922, "taskY": 293260, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6554107491089, 20.886399913937], [-97.6554107491089, 20.8870414379975], [-97.6547241036012, 20.8870414379975], [-97.6547241036012, 20.886399913937], [-97.6554107491089, 20.886399913937]]]]}, "properties": {"taskId": 1603, "taskX": 119923, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6560973946166, 20.886399913937], [-97.6560973946166, 20.8870414379975], [-97.6554107491089, 20.8870414379975], [-97.6554107491089, 20.886399913937], [-97.6560973946166, 20.886399913937]]]]}, "properties": {"taskId": 1601, "taskX": 119922, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6560973946166, 20.8857583871356], [-97.6560973946166, 20.886399913937], [-97.6554107491089, 20.886399913937], [-97.6554107491089, 20.8857583871356], [-97.6560973946166, 20.8857583871356]]]]}, "properties": {"taskId": 1600, "taskX": 119922, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6554107491089, 20.8844753253101], [-97.6554107491089, 20.8851168575932], [-97.6547241036012, 20.8851168575932], [-97.6547241036012, 20.8844753253101], [-97.6554107491089, 20.8844753253101]]]]}, "properties": {"taskId": 1598, "taskX": 119923, "taskY": 293256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6560973946166, 20.8844753253101], [-97.6560973946166, 20.8851168575932], [-97.6554107491089, 20.8851168575932], [-97.6554107491089, 20.8844753253101], [-97.6560973946166, 20.8844753253101]]]]}, "properties": {"taskId": 1596, "taskX": 119922, "taskY": 293256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6554107491089, 20.8838337902862], [-97.6554107491089, 20.8844753253101], [-97.6547241036012, 20.8844753253101], [-97.6547241036012, 20.8838337902862], [-97.6554107491089, 20.8838337902862]]]]}, "properties": {"taskId": 1595, "taskX": 119923, "taskY": 293255, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6554107491089, 20.8831922525216], [-97.6554107491089, 20.8838337902862], [-97.6547241036012, 20.8838337902862], [-97.6547241036012, 20.8831922525216], [-97.6554107491089, 20.8831922525216]]]]}, "properties": {"taskId": 1594, "taskX": 119923, "taskY": 293254, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6560973946166, 20.8838337902862], [-97.6560973946166, 20.8844753253101], [-97.6554107491089, 20.8844753253101], [-97.6554107491089, 20.8838337902862], [-97.6560973946166, 20.8838337902862]]]]}, "properties": {"taskId": 1593, "taskX": 119922, "taskY": 293255, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6567840401243, 20.8966639699422], [-97.6567840401243, 20.8973054501379], [-97.6560973946166, 20.8973054501379], [-97.6560973946166, 20.8966639699422], [-97.6567840401243, 20.8966639699422]]]]}, "properties": {"taskId": 1590, "taskX": 119921, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6567840401243, 20.8960224870044], [-97.6567840401243, 20.8966639699422], [-97.6560973946166, 20.8966639699422], [-97.6560973946166, 20.8960224870044], [-97.6567840401243, 20.8960224870044]]]]}, "properties": {"taskId": 1589, "taskX": 119921, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.657470685632, 20.8966639699422], [-97.657470685632, 20.8973054501379], [-97.6567840401243, 20.8973054501379], [-97.6567840401243, 20.8966639699422], [-97.657470685632, 20.8966639699422]]]]}, "properties": {"taskId": 1588, "taskX": 119920, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.657470685632, 20.8960224870044], [-97.657470685632, 20.8966639699422], [-97.6567840401243, 20.8966639699422], [-97.6567840401243, 20.8960224870044], [-97.657470685632, 20.8960224870044]]]]}, "properties": {"taskId": 1587, "taskX": 119920, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6567840401243, 20.8953810013247], [-97.6567840401243, 20.8960224870044], [-97.6560973946166, 20.8960224870044], [-97.6560973946166, 20.8953810013247], [-97.6567840401243, 20.8953810013247]]]]}, "properties": {"taskId": 1586, "taskX": 119921, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6581573311397, 20.8908905247962], [-97.6581573311397, 20.891532029668], [-97.657470685632, 20.891532029668], [-97.657470685632, 20.8908905247962], [-97.6581573311397, 20.8908905247962]]]]}, "properties": {"taskId": 1528, "taskX": 119919, "taskY": 293266, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6588439766474, 20.891532029668], [-97.6588439766474, 20.8921735317983], [-97.6581573311397, 20.8921735317983], [-97.6581573311397, 20.891532029668], [-97.6588439766474, 20.891532029668]]]]}, "properties": {"taskId": 1527, "taskX": 119918, "taskY": 293267, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6588439766474, 20.8908905247962], [-97.6588439766474, 20.891532029668], [-97.6581573311397, 20.891532029668], [-97.6581573311397, 20.8908905247962], [-97.6588439766474, 20.8908905247962]]]]}, "properties": {"taskId": 1526, "taskX": 119918, "taskY": 293266, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6581573311397, 20.890249017183], [-97.6581573311397, 20.8908905247962], [-97.657470685632, 20.8908905247962], [-97.657470685632, 20.890249017183], [-97.6581573311397, 20.890249017183]]]]}, "properties": {"taskId": 1525, "taskX": 119919, "taskY": 293265, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6581573311397, 20.8896075068283], [-97.6581573311397, 20.890249017183], [-97.657470685632, 20.890249017183], [-97.657470685632, 20.8896075068283], [-97.6581573311397, 20.8896075068283]]]]}, "properties": {"taskId": 1524, "taskX": 119919, "taskY": 293264, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6588439766474, 20.890249017183], [-97.6588439766474, 20.8908905247962], [-97.6581573311397, 20.8908905247962], [-97.6581573311397, 20.890249017183], [-97.6588439766474, 20.890249017183]]]]}, "properties": {"taskId": 1523, "taskX": 119918, "taskY": 293265, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6581573311397, 20.8889659937324], [-97.6581573311397, 20.8896075068283], [-97.657470685632, 20.8896075068283], [-97.657470685632, 20.8889659937324], [-97.6581573311397, 20.8889659937324]]]]}, "properties": {"taskId": 1521, "taskX": 119919, "taskY": 293263, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6581573311397, 20.8883244778952], [-97.6581573311397, 20.8889659937324], [-97.657470685632, 20.8889659937324], [-97.657470685632, 20.8883244778952], [-97.6581573311397, 20.8883244778952]]]]}, "properties": {"taskId": 1520, "taskX": 119919, "taskY": 293262, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6588439766474, 20.8883244778952], [-97.6588439766474, 20.8889659937324], [-97.6581573311397, 20.8889659937324], [-97.6581573311397, 20.8883244778952], [-97.6588439766474, 20.8883244778952]]]]}, "properties": {"taskId": 1518, "taskX": 119918, "taskY": 293262, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6581573311397, 20.8876829593169], [-97.6581573311397, 20.8883244778952], [-97.657470685632, 20.8883244778952], [-97.657470685632, 20.8876829593169], [-97.6581573311397, 20.8876829593169]]]]}, "properties": {"taskId": 1517, "taskX": 119919, "taskY": 293261, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6581573311397, 20.8870414379975], [-97.6581573311397, 20.8876829593169], [-97.657470685632, 20.8876829593169], [-97.657470685632, 20.8870414379975], [-97.6581573311397, 20.8870414379975]]]]}, "properties": {"taskId": 1516, "taskX": 119919, "taskY": 293260, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6588439766474, 20.8876829593169], [-97.6588439766474, 20.8883244778952], [-97.6581573311397, 20.8883244778952], [-97.6581573311397, 20.8876829593169], [-97.6588439766474, 20.8876829593169]]]]}, "properties": {"taskId": 1515, "taskX": 119918, "taskY": 293261, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6588439766474, 20.8870414379975], [-97.6588439766474, 20.8876829593169], [-97.6581573311397, 20.8876829593169], [-97.6581573311397, 20.8870414379975], [-97.6588439766474, 20.8870414379975]]]]}, "properties": {"taskId": 1514, "taskX": 119918, "taskY": 293260, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6581573311397, 20.886399913937], [-97.6581573311397, 20.8870414379975], [-97.657470685632, 20.8870414379975], [-97.657470685632, 20.886399913937], [-97.6581573311397, 20.886399913937]]]]}, "properties": {"taskId": 1513, "taskX": 119919, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6588439766474, 20.886399913937], [-97.6588439766474, 20.8870414379975], [-97.6581573311397, 20.8870414379975], [-97.6581573311397, 20.886399913937], [-97.6588439766474, 20.886399913937]]]]}, "properties": {"taskId": 1511, "taskX": 119918, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6581573311397, 20.8851168575932], [-97.6581573311397, 20.8857583871356], [-97.657470685632, 20.8857583871356], [-97.657470685632, 20.8851168575932], [-97.6581573311397, 20.8851168575932]]]]}, "properties": {"taskId": 1509, "taskX": 119919, "taskY": 293257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6581573311397, 20.8844753253101], [-97.6581573311397, 20.8851168575932], [-97.657470685632, 20.8851168575932], [-97.657470685632, 20.8844753253101], [-97.6581573311397, 20.8844753253101]]]]}, "properties": {"taskId": 1508, "taskX": 119919, "taskY": 293256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6588439766474, 20.8851168575932], [-97.6588439766474, 20.8857583871356], [-97.6581573311397, 20.8857583871356], [-97.6581573311397, 20.8851168575932], [-97.6588439766474, 20.8851168575932]]]]}, "properties": {"taskId": 1507, "taskX": 119918, "taskY": 293257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6602172676627, 20.8973054501379], [-97.6602172676627, 20.8985884023029], [-97.6588439766474, 20.8985884023029], [-97.6588439766474, 20.8973054501379], [-97.6602172676627, 20.8973054501379]]]]}, "properties": {"taskId": 1504, "taskX": 59958, "taskY": 146638, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6595306221551, 20.8966639699422], [-97.6595306221551, 20.8973054501379], [-97.6588439766474, 20.8973054501379], [-97.6588439766474, 20.8966639699422], [-97.6595306221551, 20.8966639699422]]]]}, "properties": {"taskId": 1503, "taskX": 119917, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6595306221551, 20.8960224870044], [-97.6595306221551, 20.8966639699422], [-97.6588439766474, 20.8966639699422], [-97.6588439766474, 20.8960224870044], [-97.6595306221551, 20.8960224870044]]]]}, "properties": {"taskId": 1502, "taskX": 119917, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6602172676627, 20.8966639699422], [-97.6602172676627, 20.8973054501379], [-97.6595306221551, 20.8973054501379], [-97.6595306221551, 20.8966639699422], [-97.6602172676627, 20.8966639699422]]]]}, "properties": {"taskId": 1501, "taskX": 119916, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6595306221551, 20.8953810013247], [-97.6595306221551, 20.8960224870044], [-97.6588439766474, 20.8960224870044], [-97.6588439766474, 20.8953810013247], [-97.6595306221551, 20.8953810013247]]]]}, "properties": {"taskId": 1499, "taskX": 119917, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6595306221551, 20.8947395129029], [-97.6595306221551, 20.8953810013247], [-97.6588439766474, 20.8953810013247], [-97.6588439766474, 20.8947395129029], [-97.6595306221551, 20.8947395129029]]]]}, "properties": {"taskId": 1498, "taskX": 119917, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6602172676627, 20.8953810013247], [-97.6602172676627, 20.8960224870044], [-97.6595306221551, 20.8960224870044], [-97.6595306221551, 20.8953810013247], [-97.6602172676627, 20.8953810013247]]]]}, "properties": {"taskId": 1497, "taskX": 119916, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6602172676627, 20.8947395129029], [-97.6602172676627, 20.8953810013247], [-97.6595306221551, 20.8953810013247], [-97.6595306221551, 20.8947395129029], [-97.6602172676627, 20.8947395129029]]]]}, "properties": {"taskId": 1496, "taskX": 119916, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6595306221551, 20.8934565278341], [-97.6595306221551, 20.8940980217394], [-97.6588439766474, 20.8940980217394], [-97.6588439766474, 20.8934565278341], [-97.6595306221551, 20.8934565278341]]]]}, "properties": {"taskId": 1494, "taskX": 119917, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6602172676627, 20.8940980217394], [-97.6602172676627, 20.8947395129029], [-97.6595306221551, 20.8947395129029], [-97.6595306221551, 20.8940980217394], [-97.6602172676627, 20.8940980217394]]]]}, "properties": {"taskId": 1493, "taskX": 119916, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6602172676627, 20.8934565278341], [-97.6602172676627, 20.8940980217394], [-97.6595306221551, 20.8940980217394], [-97.6595306221551, 20.8934565278341], [-97.6602172676627, 20.8934565278341]]]]}, "properties": {"taskId": 1492, "taskX": 119916, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6595306221551, 20.892815031187], [-97.6595306221551, 20.8934565278341], [-97.6588439766474, 20.8934565278341], [-97.6588439766474, 20.892815031187], [-97.6595306221551, 20.892815031187]]]]}, "properties": {"taskId": 1491, "taskX": 119917, "taskY": 293269, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6595306221551, 20.8921735317983], [-97.6595306221551, 20.892815031187], [-97.6588439766474, 20.892815031187], [-97.6588439766474, 20.8921735317983], [-97.6595306221551, 20.8921735317983]]]]}, "properties": {"taskId": 1490, "taskX": 119917, "taskY": 293268, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6602172676627, 20.892815031187], [-97.6602172676627, 20.8934565278341], [-97.6595306221551, 20.8934565278341], [-97.6595306221551, 20.892815031187], [-97.6602172676627, 20.892815031187]]]]}, "properties": {"taskId": 1489, "taskX": 119916, "taskY": 293269, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6602172676627, 20.8921735317983], [-97.6602172676627, 20.892815031187], [-97.6595306221551, 20.892815031187], [-97.6595306221551, 20.8921735317983], [-97.6602172676627, 20.8921735317983]]]]}, "properties": {"taskId": 1488, "taskX": 119916, "taskY": 293268, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6595306221551, 20.891532029668], [-97.6595306221551, 20.8921735317983], [-97.6588439766474, 20.8921735317983], [-97.6588439766474, 20.891532029668], [-97.6595306221551, 20.891532029668]]]]}, "properties": {"taskId": 1487, "taskX": 119917, "taskY": 293267, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6602172676627, 20.891532029668], [-97.6602172676627, 20.8921735317983], [-97.6595306221551, 20.8921735317983], [-97.6595306221551, 20.891532029668], [-97.6602172676627, 20.891532029668]]]]}, "properties": {"taskId": 1485, "taskX": 119916, "taskY": 293267, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6602172676627, 20.8908905247962], [-97.6602172676627, 20.891532029668], [-97.6595306221551, 20.891532029668], [-97.6595306221551, 20.8908905247962], [-97.6602172676627, 20.8908905247962]]]]}, "properties": {"taskId": 1484, "taskX": 119916, "taskY": 293266, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6595306221551, 20.890249017183], [-97.6595306221551, 20.8908905247962], [-97.6588439766474, 20.8908905247962], [-97.6588439766474, 20.890249017183], [-97.6595306221551, 20.890249017183]]]]}, "properties": {"taskId": 1483, "taskX": 119917, "taskY": 293265, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6595306221551, 20.8896075068283], [-97.6595306221551, 20.890249017183], [-97.6588439766474, 20.890249017183], [-97.6588439766474, 20.8896075068283], [-97.6595306221551, 20.8896075068283]]]]}, "properties": {"taskId": 1482, "taskX": 119917, "taskY": 293264, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6602172676627, 20.890249017183], [-97.6602172676627, 20.8908905247962], [-97.6595306221551, 20.8908905247962], [-97.6595306221551, 20.890249017183], [-97.6602172676627, 20.890249017183]]]]}, "properties": {"taskId": 1481, "taskX": 119916, "taskY": 293265, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6602172676627, 20.8896075068283], [-97.6602172676627, 20.890249017183], [-97.6595306221551, 20.890249017183], [-97.6595306221551, 20.8896075068283], [-97.6602172676627, 20.8896075068283]]]]}, "properties": {"taskId": 1480, "taskX": 119916, "taskY": 293264, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6595306221551, 20.8889659937324], [-97.6595306221551, 20.8896075068283], [-97.6588439766474, 20.8896075068283], [-97.6588439766474, 20.8889659937324], [-97.6595306221551, 20.8889659937324]]]]}, "properties": {"taskId": 1479, "taskX": 119917, "taskY": 293263, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6595306221551, 20.8883244778952], [-97.6595306221551, 20.8889659937324], [-97.6588439766474, 20.8889659937324], [-97.6588439766474, 20.8883244778952], [-97.6595306221551, 20.8883244778952]]]]}, "properties": {"taskId": 1478, "taskX": 119917, "taskY": 293262, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6602172676627, 20.8889659937324], [-97.6602172676627, 20.8896075068283], [-97.6595306221551, 20.8896075068283], [-97.6595306221551, 20.8889659937324], [-97.6602172676627, 20.8889659937324]]]]}, "properties": {"taskId": 1477, "taskX": 119916, "taskY": 293263, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6595306221551, 20.8876829593169], [-97.6595306221551, 20.8883244778952], [-97.6588439766474, 20.8883244778952], [-97.6588439766474, 20.8876829593169], [-97.6595306221551, 20.8876829593169]]]]}, "properties": {"taskId": 1475, "taskX": 119917, "taskY": 293261, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6595306221551, 20.8870414379975], [-97.6595306221551, 20.8876829593169], [-97.6588439766474, 20.8876829593169], [-97.6588439766474, 20.8870414379975], [-97.6595306221551, 20.8870414379975]]]]}, "properties": {"taskId": 1474, "taskX": 119917, "taskY": 293260, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6602172676627, 20.8870414379975], [-97.6602172676627, 20.8876829593169], [-97.6595306221551, 20.8876829593169], [-97.6595306221551, 20.8870414379975], [-97.6602172676627, 20.8870414379975]]]]}, "properties": {"taskId": 1472, "taskX": 119916, "taskY": 293260, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6595306221551, 20.886399913937], [-97.6595306221551, 20.8870414379975], [-97.6588439766474, 20.8870414379975], [-97.6588439766474, 20.886399913937], [-97.6595306221551, 20.886399913937]]]]}, "properties": {"taskId": 1471, "taskX": 119917, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6595306221551, 20.8857583871356], [-97.6595306221551, 20.886399913937], [-97.6588439766474, 20.886399913937], [-97.6588439766474, 20.8857583871356], [-97.6595306221551, 20.8857583871356]]]]}, "properties": {"taskId": 1470, "taskX": 119917, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6602172676627, 20.886399913937], [-97.6602172676627, 20.8870414379975], [-97.6595306221551, 20.8870414379975], [-97.6595306221551, 20.886399913937], [-97.6602172676627, 20.886399913937]]]]}, "properties": {"taskId": 1469, "taskX": 119916, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6602172676627, 20.8857583871356], [-97.6602172676627, 20.886399913937], [-97.6595306221551, 20.886399913937], [-97.6595306221551, 20.8857583871356], [-97.6602172676627, 20.8857583871356]]]]}, "properties": {"taskId": 1468, "taskX": 119916, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6595306221551, 20.8851168575932], [-97.6595306221551, 20.8857583871356], [-97.6588439766474, 20.8857583871356], [-97.6588439766474, 20.8851168575932], [-97.6595306221551, 20.8851168575932]]]]}, "properties": {"taskId": 1467, "taskX": 119917, "taskY": 293257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6595306221551, 20.8844753253101], [-97.6595306221551, 20.8851168575932], [-97.6588439766474, 20.8851168575932], [-97.6588439766474, 20.8844753253101], [-97.6595306221551, 20.8844753253101]]]]}, "properties": {"taskId": 1466, "taskX": 119917, "taskY": 293256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6602172676627, 20.8844753253101], [-97.6602172676627, 20.8851168575932], [-97.6595306221551, 20.8851168575932], [-97.6595306221551, 20.8844753253101], [-97.6602172676627, 20.8844753253101]]]]}, "properties": {"taskId": 1464, "taskX": 119916, "taskY": 293256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6602172676627, 20.8831922525216], [-97.6602172676627, 20.8844753253101], [-97.6588439766474, 20.8844753253101], [-97.6588439766474, 20.8831922525216], [-97.6602172676627, 20.8831922525216]]]]}, "properties": {"taskId": 1463, "taskX": 59958, "taskY": 146627, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6615905586781, 20.8973054501379], [-97.6615905586781, 20.8985884023029], [-97.6602172676627, 20.8985884023029], [-97.6602172676627, 20.8973054501379], [-97.6615905586781, 20.8973054501379]]]]}, "properties": {"taskId": 1462, "taskX": 59957, "taskY": 146638, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6615905586781, 20.8960224870044], [-97.6615905586781, 20.8973054501379], [-97.6602172676627, 20.8973054501379], [-97.6602172676627, 20.8960224870044], [-97.6615905586781, 20.8960224870044]]]]}, "properties": {"taskId": 1461, "taskX": 59957, "taskY": 146637, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6615905586781, 20.8953810013247], [-97.6615905586781, 20.8960224870044], [-97.6609039131704, 20.8960224870044], [-97.6609039131704, 20.8953810013247], [-97.6615905586781, 20.8953810013247]]]]}, "properties": {"taskId": 1458, "taskX": 119914, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6615905586781, 20.8947395129029], [-97.6615905586781, 20.8953810013247], [-97.6609039131704, 20.8953810013247], [-97.6609039131704, 20.8947395129029], [-97.6615905586781, 20.8947395129029]]]]}, "properties": {"taskId": 1457, "taskX": 119914, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6609039131704, 20.8940980217394], [-97.6609039131704, 20.8947395129029], [-97.6602172676627, 20.8947395129029], [-97.6602172676627, 20.8940980217394], [-97.6609039131704, 20.8940980217394]]]]}, "properties": {"taskId": 1456, "taskX": 119915, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6609039131704, 20.8934565278341], [-97.6609039131704, 20.8940980217394], [-97.6602172676627, 20.8940980217394], [-97.6602172676627, 20.8934565278341], [-97.6609039131704, 20.8934565278341]]]]}, "properties": {"taskId": 1455, "taskX": 119915, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6615905586781, 20.8940980217394], [-97.6615905586781, 20.8947395129029], [-97.6609039131704, 20.8947395129029], [-97.6609039131704, 20.8940980217394], [-97.6615905586781, 20.8940980217394]]]]}, "properties": {"taskId": 1454, "taskX": 119914, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6615905586781, 20.8934565278341], [-97.6615905586781, 20.8940980217394], [-97.6609039131704, 20.8940980217394], [-97.6609039131704, 20.8934565278341], [-97.6615905586781, 20.8934565278341]]]]}, "properties": {"taskId": 1453, "taskX": 119914, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6609039131704, 20.892815031187], [-97.6609039131704, 20.8934565278341], [-97.6602172676627, 20.8934565278341], [-97.6602172676627, 20.892815031187], [-97.6609039131704, 20.892815031187]]]]}, "properties": {"taskId": 1452, "taskX": 119915, "taskY": 293269, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6609039131704, 20.8921735317983], [-97.6609039131704, 20.892815031187], [-97.6602172676627, 20.892815031187], [-97.6602172676627, 20.8921735317983], [-97.6609039131704, 20.8921735317983]]]]}, "properties": {"taskId": 1451, "taskX": 119915, "taskY": 293268, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6615905586781, 20.892815031187], [-97.6615905586781, 20.8934565278341], [-97.6609039131704, 20.8934565278341], [-97.6609039131704, 20.892815031187], [-97.6615905586781, 20.892815031187]]]]}, "properties": {"taskId": 1450, "taskX": 119914, "taskY": 293269, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6609039131704, 20.8908905247962], [-97.6609039131704, 20.891532029668], [-97.6602172676627, 20.891532029668], [-97.6602172676627, 20.8908905247962], [-97.6609039131704, 20.8908905247962]]]]}, "properties": {"taskId": 1447, "taskX": 119915, "taskY": 293266, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6615905586781, 20.891532029668], [-97.6615905586781, 20.8921735317983], [-97.6609039131704, 20.8921735317983], [-97.6609039131704, 20.891532029668], [-97.6615905586781, 20.891532029668]]]]}, "properties": {"taskId": 1446, "taskX": 119914, "taskY": 293267, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6615905586781, 20.8908905247962], [-97.6615905586781, 20.891532029668], [-97.6609039131704, 20.891532029668], [-97.6609039131704, 20.8908905247962], [-97.6615905586781, 20.8908905247962]]]]}, "properties": {"taskId": 1445, "taskX": 119914, "taskY": 293266, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6609039131704, 20.890249017183], [-97.6609039131704, 20.8908905247962], [-97.6602172676627, 20.8908905247962], [-97.6602172676627, 20.890249017183], [-97.6609039131704, 20.890249017183]]]]}, "properties": {"taskId": 1444, "taskX": 119915, "taskY": 293265, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6609039131704, 20.8896075068283], [-97.6609039131704, 20.890249017183], [-97.6602172676627, 20.890249017183], [-97.6602172676627, 20.8896075068283], [-97.6609039131704, 20.8896075068283]]]]}, "properties": {"taskId": 1443, "taskX": 119915, "taskY": 293264, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6615905586781, 20.890249017183], [-97.6615905586781, 20.8908905247962], [-97.6609039131704, 20.8908905247962], [-97.6609039131704, 20.890249017183], [-97.6615905586781, 20.890249017183]]]]}, "properties": {"taskId": 1442, "taskX": 119914, "taskY": 293265, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6615905586781, 20.8896075068283], [-97.6615905586781, 20.890249017183], [-97.6609039131704, 20.890249017183], [-97.6609039131704, 20.8896075068283], [-97.6615905586781, 20.8896075068283]]]]}, "properties": {"taskId": 1441, "taskX": 119914, "taskY": 293264, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6609039131704, 20.8883244778952], [-97.6609039131704, 20.8889659937324], [-97.6602172676627, 20.8889659937324], [-97.6602172676627, 20.8883244778952], [-97.6609039131704, 20.8883244778952]]]]}, "properties": {"taskId": 1439, "taskX": 119915, "taskY": 293262, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6615905586781, 20.8889659937324], [-97.6615905586781, 20.8896075068283], [-97.6609039131704, 20.8896075068283], [-97.6609039131704, 20.8889659937324], [-97.6615905586781, 20.8889659937324]]]]}, "properties": {"taskId": 1438, "taskX": 119914, "taskY": 293263, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6615905586781, 20.8883244778952], [-97.6615905586781, 20.8889659937324], [-97.6609039131704, 20.8889659937324], [-97.6609039131704, 20.8883244778952], [-97.6615905586781, 20.8883244778952]]]]}, "properties": {"taskId": 1437, "taskX": 119914, "taskY": 293262, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6609039131704, 20.8876829593169], [-97.6609039131704, 20.8883244778952], [-97.6602172676627, 20.8883244778952], [-97.6602172676627, 20.8876829593169], [-97.6609039131704, 20.8876829593169]]]]}, "properties": {"taskId": 1436, "taskX": 119915, "taskY": 293261, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6609039131704, 20.8870414379975], [-97.6609039131704, 20.8876829593169], [-97.6602172676627, 20.8876829593169], [-97.6602172676627, 20.8870414379975], [-97.6609039131704, 20.8870414379975]]]]}, "properties": {"taskId": 1435, "taskX": 119915, "taskY": 293260, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6615905586781, 20.8876829593169], [-97.6615905586781, 20.8883244778952], [-97.6609039131704, 20.8883244778952], [-97.6609039131704, 20.8876829593169], [-97.6615905586781, 20.8876829593169]]]]}, "properties": {"taskId": 1434, "taskX": 119914, "taskY": 293261, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6615905586781, 20.8870414379975], [-97.6615905586781, 20.8876829593169], [-97.6609039131704, 20.8876829593169], [-97.6609039131704, 20.8870414379975], [-97.6615905586781, 20.8870414379975]]]]}, "properties": {"taskId": 1433, "taskX": 119914, "taskY": 293260, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6609039131704, 20.886399913937], [-97.6609039131704, 20.8870414379975], [-97.6602172676627, 20.8870414379975], [-97.6602172676627, 20.886399913937], [-97.6609039131704, 20.886399913937]]]]}, "properties": {"taskId": 1432, "taskX": 119915, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6609039131704, 20.8857583871356], [-97.6609039131704, 20.886399913937], [-97.6602172676627, 20.886399913937], [-97.6602172676627, 20.8857583871356], [-97.6609039131704, 20.8857583871356]]]]}, "properties": {"taskId": 1431, "taskX": 119915, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6615905586781, 20.886399913937], [-97.6615905586781, 20.8870414379975], [-97.6609039131704, 20.8870414379975], [-97.6609039131704, 20.886399913937], [-97.6615905586781, 20.886399913937]]]]}, "properties": {"taskId": 1430, "taskX": 119914, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6615905586781, 20.8857583871356], [-97.6615905586781, 20.886399913937], [-97.6609039131704, 20.886399913937], [-97.6609039131704, 20.8857583871356], [-97.6615905586781, 20.8857583871356]]]]}, "properties": {"taskId": 1429, "taskX": 119914, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6609039131704, 20.8851168575932], [-97.6609039131704, 20.8857583871356], [-97.6602172676627, 20.8857583871356], [-97.6602172676627, 20.8851168575932], [-97.6609039131704, 20.8851168575932]]]]}, "properties": {"taskId": 1428, "taskX": 119915, "taskY": 293257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6609039131704, 20.8844753253101], [-97.6609039131704, 20.8851168575932], [-97.6602172676627, 20.8851168575932], [-97.6602172676627, 20.8844753253101], [-97.6609039131704, 20.8844753253101]]]]}, "properties": {"taskId": 1427, "taskX": 119915, "taskY": 293256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6615905586781, 20.8851168575932], [-97.6615905586781, 20.8857583871356], [-97.6609039131704, 20.8857583871356], [-97.6609039131704, 20.8851168575932], [-97.6615905586781, 20.8851168575932]]]]}, "properties": {"taskId": 1426, "taskX": 119914, "taskY": 293257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6615905586781, 20.8844753253101], [-97.6615905586781, 20.8851168575932], [-97.6609039131704, 20.8851168575932], [-97.6609039131704, 20.8844753253101], [-97.6615905586781, 20.8844753253101]]]]}, "properties": {"taskId": 1425, "taskX": 119914, "taskY": 293256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6615905586781, 20.8831922525216], [-97.6615905586781, 20.8844753253101], [-97.6602172676627, 20.8844753253101], [-97.6602172676627, 20.8831922525216], [-97.6615905586781, 20.8831922525216]]]]}, "properties": {"taskId": 1424, "taskX": 59957, "taskY": 146627, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.919114144775], [-97.6629638496935, 20.920396910391], [-97.6615905586781, 20.920396910391], [-97.6615905586781, 20.919114144775], [-97.6629638496935, 20.919114144775]]]]}, "properties": {"taskId": 1422, "taskX": 59956, "taskY": 146655, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.9178313681812], [-97.6629638496935, 20.919114144775], [-97.6615905586781, 20.919114144775], [-97.6615905586781, 20.9178313681812], [-97.6629638496935, 20.9178313681812]]]]}, "properties": {"taskId": 1421, "taskX": 59956, "taskY": 146654, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.9165485806099], [-97.6629638496935, 20.9178313681812], [-97.6615905586781, 20.9178313681812], [-97.6615905586781, 20.9165485806099], [-97.6629638496935, 20.9165485806099]]]]}, "properties": {"taskId": 1420, "taskX": 59956, "taskY": 146653, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.9139829725378], [-97.6629638496935, 20.9152657820619], [-97.6615905586781, 20.9152657820619], [-97.6615905586781, 20.9139829725378], [-97.6629638496935, 20.9139829725378]]]]}, "properties": {"taskId": 1418, "taskX": 59956, "taskY": 146651, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.9127001520379], [-97.6629638496935, 20.9139829725378], [-97.6615905586781, 20.9139829725378], [-97.6615905586781, 20.9127001520379], [-97.6629638496935, 20.9127001520379]]]]}, "properties": {"taskId": 1417, "taskX": 59956, "taskY": 146650, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.911417320563], [-97.6629638496935, 20.9127001520379], [-97.6615905586781, 20.9127001520379], [-97.6615905586781, 20.911417320563], [-97.6629638496935, 20.911417320563]]]]}, "properties": {"taskId": 1416, "taskX": 59956, "taskY": 146649, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.9088516246899], [-97.6629638496935, 20.9101344781134], [-97.6615905586781, 20.9101344781134], [-97.6615905586781, 20.9088516246899], [-97.6629638496935, 20.9088516246899]]]]}, "properties": {"taskId": 1414, "taskX": 59956, "taskY": 146647, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.9075687602929], [-97.6629638496935, 20.9088516246899], [-97.6615905586781, 20.9088516246899], [-97.6615905586781, 20.9075687602929], [-97.6629638496935, 20.9075687602929]]]]}, "properties": {"taskId": 1413, "taskX": 59956, "taskY": 146646, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.906285884923], [-97.6629638496935, 20.9075687602929], [-97.6615905586781, 20.9075687602929], [-97.6615905586781, 20.906285884923], [-97.6629638496935, 20.906285884923]]]]}, "properties": {"taskId": 1412, "taskX": 59956, "taskY": 146645, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.9050029985807], [-97.6629638496935, 20.906285884923], [-97.6615905586781, 20.906285884923], [-97.6615905586781, 20.9050029985807], [-97.6629638496935, 20.9050029985807]]]]}, "properties": {"taskId": 1411, "taskX": 59956, "taskY": 146644, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.9037201012666], [-97.6629638496935, 20.9050029985807], [-97.6615905586781, 20.9050029985807], [-97.6615905586781, 20.9037201012666], [-97.6629638496935, 20.9037201012666]]]]}, "properties": {"taskId": 1410, "taskX": 59956, "taskY": 146643, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.9024371929812], [-97.6629638496935, 20.9037201012666], [-97.6615905586781, 20.9037201012666], [-97.6615905586781, 20.9024371929812], [-97.6629638496935, 20.9024371929812]]]]}, "properties": {"taskId": 1409, "taskX": 59956, "taskY": 146642, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.9011542737251], [-97.6629638496935, 20.9024371929812], [-97.6615905586781, 20.9024371929812], [-97.6615905586781, 20.9011542737251], [-97.6629638496935, 20.9011542737251]]]]}, "properties": {"taskId": 1408, "taskX": 59956, "taskY": 146641, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.8998713434988], [-97.6629638496935, 20.9011542737251], [-97.6615905586781, 20.9011542737251], [-97.6615905586781, 20.8998713434988], [-97.6629638496935, 20.8998713434988]]]]}, "properties": {"taskId": 1407, "taskX": 59956, "taskY": 146640, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.8973054501379], [-97.6629638496935, 20.8985884023029], [-97.6615905586781, 20.8985884023029], [-97.6615905586781, 20.8973054501379], [-97.6629638496935, 20.8973054501379]]]]}, "properties": {"taskId": 1405, "taskX": 59956, "taskY": 146638, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.8960224870044], [-97.6629638496935, 20.8973054501379], [-97.6615905586781, 20.8973054501379], [-97.6615905586781, 20.8960224870044], [-97.6629638496935, 20.8960224870044]]]]}, "properties": {"taskId": 1404, "taskX": 59956, "taskY": 146637, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6622772041858, 20.8953810013247], [-97.6622772041858, 20.8960224870044], [-97.6615905586781, 20.8960224870044], [-97.6615905586781, 20.8953810013247], [-97.6622772041858, 20.8953810013247]]]]}, "properties": {"taskId": 1403, "taskX": 119913, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.8953810013247], [-97.6629638496935, 20.8960224870044], [-97.6622772041858, 20.8960224870044], [-97.6622772041858, 20.8953810013247], [-97.6629638496935, 20.8953810013247]]]]}, "properties": {"taskId": 1401, "taskX": 119912, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.8947395129029], [-97.6629638496935, 20.8953810013247], [-97.6622772041858, 20.8953810013247], [-97.6622772041858, 20.8947395129029], [-97.6629638496935, 20.8947395129029]]]]}, "properties": {"taskId": 1400, "taskX": 119912, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6622772041858, 20.8940980217394], [-97.6622772041858, 20.8947395129029], [-97.6615905586781, 20.8947395129029], [-97.6615905586781, 20.8940980217394], [-97.6622772041858, 20.8940980217394]]]]}, "properties": {"taskId": 1399, "taskX": 119913, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6622772041858, 20.8934565278341], [-97.6622772041858, 20.8940980217394], [-97.6615905586781, 20.8940980217394], [-97.6615905586781, 20.8934565278341], [-97.6622772041858, 20.8934565278341]]]]}, "properties": {"taskId": 1398, "taskX": 119913, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.8940980217394], [-97.6629638496935, 20.8947395129029], [-97.6622772041858, 20.8947395129029], [-97.6622772041858, 20.8940980217394], [-97.6629638496935, 20.8940980217394]]]]}, "properties": {"taskId": 1397, "taskX": 119912, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6622772041858, 20.892815031187], [-97.6622772041858, 20.8934565278341], [-97.6615905586781, 20.8934565278341], [-97.6615905586781, 20.892815031187], [-97.6622772041858, 20.892815031187]]]]}, "properties": {"taskId": 1395, "taskX": 119913, "taskY": 293269, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6622772041858, 20.8921735317983], [-97.6622772041858, 20.892815031187], [-97.6615905586781, 20.892815031187], [-97.6615905586781, 20.8921735317983], [-97.6622772041858, 20.8921735317983]]]]}, "properties": {"taskId": 1394, "taskX": 119913, "taskY": 293268, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.892815031187], [-97.6629638496935, 20.8934565278341], [-97.6622772041858, 20.8934565278341], [-97.6622772041858, 20.892815031187], [-97.6629638496935, 20.892815031187]]]]}, "properties": {"taskId": 1393, "taskX": 119912, "taskY": 293269, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.8921735317983], [-97.6629638496935, 20.892815031187], [-97.6622772041858, 20.892815031187], [-97.6622772041858, 20.8921735317983], [-97.6629638496935, 20.8921735317983]]]]}, "properties": {"taskId": 1392, "taskX": 119912, "taskY": 293268, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6622772041858, 20.891532029668], [-97.6622772041858, 20.8921735317983], [-97.6615905586781, 20.8921735317983], [-97.6615905586781, 20.891532029668], [-97.6622772041858, 20.891532029668]]]]}, "properties": {"taskId": 1391, "taskX": 119913, "taskY": 293267, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6622772041858, 20.8908905247962], [-97.6622772041858, 20.891532029668], [-97.6615905586781, 20.891532029668], [-97.6615905586781, 20.8908905247962], [-97.6622772041858, 20.8908905247962]]]]}, "properties": {"taskId": 1390, "taskX": 119913, "taskY": 293266, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.891532029668], [-97.6629638496935, 20.8921735317983], [-97.6622772041858, 20.8921735317983], [-97.6622772041858, 20.891532029668], [-97.6629638496935, 20.891532029668]]]]}, "properties": {"taskId": 1389, "taskX": 119912, "taskY": 293267, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.8908905247962], [-97.6629638496935, 20.891532029668], [-97.6622772041858, 20.891532029668], [-97.6622772041858, 20.8908905247962], [-97.6629638496935, 20.8908905247962]]]]}, "properties": {"taskId": 1388, "taskX": 119912, "taskY": 293266, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6622772041858, 20.890249017183], [-97.6622772041858, 20.8908905247962], [-97.6615905586781, 20.8908905247962], [-97.6615905586781, 20.890249017183], [-97.6622772041858, 20.890249017183]]]]}, "properties": {"taskId": 1387, "taskX": 119913, "taskY": 293265, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6622772041858, 20.8896075068283], [-97.6622772041858, 20.890249017183], [-97.6615905586781, 20.890249017183], [-97.6615905586781, 20.8896075068283], [-97.6622772041858, 20.8896075068283]]]]}, "properties": {"taskId": 1386, "taskX": 119913, "taskY": 293264, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.890249017183], [-97.6629638496935, 20.8908905247962], [-97.6622772041858, 20.8908905247962], [-97.6622772041858, 20.890249017183], [-97.6629638496935, 20.890249017183]]]]}, "properties": {"taskId": 1385, "taskX": 119912, "taskY": 293265, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6622772041858, 20.8889659937324], [-97.6622772041858, 20.8896075068283], [-97.6615905586781, 20.8896075068283], [-97.6615905586781, 20.8889659937324], [-97.6622772041858, 20.8889659937324]]]]}, "properties": {"taskId": 1383, "taskX": 119913, "taskY": 293263, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6622772041858, 20.8883244778952], [-97.6622772041858, 20.8889659937324], [-97.6615905586781, 20.8889659937324], [-97.6615905586781, 20.8883244778952], [-97.6622772041858, 20.8883244778952]]]]}, "properties": {"taskId": 1382, "taskX": 119913, "taskY": 293262, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.8889659937324], [-97.6629638496935, 20.8896075068283], [-97.6622772041858, 20.8896075068283], [-97.6622772041858, 20.8889659937324], [-97.6629638496935, 20.8889659937324]]]]}, "properties": {"taskId": 1381, "taskX": 119912, "taskY": 293263, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.8883244778952], [-97.6629638496935, 20.8889659937324], [-97.6622772041858, 20.8889659937324], [-97.6622772041858, 20.8883244778952], [-97.6629638496935, 20.8883244778952]]]]}, "properties": {"taskId": 1380, "taskX": 119912, "taskY": 293262, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6622772041858, 20.8876829593169], [-97.6622772041858, 20.8883244778952], [-97.6615905586781, 20.8883244778952], [-97.6615905586781, 20.8876829593169], [-97.6622772041858, 20.8876829593169]]]]}, "properties": {"taskId": 1379, "taskX": 119913, "taskY": 293261, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6622772041858, 20.8870414379975], [-97.6622772041858, 20.8876829593169], [-97.6615905586781, 20.8876829593169], [-97.6615905586781, 20.8870414379975], [-97.6622772041858, 20.8870414379975]]]]}, "properties": {"taskId": 1378, "taskX": 119913, "taskY": 293260, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.8870414379975], [-97.6629638496935, 20.8876829593169], [-97.6622772041858, 20.8876829593169], [-97.6622772041858, 20.8870414379975], [-97.6629638496935, 20.8870414379975]]]]}, "properties": {"taskId": 1376, "taskX": 119912, "taskY": 293260, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6622772041858, 20.886399913937], [-97.6622772041858, 20.8870414379975], [-97.6615905586781, 20.8870414379975], [-97.6615905586781, 20.886399913937], [-97.6622772041858, 20.886399913937]]]]}, "properties": {"taskId": 1375, "taskX": 119913, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6622772041858, 20.8857583871356], [-97.6622772041858, 20.886399913937], [-97.6615905586781, 20.886399913937], [-97.6615905586781, 20.8857583871356], [-97.6622772041858, 20.8857583871356]]]]}, "properties": {"taskId": 1374, "taskX": 119913, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.886399913937], [-97.6629638496935, 20.8870414379975], [-97.6622772041858, 20.8870414379975], [-97.6622772041858, 20.886399913937], [-97.6629638496935, 20.886399913937]]]]}, "properties": {"taskId": 1373, "taskX": 119912, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.8857583871356], [-97.6629638496935, 20.886399913937], [-97.6622772041858, 20.886399913937], [-97.6622772041858, 20.8857583871356], [-97.6629638496935, 20.8857583871356]]]]}, "properties": {"taskId": 1372, "taskX": 119912, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6622772041858, 20.8851168575932], [-97.6622772041858, 20.8857583871356], [-97.6615905586781, 20.8857583871356], [-97.6615905586781, 20.8851168575932], [-97.6622772041858, 20.8851168575932]]]]}, "properties": {"taskId": 1371, "taskX": 119913, "taskY": 293257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6622772041858, 20.8844753253101], [-97.6622772041858, 20.8851168575932], [-97.6615905586781, 20.8851168575932], [-97.6615905586781, 20.8844753253101], [-97.6622772041858, 20.8844753253101]]]]}, "properties": {"taskId": 1370, "taskX": 119913, "taskY": 293256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.8851168575932], [-97.6629638496935, 20.8857583871356], [-97.6622772041858, 20.8857583871356], [-97.6622772041858, 20.8851168575932], [-97.6629638496935, 20.8851168575932]]]]}, "properties": {"taskId": 1369, "taskX": 119912, "taskY": 293257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.8844753253101], [-97.6629638496935, 20.8851168575932], [-97.6622772041858, 20.8851168575932], [-97.6622772041858, 20.8844753253101], [-97.6629638496935, 20.8844753253101]]]]}, "properties": {"taskId": 1368, "taskX": 119912, "taskY": 293256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6629638496935, 20.8831922525216], [-97.6629638496935, 20.8844753253101], [-97.6615905586781, 20.8844753253101], [-97.6615905586781, 20.8831922525216], [-97.6629638496935, 20.8831922525216]]]]}, "properties": {"taskId": 1367, "taskX": 59956, "taskY": 146627, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.920396910391], [-97.6643371407089, 20.9216796650287], [-97.6629638496935, 20.9216796650287], [-97.6629638496935, 20.920396910391], [-97.6643371407089, 20.920396910391]]]]}, "properties": {"taskId": 1365, "taskX": 59955, "taskY": 146656, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.9197555289553], [-97.6636504952012, 20.920396910391], [-97.6629638496935, 20.920396910391], [-97.6629638496935, 20.9197555289553], [-97.6636504952012, 20.9197555289553]]]]}, "properties": {"taskId": 1364, "taskX": 119911, "taskY": 293311, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.919114144775], [-97.6636504952012, 20.9197555289553], [-97.6629638496935, 20.9197555289553], [-97.6629638496935, 20.919114144775], [-97.6636504952012, 20.919114144775]]]]}, "properties": {"taskId": 1363, "taskX": 119911, "taskY": 293310, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.9197555289553], [-97.6643371407089, 20.920396910391], [-97.6636504952012, 20.920396910391], [-97.6636504952012, 20.9197555289553], [-97.6643371407089, 20.9197555289553]]]]}, "properties": {"taskId": 1362, "taskX": 119910, "taskY": 293311, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.919114144775], [-97.6643371407089, 20.9197555289553], [-97.6636504952012, 20.9197555289553], [-97.6636504952012, 20.919114144775], [-97.6643371407089, 20.919114144775]]]]}, "properties": {"taskId": 1361, "taskX": 119910, "taskY": 293310, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.9184727578503], [-97.6636504952012, 20.919114144775], [-97.6629638496935, 20.919114144775], [-97.6629638496935, 20.9184727578503], [-97.6636504952012, 20.9184727578503]]]]}, "properties": {"taskId": 1360, "taskX": 119911, "taskY": 293309, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.9184727578503], [-97.6643371407089, 20.919114144775], [-97.6636504952012, 20.919114144775], [-97.6636504952012, 20.9184727578503], [-97.6643371407089, 20.9184727578503]]]]}, "properties": {"taskId": 1358, "taskX": 119910, "taskY": 293309, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.9171899757676], [-97.6636504952012, 20.9178313681812], [-97.6629638496935, 20.9178313681812], [-97.6629638496935, 20.9171899757676], [-97.6636504952012, 20.9171899757676]]]]}, "properties": {"taskId": 1356, "taskX": 119911, "taskY": 293307, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.9165485806099], [-97.6636504952012, 20.9171899757676], [-97.6629638496935, 20.9171899757676], [-97.6629638496935, 20.9165485806099], [-97.6636504952012, 20.9165485806099]]]]}, "properties": {"taskId": 1355, "taskX": 119911, "taskY": 293306, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.915907182708], [-97.6636504952012, 20.9165485806099], [-97.6629638496935, 20.9165485806099], [-97.6629638496935, 20.915907182708], [-97.6636504952012, 20.915907182708]]]]}, "properties": {"taskId": 1352, "taskX": 119911, "taskY": 293305, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.9152657820619], [-97.6636504952012, 20.915907182708], [-97.6629638496935, 20.915907182708], [-97.6629638496935, 20.9152657820619], [-97.6636504952012, 20.9152657820619]]]]}, "properties": {"taskId": 1351, "taskX": 119911, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.915907182708], [-97.6643371407089, 20.9165485806099], [-97.6636504952012, 20.9165485806099], [-97.6636504952012, 20.915907182708], [-97.6643371407089, 20.915907182708]]]]}, "properties": {"taskId": 1350, "taskX": 119910, "taskY": 293305, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.9152657820619], [-97.6643371407089, 20.915907182708], [-97.6636504952012, 20.915907182708], [-97.6636504952012, 20.9152657820619], [-97.6643371407089, 20.9152657820619]]]]}, "properties": {"taskId": 1349, "taskX": 119910, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.9146243786719], [-97.6636504952012, 20.9152657820619], [-97.6629638496935, 20.9152657820619], [-97.6629638496935, 20.9146243786719], [-97.6636504952012, 20.9146243786719]]]]}, "properties": {"taskId": 1348, "taskX": 119911, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.9139829725378], [-97.6636504952012, 20.9146243786719], [-97.6629638496935, 20.9146243786719], [-97.6629638496935, 20.9139829725378], [-97.6636504952012, 20.9139829725378]]]]}, "properties": {"taskId": 1347, "taskX": 119911, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.9146243786719], [-97.6643371407089, 20.9152657820619], [-97.6636504952012, 20.9152657820619], [-97.6636504952012, 20.9146243786719], [-97.6643371407089, 20.9146243786719]]]]}, "properties": {"taskId": 1346, "taskX": 119910, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.9139829725378], [-97.6643371407089, 20.9146243786719], [-97.6636504952012, 20.9146243786719], [-97.6636504952012, 20.9139829725378], [-97.6643371407089, 20.9139829725378]]]]}, "properties": {"taskId": 1345, "taskX": 119910, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.9133415636598], [-97.6636504952012, 20.9139829725378], [-97.6629638496935, 20.9139829725378], [-97.6629638496935, 20.9133415636598], [-97.6636504952012, 20.9133415636598]]]]}, "properties": {"taskId": 1344, "taskX": 119911, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.9127001520379], [-97.6636504952012, 20.9133415636598], [-97.6629638496935, 20.9133415636598], [-97.6629638496935, 20.9127001520379], [-97.6636504952012, 20.9127001520379]]]]}, "properties": {"taskId": 1343, "taskX": 119911, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.9133415636598], [-97.6643371407089, 20.9139829725378], [-97.6636504952012, 20.9139829725378], [-97.6636504952012, 20.9133415636598], [-97.6643371407089, 20.9133415636598]]]]}, "properties": {"taskId": 1342, "taskX": 119910, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6643371407089, 20.9127001520379], [-97.6643371407089, 20.9133415636598], [-97.6636504952012, 20.9133415636598], [-97.6636504952012, 20.9127001520379], [-97.6643371407089, 20.9127001520379]]]]}, "properties": {"taskId": 1341, "taskX": 119910, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.9120587376723], [-97.6636504952012, 20.9127001520379], [-97.6629638496935, 20.9127001520379], [-97.6629638496935, 20.9120587376723], [-97.6636504952012, 20.9120587376723]]]]}, "properties": {"taskId": 1340, "taskX": 119911, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6636504952012, 20.911417320563], [-97.6636504952012, 20.9120587376723], [-97.6629638496935, 20.9120587376723], [-97.6629638496935, 20.911417320563], [-97.6636504952012, 20.911417320563]]]]}, "properties": {"taskId": 1339, "taskX": 119911, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.9120587376723], [-97.6718902412935, 20.9127001520379], [-97.6712035957858, 20.9127001520379], [-97.6712035957858, 20.9120587376723], [-97.6718902412935, 20.9120587376723]]]]}, "properties": {"taskId": 874, "taskX": 119899, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.9120587376723], [-97.6725768868012, 20.9127001520379], [-97.6718902412935, 20.9127001520379], [-97.6718902412935, 20.9120587376723], [-97.6725768868012, 20.9120587376723]]]]}, "properties": {"taskId": 872, "taskX": 119898, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.911417320563], [-97.6725768868012, 20.9120587376723], [-97.6718902412935, 20.9120587376723], [-97.6718902412935, 20.911417320563], [-97.6725768868012, 20.911417320563]]]]}, "properties": {"taskId": 871, "taskX": 119898, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.91077590071], [-97.6718902412935, 20.911417320563], [-97.6712035957858, 20.911417320563], [-97.6712035957858, 20.91077590071], [-97.6718902412935, 20.91077590071]]]]}, "properties": {"taskId": 870, "taskX": 119899, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.9101344781134], [-97.6718902412935, 20.91077590071], [-97.6712035957858, 20.91077590071], [-97.6712035957858, 20.9101344781134], [-97.6718902412935, 20.9101344781134]]]]}, "properties": {"taskId": 869, "taskX": 119899, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.91077590071], [-97.6725768868012, 20.911417320563], [-97.6718902412935, 20.911417320563], [-97.6718902412935, 20.91077590071], [-97.6725768868012, 20.91077590071]]]]}, "properties": {"taskId": 868, "taskX": 119898, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.9101344781134], [-97.6725768868012, 20.91077590071], [-97.6718902412935, 20.91077590071], [-97.6718902412935, 20.9101344781134], [-97.6725768868012, 20.9101344781134]]]]}, "properties": {"taskId": 867, "taskX": 119898, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.9094930527734], [-97.6718902412935, 20.9101344781134], [-97.6712035957858, 20.9101344781134], [-97.6712035957858, 20.9094930527734], [-97.6718902412935, 20.9094930527734]]]]}, "properties": {"taskId": 866, "taskX": 119899, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.9088516246899], [-97.6718902412935, 20.9094930527734], [-97.6712035957858, 20.9094930527734], [-97.6712035957858, 20.9088516246899], [-97.6718902412935, 20.9088516246899]]]]}, "properties": {"taskId": 865, "taskX": 119899, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.9094930527734], [-97.6725768868012, 20.9101344781134], [-97.6718902412935, 20.9101344781134], [-97.6718902412935, 20.9094930527734], [-97.6725768868012, 20.9094930527734]]]]}, "properties": {"taskId": 864, "taskX": 119898, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.9088516246899], [-97.6725768868012, 20.9094930527734], [-97.6718902412935, 20.9094930527734], [-97.6718902412935, 20.9088516246899], [-97.6725768868012, 20.9088516246899]]]]}, "properties": {"taskId": 863, "taskX": 119898, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.9082101938631], [-97.6718902412935, 20.9088516246899], [-97.6712035957858, 20.9088516246899], [-97.6712035957858, 20.9082101938631], [-97.6718902412935, 20.9082101938631]]]]}, "properties": {"taskId": 862, "taskX": 119899, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.9075687602929], [-97.6718902412935, 20.9082101938631], [-97.6712035957858, 20.9082101938631], [-97.6712035957858, 20.9075687602929], [-97.6718902412935, 20.9075687602929]]]]}, "properties": {"taskId": 861, "taskX": 119899, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.9082101938631], [-97.6725768868012, 20.9088516246899], [-97.6718902412935, 20.9088516246899], [-97.6718902412935, 20.9082101938631], [-97.6725768868012, 20.9082101938631]]]]}, "properties": {"taskId": 860, "taskX": 119898, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.9075687602929], [-97.6725768868012, 20.9082101938631], [-97.6718902412935, 20.9082101938631], [-97.6718902412935, 20.9075687602929], [-97.6725768868012, 20.9075687602929]]]]}, "properties": {"taskId": 859, "taskX": 119898, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.9069273239795], [-97.6718902412935, 20.9075687602929], [-97.6712035957858, 20.9075687602929], [-97.6712035957858, 20.9069273239795], [-97.6718902412935, 20.9069273239795]]]]}, "properties": {"taskId": 858, "taskX": 119899, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.906285884923], [-97.6718902412935, 20.9069273239795], [-97.6712035957858, 20.9069273239795], [-97.6712035957858, 20.906285884923], [-97.6718902412935, 20.906285884923]]]]}, "properties": {"taskId": 857, "taskX": 119899, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.9069273239795], [-97.6725768868012, 20.9075687602929], [-97.6718902412935, 20.9075687602929], [-97.6718902412935, 20.9069273239795], [-97.6725768868012, 20.9069273239795]]]]}, "properties": {"taskId": 856, "taskX": 119898, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.9056444431233], [-97.6718902412935, 20.906285884923], [-97.6712035957858, 20.906285884923], [-97.6712035957858, 20.9056444431233], [-97.6718902412935, 20.9056444431233]]]]}, "properties": {"taskId": 854, "taskX": 119899, "taskY": 293289, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.9056444431233], [-97.6725768868012, 20.906285884923], [-97.6718902412935, 20.906285884923], [-97.6718902412935, 20.9056444431233], [-97.6725768868012, 20.9056444431233]]]]}, "properties": {"taskId": 852, "taskX": 119898, "taskY": 293289, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.9050029985807], [-97.6725768868012, 20.9056444431233], [-97.6718902412935, 20.9056444431233], [-97.6718902412935, 20.9050029985807], [-97.6725768868012, 20.9050029985807]]]]}, "properties": {"taskId": 851, "taskX": 119898, "taskY": 293288, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.9043615512951], [-97.6718902412935, 20.9050029985807], [-97.6712035957858, 20.9050029985807], [-97.6712035957858, 20.9043615512951], [-97.6718902412935, 20.9043615512951]]]]}, "properties": {"taskId": 850, "taskX": 119899, "taskY": 293287, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.9037201012666], [-97.6718902412935, 20.9043615512951], [-97.6712035957858, 20.9043615512951], [-97.6712035957858, 20.9037201012666], [-97.6718902412935, 20.9037201012666]]]]}, "properties": {"taskId": 849, "taskX": 119899, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.9043615512951], [-97.6725768868012, 20.9050029985807], [-97.6718902412935, 20.9050029985807], [-97.6718902412935, 20.9043615512951], [-97.6725768868012, 20.9043615512951]]]]}, "properties": {"taskId": 848, "taskX": 119898, "taskY": 293287, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.9037201012666], [-97.6725768868012, 20.9043615512951], [-97.6718902412935, 20.9043615512951], [-97.6718902412935, 20.9037201012666], [-97.6725768868012, 20.9037201012666]]]]}, "properties": {"taskId": 847, "taskX": 119898, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.9030786484952], [-97.6718902412935, 20.9037201012666], [-97.6712035957858, 20.9037201012666], [-97.6712035957858, 20.9030786484952], [-97.6718902412935, 20.9030786484952]]]]}, "properties": {"taskId": 846, "taskX": 119899, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.9024371929812], [-97.6718902412935, 20.9030786484952], [-97.6712035957858, 20.9030786484952], [-97.6712035957858, 20.9024371929812], [-97.6718902412935, 20.9024371929812]]]]}, "properties": {"taskId": 845, "taskX": 119899, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.9030786484952], [-97.6725768868012, 20.9037201012666], [-97.6718902412935, 20.9037201012666], [-97.6718902412935, 20.9030786484952], [-97.6725768868012, 20.9030786484952]]]]}, "properties": {"taskId": 844, "taskX": 119898, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.9024371929812], [-97.6725768868012, 20.9030786484952], [-97.6718902412935, 20.9030786484952], [-97.6718902412935, 20.9024371929812], [-97.6725768868012, 20.9024371929812]]]]}, "properties": {"taskId": 843, "taskX": 119898, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.9017957347244], [-97.6718902412935, 20.9024371929812], [-97.6712035957858, 20.9024371929812], [-97.6712035957858, 20.9017957347244], [-97.6718902412935, 20.9017957347244]]]]}, "properties": {"taskId": 842, "taskX": 119899, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.9017957347244], [-97.6725768868012, 20.9024371929812], [-97.6718902412935, 20.9024371929812], [-97.6718902412935, 20.9017957347244], [-97.6725768868012, 20.9017957347244]]]]}, "properties": {"taskId": 840, "taskX": 119898, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.9011542737251], [-97.6725768868012, 20.9017957347244], [-97.6718902412935, 20.9017957347244], [-97.6718902412935, 20.9011542737251], [-97.6725768868012, 20.9011542737251]]]]}, "properties": {"taskId": 839, "taskX": 119898, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.9005128099832], [-97.6718902412935, 20.9011542737251], [-97.6712035957858, 20.9011542737251], [-97.6712035957858, 20.9005128099832], [-97.6718902412935, 20.9005128099832]]]]}, "properties": {"taskId": 838, "taskX": 119899, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.8998713434988], [-97.6718902412935, 20.9005128099832], [-97.6712035957858, 20.9005128099832], [-97.6712035957858, 20.8998713434988], [-97.6718902412935, 20.8998713434988]]]]}, "properties": {"taskId": 837, "taskX": 119899, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.9005128099832], [-97.6725768868012, 20.9011542737251], [-97.6718902412935, 20.9011542737251], [-97.6718902412935, 20.9005128099832], [-97.6725768868012, 20.9005128099832]]]]}, "properties": {"taskId": 836, "taskX": 119898, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.8998713434988], [-97.6725768868012, 20.9005128099832], [-97.6718902412935, 20.9005128099832], [-97.6718902412935, 20.8998713434988], [-97.6725768868012, 20.8998713434988]]]]}, "properties": {"taskId": 835, "taskX": 119898, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.899229874272], [-97.6718902412935, 20.8998713434988], [-97.6712035957858, 20.8998713434988], [-97.6712035957858, 20.899229874272], [-97.6718902412935, 20.899229874272]]]]}, "properties": {"taskId": 834, "taskX": 119899, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.8985884023029], [-97.6718902412935, 20.899229874272], [-97.6712035957858, 20.899229874272], [-97.6712035957858, 20.8985884023029], [-97.6718902412935, 20.8985884023029]]]]}, "properties": {"taskId": 833, "taskX": 119899, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.899229874272], [-97.6725768868012, 20.8998713434988], [-97.6718902412935, 20.8998713434988], [-97.6718902412935, 20.899229874272], [-97.6725768868012, 20.899229874272]]]]}, "properties": {"taskId": 832, "taskX": 119898, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.8985884023029], [-97.6725768868012, 20.899229874272], [-97.6718902412935, 20.899229874272], [-97.6718902412935, 20.8985884023029], [-97.6725768868012, 20.8985884023029]]]]}, "properties": {"taskId": 831, "taskX": 119898, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.8979469275915], [-97.6718902412935, 20.8985884023029], [-97.6712035957858, 20.8985884023029], [-97.6712035957858, 20.8979469275915], [-97.6718902412935, 20.8979469275915]]]]}, "properties": {"taskId": 830, "taskX": 119899, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6718902412935, 20.8973054501379], [-97.6718902412935, 20.8979469275915], [-97.6712035957858, 20.8979469275915], [-97.6712035957858, 20.8973054501379], [-97.6718902412935, 20.8973054501379]]]]}, "properties": {"taskId": 829, "taskX": 119899, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.8979469275915], [-97.6725768868012, 20.8985884023029], [-97.6718902412935, 20.8985884023029], [-97.6718902412935, 20.8979469275915], [-97.6725768868012, 20.8979469275915]]]]}, "properties": {"taskId": 828, "taskX": 119898, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.8973054501379], [-97.6725768868012, 20.8979469275915], [-97.6718902412935, 20.8979469275915], [-97.6718902412935, 20.8973054501379], [-97.6725768868012, 20.8973054501379]]]]}, "properties": {"taskId": 827, "taskX": 119898, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.8947395129029], [-97.6725768868012, 20.8960224870044], [-97.6712035957858, 20.8960224870044], [-97.6712035957858, 20.8947395129029], [-97.6725768868012, 20.8947395129029]]]]}, "properties": {"taskId": 825, "taskX": 59949, "taskY": 146636, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.8934565278341], [-97.6725768868012, 20.8947395129029], [-97.6712035957858, 20.8947395129029], [-97.6712035957858, 20.8934565278341], [-97.6725768868012, 20.8934565278341]]]]}, "properties": {"taskId": 824, "taskX": 59949, "taskY": 146635, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6725768868012, 20.8908905247962], [-97.6725768868012, 20.8921735317983], [-97.6712035957858, 20.8921735317983], [-97.6712035957858, 20.8908905247962], [-97.6725768868012, 20.8908905247962]]]]}, "properties": {"taskId": 822, "taskX": 59949, "taskY": 146633, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.919114144775], [-97.6739501778165, 20.920396910391], [-97.6725768868012, 20.920396910391], [-97.6725768868012, 20.919114144775], [-97.6739501778165, 20.919114144775]]]]}, "properties": {"taskId": 820, "taskX": 59948, "taskY": 146655, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.9178313681812], [-97.6739501778165, 20.919114144775], [-97.6725768868012, 20.919114144775], [-97.6725768868012, 20.9178313681812], [-97.6739501778165, 20.9178313681812]]]]}, "properties": {"taskId": 819, "taskX": 59948, "taskY": 146654, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.9165485806099], [-97.6739501778165, 20.9178313681812], [-97.6725768868012, 20.9178313681812], [-97.6725768868012, 20.9165485806099], [-97.6739501778165, 20.9165485806099]]]]}, "properties": {"taskId": 818, "taskX": 59948, "taskY": 146653, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.915907182708], [-97.6732635323089, 20.9165485806099], [-97.6725768868012, 20.9165485806099], [-97.6725768868012, 20.915907182708], [-97.6732635323089, 20.915907182708]]]]}, "properties": {"taskId": 817, "taskX": 119897, "taskY": 293305, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.9152657820619], [-97.6732635323089, 20.915907182708], [-97.6725768868012, 20.915907182708], [-97.6725768868012, 20.9152657820619], [-97.6732635323089, 20.9152657820619]]]]}, "properties": {"taskId": 816, "taskX": 119897, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.915907182708], [-97.6739501778165, 20.9165485806099], [-97.6732635323089, 20.9165485806099], [-97.6732635323089, 20.915907182708], [-97.6739501778165, 20.915907182708]]]]}, "properties": {"taskId": 815, "taskX": 119896, "taskY": 293305, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.9152657820619], [-97.6739501778165, 20.915907182708], [-97.6732635323089, 20.915907182708], [-97.6732635323089, 20.9152657820619], [-97.6739501778165, 20.9152657820619]]]]}, "properties": {"taskId": 814, "taskX": 119896, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.9146243786719], [-97.6732635323089, 20.9152657820619], [-97.6725768868012, 20.9152657820619], [-97.6725768868012, 20.9146243786719], [-97.6732635323089, 20.9146243786719]]]]}, "properties": {"taskId": 813, "taskX": 119897, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.9139829725378], [-97.6732635323089, 20.9146243786719], [-97.6725768868012, 20.9146243786719], [-97.6725768868012, 20.9139829725378], [-97.6732635323089, 20.9139829725378]]]]}, "properties": {"taskId": 812, "taskX": 119897, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.9146243786719], [-97.6739501778165, 20.9152657820619], [-97.6732635323089, 20.9152657820619], [-97.6732635323089, 20.9146243786719], [-97.6739501778165, 20.9146243786719]]]]}, "properties": {"taskId": 811, "taskX": 119896, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.9139829725378], [-97.6739501778165, 20.9146243786719], [-97.6732635323089, 20.9146243786719], [-97.6732635323089, 20.9139829725378], [-97.6739501778165, 20.9139829725378]]]]}, "properties": {"taskId": 810, "taskX": 119896, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.9133415636598], [-97.6732635323089, 20.9139829725378], [-97.6725768868012, 20.9139829725378], [-97.6725768868012, 20.9133415636598], [-97.6732635323089, 20.9133415636598]]]]}, "properties": {"taskId": 809, "taskX": 119897, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.8973054501379], [-97.6732635323089, 20.8979469275915], [-97.6725768868012, 20.8979469275915], [-97.6725768868012, 20.8973054501379], [-97.6732635323089, 20.8973054501379]]]]}, "properties": {"taskId": 760, "taskX": 119897, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.8979469275915], [-97.6739501778165, 20.8985884023029], [-97.6732635323089, 20.8985884023029], [-97.6732635323089, 20.8979469275915], [-97.6739501778165, 20.8979469275915]]]]}, "properties": {"taskId": 759, "taskX": 119896, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.8973054501379], [-97.6739501778165, 20.8979469275915], [-97.6732635323089, 20.8979469275915], [-97.6732635323089, 20.8973054501379], [-97.6739501778165, 20.8973054501379]]]]}, "properties": {"taskId": 758, "taskX": 119896, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.8960224870044], [-97.6739501778165, 20.8973054501379], [-97.6725768868012, 20.8973054501379], [-97.6725768868012, 20.8960224870044], [-97.6739501778165, 20.8960224870044]]]]}, "properties": {"taskId": 757, "taskX": 59948, "taskY": 146637, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.8947395129029], [-97.6739501778165, 20.8960224870044], [-97.6725768868012, 20.8960224870044], [-97.6725768868012, 20.8947395129029], [-97.6739501778165, 20.8947395129029]]]]}, "properties": {"taskId": 756, "taskX": 59948, "taskY": 146636, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.8934565278341], [-97.6739501778165, 20.8947395129029], [-97.6725768868012, 20.8947395129029], [-97.6725768868012, 20.8934565278341], [-97.6739501778165, 20.8934565278341]]]]}, "properties": {"taskId": 755, "taskX": 59948, "taskY": 146635, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.920396910391], [-97.6753234688319, 20.9216796650287], [-97.6739501778165, 20.9216796650287], [-97.6739501778165, 20.920396910391], [-97.6753234688319, 20.920396910391]]]]}, "properties": {"taskId": 753, "taskX": 59947, "taskY": 146656, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.9178313681812], [-97.6753234688319, 20.919114144775], [-97.6739501778165, 20.919114144775], [-97.6739501778165, 20.9178313681812], [-97.6753234688319, 20.9178313681812]]]]}, "properties": {"taskId": 751, "taskX": 59947, "taskY": 146654, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.9171899757676], [-97.6746368233242, 20.9178313681812], [-97.6739501778165, 20.9178313681812], [-97.6739501778165, 20.9171899757676], [-97.6746368233242, 20.9171899757676]]]]}, "properties": {"taskId": 750, "taskX": 119895, "taskY": 293307, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.9165485806099], [-97.6746368233242, 20.9171899757676], [-97.6739501778165, 20.9171899757676], [-97.6739501778165, 20.9165485806099], [-97.6746368233242, 20.9165485806099]]]]}, "properties": {"taskId": 749, "taskX": 119895, "taskY": 293306, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.9171899757676], [-97.6753234688319, 20.9178313681812], [-97.6746368233242, 20.9178313681812], [-97.6746368233242, 20.9171899757676], [-97.6753234688319, 20.9171899757676]]]]}, "properties": {"taskId": 748, "taskX": 119894, "taskY": 293307, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.9165485806099], [-97.6753234688319, 20.9171899757676], [-97.6746368233242, 20.9171899757676], [-97.6746368233242, 20.9165485806099], [-97.6753234688319, 20.9165485806099]]]]}, "properties": {"taskId": 747, "taskX": 119894, "taskY": 293306, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.9152657820619], [-97.6746368233242, 20.915907182708], [-97.6739501778165, 20.915907182708], [-97.6739501778165, 20.9152657820619], [-97.6746368233242, 20.9152657820619]]]]}, "properties": {"taskId": 745, "taskX": 119895, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.915907182708], [-97.6753234688319, 20.9165485806099], [-97.6746368233242, 20.9165485806099], [-97.6746368233242, 20.915907182708], [-97.6753234688319, 20.915907182708]]]]}, "properties": {"taskId": 744, "taskX": 119894, "taskY": 293305, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.9152657820619], [-97.6753234688319, 20.915907182708], [-97.6746368233242, 20.915907182708], [-97.6746368233242, 20.9152657820619], [-97.6753234688319, 20.9152657820619]]]]}, "properties": {"taskId": 743, "taskX": 119894, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.9146243786719], [-97.6746368233242, 20.9152657820619], [-97.6739501778165, 20.9152657820619], [-97.6739501778165, 20.9146243786719], [-97.6746368233242, 20.9146243786719]]]]}, "properties": {"taskId": 742, "taskX": 119895, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.9139829725378], [-97.6746368233242, 20.9146243786719], [-97.6739501778165, 20.9146243786719], [-97.6739501778165, 20.9139829725378], [-97.6746368233242, 20.9139829725378]]]]}, "properties": {"taskId": 741, "taskX": 119895, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.9146243786719], [-97.6753234688319, 20.9152657820619], [-97.6746368233242, 20.9152657820619], [-97.6746368233242, 20.9146243786719], [-97.6753234688319, 20.9146243786719]]]]}, "properties": {"taskId": 740, "taskX": 119894, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.9139829725378], [-97.6753234688319, 20.9146243786719], [-97.6746368233242, 20.9146243786719], [-97.6746368233242, 20.9139829725378], [-97.6753234688319, 20.9139829725378]]]]}, "properties": {"taskId": 739, "taskX": 119894, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.9133415636598], [-97.6746368233242, 20.9139829725378], [-97.6739501778165, 20.9139829725378], [-97.6739501778165, 20.9133415636598], [-97.6746368233242, 20.9133415636598]]]]}, "properties": {"taskId": 738, "taskX": 119895, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.9127001520379], [-97.6746368233242, 20.9133415636598], [-97.6739501778165, 20.9133415636598], [-97.6739501778165, 20.9127001520379], [-97.6746368233242, 20.9127001520379]]]]}, "properties": {"taskId": 737, "taskX": 119895, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.9133415636598], [-97.6753234688319, 20.9139829725378], [-97.6746368233242, 20.9139829725378], [-97.6746368233242, 20.9133415636598], [-97.6753234688319, 20.9133415636598]]]]}, "properties": {"taskId": 736, "taskX": 119894, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.9127001520379], [-97.6753234688319, 20.9133415636598], [-97.6746368233242, 20.9133415636598], [-97.6746368233242, 20.9127001520379], [-97.6753234688319, 20.9127001520379]]]]}, "properties": {"taskId": 735, "taskX": 119894, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.911417320563], [-97.6746368233242, 20.9120587376723], [-97.6739501778165, 20.9120587376723], [-97.6739501778165, 20.911417320563], [-97.6746368233242, 20.911417320563]]]]}, "properties": {"taskId": 733, "taskX": 119895, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.911417320563], [-97.6753234688319, 20.9120587376723], [-97.6746368233242, 20.9120587376723], [-97.6746368233242, 20.911417320563], [-97.6753234688319, 20.911417320563]]]]}, "properties": {"taskId": 731, "taskX": 119894, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.91077590071], [-97.6746368233242, 20.911417320563], [-97.6739501778165, 20.911417320563], [-97.6739501778165, 20.91077590071], [-97.6746368233242, 20.91077590071]]]]}, "properties": {"taskId": 730, "taskX": 119895, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.9101344781134], [-97.6746368233242, 20.91077590071], [-97.6739501778165, 20.91077590071], [-97.6739501778165, 20.9101344781134], [-97.6746368233242, 20.9101344781134]]]]}, "properties": {"taskId": 729, "taskX": 119895, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.9101344781134], [-97.6753234688319, 20.91077590071], [-97.6746368233242, 20.91077590071], [-97.6746368233242, 20.9101344781134], [-97.6753234688319, 20.9101344781134]]]]}, "properties": {"taskId": 727, "taskX": 119894, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.9094930527734], [-97.6746368233242, 20.9101344781134], [-97.6739501778165, 20.9101344781134], [-97.6739501778165, 20.9094930527734], [-97.6746368233242, 20.9094930527734]]]]}, "properties": {"taskId": 726, "taskX": 119895, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.9088516246899], [-97.6746368233242, 20.9094930527734], [-97.6739501778165, 20.9094930527734], [-97.6739501778165, 20.9088516246899], [-97.6746368233242, 20.9088516246899]]]]}, "properties": {"taskId": 725, "taskX": 119895, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.9094930527734], [-97.6753234688319, 20.9101344781134], [-97.6746368233242, 20.9101344781134], [-97.6746368233242, 20.9094930527734], [-97.6753234688319, 20.9094930527734]]]]}, "properties": {"taskId": 724, "taskX": 119894, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.9088516246899], [-97.6753234688319, 20.9094930527734], [-97.6746368233242, 20.9094930527734], [-97.6746368233242, 20.9088516246899], [-97.6753234688319, 20.9088516246899]]]]}, "properties": {"taskId": 723, "taskX": 119894, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.9082101938631], [-97.6746368233242, 20.9088516246899], [-97.6739501778165, 20.9088516246899], [-97.6739501778165, 20.9082101938631], [-97.6746368233242, 20.9082101938631]]]]}, "properties": {"taskId": 722, "taskX": 119895, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.9075687602929], [-97.6746368233242, 20.9082101938631], [-97.6739501778165, 20.9082101938631], [-97.6739501778165, 20.9075687602929], [-97.6746368233242, 20.9075687602929]]]]}, "properties": {"taskId": 721, "taskX": 119895, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.9082101938631], [-97.6753234688319, 20.9088516246899], [-97.6746368233242, 20.9088516246899], [-97.6746368233242, 20.9082101938631], [-97.6753234688319, 20.9082101938631]]]]}, "properties": {"taskId": 720, "taskX": 119894, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.9075687602929], [-97.6753234688319, 20.9082101938631], [-97.6746368233242, 20.9082101938631], [-97.6746368233242, 20.9075687602929], [-97.6753234688319, 20.9075687602929]]]]}, "properties": {"taskId": 719, "taskX": 119894, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.9069273239795], [-97.6746368233242, 20.9075687602929], [-97.6739501778165, 20.9075687602929], [-97.6739501778165, 20.9069273239795], [-97.6746368233242, 20.9069273239795]]]]}, "properties": {"taskId": 718, "taskX": 119895, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.9069273239795], [-97.6753234688319, 20.9075687602929], [-97.6746368233242, 20.9075687602929], [-97.6746368233242, 20.9069273239795], [-97.6753234688319, 20.9069273239795]]]]}, "properties": {"taskId": 716, "taskX": 119894, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.906285884923], [-97.6753234688319, 20.9069273239795], [-97.6746368233242, 20.9069273239795], [-97.6746368233242, 20.906285884923], [-97.6753234688319, 20.906285884923]]]]}, "properties": {"taskId": 715, "taskX": 119894, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.9056444431233], [-97.6746368233242, 20.906285884923], [-97.6739501778165, 20.906285884923], [-97.6739501778165, 20.9056444431233], [-97.6746368233242, 20.9056444431233]]]]}, "properties": {"taskId": 714, "taskX": 119895, "taskY": 293289, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.9050029985807], [-97.6746368233242, 20.9056444431233], [-97.6739501778165, 20.9056444431233], [-97.6739501778165, 20.9050029985807], [-97.6746368233242, 20.9050029985807]]]]}, "properties": {"taskId": 713, "taskX": 119895, "taskY": 293288, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.9056444431233], [-97.6753234688319, 20.906285884923], [-97.6746368233242, 20.906285884923], [-97.6746368233242, 20.9056444431233], [-97.6753234688319, 20.9056444431233]]]]}, "properties": {"taskId": 712, "taskX": 119894, "taskY": 293289, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.9050029985807], [-97.6753234688319, 20.9056444431233], [-97.6746368233242, 20.9056444431233], [-97.6746368233242, 20.9050029985807], [-97.6753234688319, 20.9050029985807]]]]}, "properties": {"taskId": 711, "taskX": 119894, "taskY": 293288, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.9043615512951], [-97.6746368233242, 20.9050029985807], [-97.6739501778165, 20.9050029985807], [-97.6739501778165, 20.9043615512951], [-97.6746368233242, 20.9043615512951]]]]}, "properties": {"taskId": 710, "taskX": 119895, "taskY": 293287, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.9037201012666], [-97.6746368233242, 20.9043615512951], [-97.6739501778165, 20.9043615512951], [-97.6739501778165, 20.9037201012666], [-97.6746368233242, 20.9037201012666]]]]}, "properties": {"taskId": 709, "taskX": 119895, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.9043615512951], [-97.6753234688319, 20.9050029985807], [-97.6746368233242, 20.9050029985807], [-97.6746368233242, 20.9043615512951], [-97.6753234688319, 20.9043615512951]]]]}, "properties": {"taskId": 708, "taskX": 119894, "taskY": 293287, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.9037201012666], [-97.6753234688319, 20.9043615512951], [-97.6746368233242, 20.9043615512951], [-97.6746368233242, 20.9037201012666], [-97.6753234688319, 20.9037201012666]]]]}, "properties": {"taskId": 707, "taskX": 119894, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.9030786484952], [-97.6746368233242, 20.9037201012666], [-97.6739501778165, 20.9037201012666], [-97.6739501778165, 20.9030786484952], [-97.6746368233242, 20.9030786484952]]]]}, "properties": {"taskId": 706, "taskX": 119895, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.9024371929812], [-97.6746368233242, 20.9030786484952], [-97.6739501778165, 20.9030786484952], [-97.6739501778165, 20.9024371929812], [-97.6746368233242, 20.9024371929812]]]]}, "properties": {"taskId": 705, "taskX": 119895, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.9030786484952], [-97.6753234688319, 20.9037201012666], [-97.6746368233242, 20.9037201012666], [-97.6746368233242, 20.9030786484952], [-97.6753234688319, 20.9030786484952]]]]}, "properties": {"taskId": 704, "taskX": 119894, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.9024371929812], [-97.6753234688319, 20.9030786484952], [-97.6746368233242, 20.9030786484952], [-97.6746368233242, 20.9024371929812], [-97.6753234688319, 20.9024371929812]]]]}, "properties": {"taskId": 703, "taskX": 119894, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.9017957347244], [-97.6746368233242, 20.9024371929812], [-97.6739501778165, 20.9024371929812], [-97.6739501778165, 20.9017957347244], [-97.6746368233242, 20.9017957347244]]]]}, "properties": {"taskId": 702, "taskX": 119895, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.9011542737251], [-97.6746368233242, 20.9017957347244], [-97.6739501778165, 20.9017957347244], [-97.6739501778165, 20.9011542737251], [-97.6746368233242, 20.9011542737251]]]]}, "properties": {"taskId": 701, "taskX": 119895, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.9017957347244], [-97.6753234688319, 20.9024371929812], [-97.6746368233242, 20.9024371929812], [-97.6746368233242, 20.9017957347244], [-97.6753234688319, 20.9017957347244]]]]}, "properties": {"taskId": 700, "taskX": 119894, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.9011542737251], [-97.6753234688319, 20.9017957347244], [-97.6746368233242, 20.9017957347244], [-97.6746368233242, 20.9011542737251], [-97.6753234688319, 20.9011542737251]]]]}, "properties": {"taskId": 699, "taskX": 119894, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.9005128099832], [-97.6746368233242, 20.9011542737251], [-97.6739501778165, 20.9011542737251], [-97.6739501778165, 20.9005128099832], [-97.6746368233242, 20.9005128099832]]]]}, "properties": {"taskId": 698, "taskX": 119895, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6746368233242, 20.8998713434988], [-97.6746368233242, 20.9005128099832], [-97.6739501778165, 20.9005128099832], [-97.6739501778165, 20.8998713434988], [-97.6746368233242, 20.8998713434988]]]]}, "properties": {"taskId": 697, "taskX": 119895, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.8998713434988], [-97.6753234688319, 20.9005128099832], [-97.6746368233242, 20.9005128099832], [-97.6746368233242, 20.8998713434988], [-97.6753234688319, 20.8998713434988]]]]}, "properties": {"taskId": 695, "taskX": 119894, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.8985884023029], [-97.6753234688319, 20.8998713434988], [-97.6739501778165, 20.8998713434988], [-97.6739501778165, 20.8985884023029], [-97.6753234688319, 20.8985884023029]]]]}, "properties": {"taskId": 694, "taskX": 59947, "taskY": 146639, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.8960224870044], [-97.6753234688319, 20.8973054501379], [-97.6739501778165, 20.8973054501379], [-97.6739501778165, 20.8960224870044], [-97.6753234688319, 20.8960224870044]]]]}, "properties": {"taskId": 692, "taskX": 59947, "taskY": 146637, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.8947395129029], [-97.6753234688319, 20.8960224870044], [-97.6739501778165, 20.8960224870044], [-97.6739501778165, 20.8947395129029], [-97.6753234688319, 20.8947395129029]]]]}, "properties": {"taskId": 691, "taskX": 59947, "taskY": 146636, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6753234688319, 20.8934565278341], [-97.6753234688319, 20.8947395129029], [-97.6739501778165, 20.8947395129029], [-97.6739501778165, 20.8934565278341], [-97.6753234688319, 20.8934565278341]]]]}, "properties": {"taskId": 690, "taskX": 59947, "taskY": 146635, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.920396910391], [-97.6766967598473, 20.9216796650287], [-97.6753234688319, 20.9216796650287], [-97.6753234688319, 20.920396910391], [-97.6766967598473, 20.920396910391]]]]}, "properties": {"taskId": 688, "taskX": 59946, "taskY": 146656, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.919114144775], [-97.6766967598473, 20.920396910391], [-97.6753234688319, 20.920396910391], [-97.6753234688319, 20.919114144775], [-97.6766967598473, 20.919114144775]]]]}, "properties": {"taskId": 687, "taskX": 59946, "taskY": 146655, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.9178313681812], [-97.6766967598473, 20.919114144775], [-97.6753234688319, 20.919114144775], [-97.6753234688319, 20.9178313681812], [-97.6766967598473, 20.9178313681812]]]]}, "properties": {"taskId": 686, "taskX": 59946, "taskY": 146654, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.9171899757676], [-97.6760101143396, 20.9178313681812], [-97.6753234688319, 20.9178313681812], [-97.6753234688319, 20.9171899757676], [-97.6760101143396, 20.9171899757676]]]]}, "properties": {"taskId": 685, "taskX": 119893, "taskY": 293307, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.9165485806099], [-97.6760101143396, 20.9171899757676], [-97.6753234688319, 20.9171899757676], [-97.6753234688319, 20.9165485806099], [-97.6760101143396, 20.9165485806099]]]]}, "properties": {"taskId": 684, "taskX": 119893, "taskY": 293306, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.9171899757676], [-97.6766967598473, 20.9178313681812], [-97.6760101143396, 20.9178313681812], [-97.6760101143396, 20.9171899757676], [-97.6766967598473, 20.9171899757676]]]]}, "properties": {"taskId": 683, "taskX": 119892, "taskY": 293307, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.9165485806099], [-97.6766967598473, 20.9171899757676], [-97.6760101143396, 20.9171899757676], [-97.6760101143396, 20.9165485806099], [-97.6766967598473, 20.9165485806099]]]]}, "properties": {"taskId": 682, "taskX": 119892, "taskY": 293306, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.915907182708], [-97.6760101143396, 20.9165485806099], [-97.6753234688319, 20.9165485806099], [-97.6753234688319, 20.915907182708], [-97.6760101143396, 20.915907182708]]]]}, "properties": {"taskId": 681, "taskX": 119893, "taskY": 293305, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.915907182708], [-97.6766967598473, 20.9165485806099], [-97.6760101143396, 20.9165485806099], [-97.6760101143396, 20.915907182708], [-97.6766967598473, 20.915907182708]]]]}, "properties": {"taskId": 679, "taskX": 119892, "taskY": 293305, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.9152657820619], [-97.6766967598473, 20.915907182708], [-97.6760101143396, 20.915907182708], [-97.6760101143396, 20.9152657820619], [-97.6766967598473, 20.9152657820619]]]]}, "properties": {"taskId": 678, "taskX": 119892, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.9139829725378], [-97.6760101143396, 20.9146243786719], [-97.6753234688319, 20.9146243786719], [-97.6753234688319, 20.9139829725378], [-97.6760101143396, 20.9139829725378]]]]}, "properties": {"taskId": 676, "taskX": 119893, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.9146243786719], [-97.6766967598473, 20.9152657820619], [-97.6760101143396, 20.9152657820619], [-97.6760101143396, 20.9146243786719], [-97.6766967598473, 20.9146243786719]]]]}, "properties": {"taskId": 675, "taskX": 119892, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.9139829725378], [-97.6766967598473, 20.9146243786719], [-97.6760101143396, 20.9146243786719], [-97.6760101143396, 20.9139829725378], [-97.6766967598473, 20.9139829725378]]]]}, "properties": {"taskId": 674, "taskX": 119892, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.9133415636598], [-97.6760101143396, 20.9139829725378], [-97.6753234688319, 20.9139829725378], [-97.6753234688319, 20.9133415636598], [-97.6760101143396, 20.9133415636598]]]]}, "properties": {"taskId": 673, "taskX": 119893, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.9127001520379], [-97.6760101143396, 20.9133415636598], [-97.6753234688319, 20.9133415636598], [-97.6753234688319, 20.9127001520379], [-97.6760101143396, 20.9127001520379]]]]}, "properties": {"taskId": 672, "taskX": 119893, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.9133415636598], [-97.6766967598473, 20.9139829725378], [-97.6760101143396, 20.9139829725378], [-97.6760101143396, 20.9133415636598], [-97.6766967598473, 20.9133415636598]]]]}, "properties": {"taskId": 671, "taskX": 119892, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.9127001520379], [-97.6766967598473, 20.9133415636598], [-97.6760101143396, 20.9133415636598], [-97.6760101143396, 20.9127001520379], [-97.6766967598473, 20.9127001520379]]]]}, "properties": {"taskId": 670, "taskX": 119892, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.9120587376723], [-97.6760101143396, 20.9127001520379], [-97.6753234688319, 20.9127001520379], [-97.6753234688319, 20.9120587376723], [-97.6760101143396, 20.9120587376723]]]]}, "properties": {"taskId": 669, "taskX": 119893, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.911417320563], [-97.6760101143396, 20.9120587376723], [-97.6753234688319, 20.9120587376723], [-97.6753234688319, 20.911417320563], [-97.6760101143396, 20.911417320563]]]]}, "properties": {"taskId": 668, "taskX": 119893, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.9120587376723], [-97.6766967598473, 20.9127001520379], [-97.6760101143396, 20.9127001520379], [-97.6760101143396, 20.9120587376723], [-97.6766967598473, 20.9120587376723]]]]}, "properties": {"taskId": 667, "taskX": 119892, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.911417320563], [-97.6766967598473, 20.9120587376723], [-97.6760101143396, 20.9120587376723], [-97.6760101143396, 20.911417320563], [-97.6766967598473, 20.911417320563]]]]}, "properties": {"taskId": 666, "taskX": 119892, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.91077590071], [-97.6760101143396, 20.911417320563], [-97.6753234688319, 20.911417320563], [-97.6753234688319, 20.91077590071], [-97.6760101143396, 20.91077590071]]]]}, "properties": {"taskId": 665, "taskX": 119893, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.9101344781134], [-97.6760101143396, 20.91077590071], [-97.6753234688319, 20.91077590071], [-97.6753234688319, 20.9101344781134], [-97.6760101143396, 20.9101344781134]]]]}, "properties": {"taskId": 664, "taskX": 119893, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.91077590071], [-97.6766967598473, 20.911417320563], [-97.6760101143396, 20.911417320563], [-97.6760101143396, 20.91077590071], [-97.6766967598473, 20.91077590071]]]]}, "properties": {"taskId": 663, "taskX": 119892, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.9101344781134], [-97.6766967598473, 20.91077590071], [-97.6760101143396, 20.91077590071], [-97.6760101143396, 20.9101344781134], [-97.6766967598473, 20.9101344781134]]]]}, "properties": {"taskId": 662, "taskX": 119892, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.9094930527734], [-97.6760101143396, 20.9101344781134], [-97.6753234688319, 20.9101344781134], [-97.6753234688319, 20.9094930527734], [-97.6760101143396, 20.9094930527734]]]]}, "properties": {"taskId": 661, "taskX": 119893, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.9088516246899], [-97.6760101143396, 20.9094930527734], [-97.6753234688319, 20.9094930527734], [-97.6753234688319, 20.9088516246899], [-97.6760101143396, 20.9088516246899]]]]}, "properties": {"taskId": 660, "taskX": 119893, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.9094930527734], [-97.6766967598473, 20.9101344781134], [-97.6760101143396, 20.9101344781134], [-97.6760101143396, 20.9094930527734], [-97.6766967598473, 20.9094930527734]]]]}, "properties": {"taskId": 659, "taskX": 119892, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.9082101938631], [-97.6760101143396, 20.9088516246899], [-97.6753234688319, 20.9088516246899], [-97.6753234688319, 20.9082101938631], [-97.6760101143396, 20.9082101938631]]]]}, "properties": {"taskId": 657, "taskX": 119893, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.9082101938631], [-97.6766967598473, 20.9088516246899], [-97.6760101143396, 20.9088516246899], [-97.6760101143396, 20.9082101938631], [-97.6766967598473, 20.9082101938631]]]]}, "properties": {"taskId": 655, "taskX": 119892, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.9075687602929], [-97.6766967598473, 20.9082101938631], [-97.6760101143396, 20.9082101938631], [-97.6760101143396, 20.9075687602929], [-97.6766967598473, 20.9075687602929]]]]}, "properties": {"taskId": 654, "taskX": 119892, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.9069273239795], [-97.6760101143396, 20.9075687602929], [-97.6753234688319, 20.9075687602929], [-97.6753234688319, 20.9069273239795], [-97.6760101143396, 20.9069273239795]]]]}, "properties": {"taskId": 653, "taskX": 119893, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.906285884923], [-97.6760101143396, 20.9069273239795], [-97.6753234688319, 20.9069273239795], [-97.6753234688319, 20.906285884923], [-97.6760101143396, 20.906285884923]]]]}, "properties": {"taskId": 652, "taskX": 119893, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.9069273239795], [-97.6766967598473, 20.9075687602929], [-97.6760101143396, 20.9075687602929], [-97.6760101143396, 20.9069273239795], [-97.6766967598473, 20.9069273239795]]]]}, "properties": {"taskId": 651, "taskX": 119892, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.906285884923], [-97.6766967598473, 20.9069273239795], [-97.6760101143396, 20.9069273239795], [-97.6760101143396, 20.906285884923], [-97.6766967598473, 20.906285884923]]]]}, "properties": {"taskId": 650, "taskX": 119892, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.9056444431233], [-97.6760101143396, 20.906285884923], [-97.6753234688319, 20.906285884923], [-97.6753234688319, 20.9056444431233], [-97.6760101143396, 20.9056444431233]]]]}, "properties": {"taskId": 649, "taskX": 119893, "taskY": 293289, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.9050029985807], [-97.6760101143396, 20.9056444431233], [-97.6753234688319, 20.9056444431233], [-97.6753234688319, 20.9050029985807], [-97.6760101143396, 20.9050029985807]]]]}, "properties": {"taskId": 648, "taskX": 119893, "taskY": 293288, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.9056444431233], [-97.6766967598473, 20.906285884923], [-97.6760101143396, 20.906285884923], [-97.6760101143396, 20.9056444431233], [-97.6766967598473, 20.9056444431233]]]]}, "properties": {"taskId": 647, "taskX": 119892, "taskY": 293289, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.9050029985807], [-97.6766967598473, 20.9056444431233], [-97.6760101143396, 20.9056444431233], [-97.6760101143396, 20.9050029985807], [-97.6766967598473, 20.9050029985807]]]]}, "properties": {"taskId": 646, "taskX": 119892, "taskY": 293288, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.9043615512951], [-97.6760101143396, 20.9050029985807], [-97.6753234688319, 20.9050029985807], [-97.6753234688319, 20.9043615512951], [-97.6760101143396, 20.9043615512951]]]]}, "properties": {"taskId": 645, "taskX": 119893, "taskY": 293287, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.9043615512951], [-97.6766967598473, 20.9050029985807], [-97.6760101143396, 20.9050029985807], [-97.6760101143396, 20.9043615512951], [-97.6766967598473, 20.9043615512951]]]]}, "properties": {"taskId": 643, "taskX": 119892, "taskY": 293287, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.9037201012666], [-97.6766967598473, 20.9043615512951], [-97.6760101143396, 20.9043615512951], [-97.6760101143396, 20.9037201012666], [-97.6766967598473, 20.9037201012666]]]]}, "properties": {"taskId": 642, "taskX": 119892, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.9030786484952], [-97.6760101143396, 20.9037201012666], [-97.6753234688319, 20.9037201012666], [-97.6753234688319, 20.9030786484952], [-97.6760101143396, 20.9030786484952]]]]}, "properties": {"taskId": 641, "taskX": 119893, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.9024371929812], [-97.6760101143396, 20.9030786484952], [-97.6753234688319, 20.9030786484952], [-97.6753234688319, 20.9024371929812], [-97.6760101143396, 20.9024371929812]]]]}, "properties": {"taskId": 640, "taskX": 119893, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.9030786484952], [-97.6766967598473, 20.9037201012666], [-97.6760101143396, 20.9037201012666], [-97.6760101143396, 20.9030786484952], [-97.6766967598473, 20.9030786484952]]]]}, "properties": {"taskId": 639, "taskX": 119892, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.9024371929812], [-97.6766967598473, 20.9030786484952], [-97.6760101143396, 20.9030786484952], [-97.6760101143396, 20.9024371929812], [-97.6766967598473, 20.9024371929812]]]]}, "properties": {"taskId": 638, "taskX": 119892, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.9017957347244], [-97.6760101143396, 20.9024371929812], [-97.6753234688319, 20.9024371929812], [-97.6753234688319, 20.9017957347244], [-97.6760101143396, 20.9017957347244]]]]}, "properties": {"taskId": 637, "taskX": 119893, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.9011542737251], [-97.6760101143396, 20.9017957347244], [-97.6753234688319, 20.9017957347244], [-97.6753234688319, 20.9011542737251], [-97.6760101143396, 20.9011542737251]]]]}, "properties": {"taskId": 636, "taskX": 119893, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.9017957347244], [-97.6766967598473, 20.9024371929812], [-97.6760101143396, 20.9024371929812], [-97.6760101143396, 20.9017957347244], [-97.6766967598473, 20.9017957347244]]]]}, "properties": {"taskId": 635, "taskX": 119892, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.9011542737251], [-97.6766967598473, 20.9017957347244], [-97.6760101143396, 20.9017957347244], [-97.6760101143396, 20.9011542737251], [-97.6766967598473, 20.9011542737251]]]]}, "properties": {"taskId": 634, "taskX": 119892, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.8998713434988], [-97.6766967598473, 20.9011542737251], [-97.6753234688319, 20.9011542737251], [-97.6753234688319, 20.8998713434988], [-97.6766967598473, 20.8998713434988]]]]}, "properties": {"taskId": 633, "taskX": 59946, "taskY": 146640, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.899229874272], [-97.6760101143396, 20.8998713434988], [-97.6753234688319, 20.8998713434988], [-97.6753234688319, 20.899229874272], [-97.6760101143396, 20.899229874272]]]]}, "properties": {"taskId": 632, "taskX": 119893, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.8985884023029], [-97.6760101143396, 20.899229874272], [-97.6753234688319, 20.899229874272], [-97.6753234688319, 20.8985884023029], [-97.6760101143396, 20.8985884023029]]]]}, "properties": {"taskId": 631, "taskX": 119893, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.899229874272], [-97.6766967598473, 20.8998713434988], [-97.6760101143396, 20.8998713434988], [-97.6760101143396, 20.899229874272], [-97.6766967598473, 20.899229874272]]]]}, "properties": {"taskId": 630, "taskX": 119892, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.8985884023029], [-97.6766967598473, 20.899229874272], [-97.6760101143396, 20.899229874272], [-97.6760101143396, 20.8985884023029], [-97.6766967598473, 20.8985884023029]]]]}, "properties": {"taskId": 629, "taskX": 119892, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.8979469275915], [-97.6760101143396, 20.8985884023029], [-97.6753234688319, 20.8985884023029], [-97.6753234688319, 20.8979469275915], [-97.6760101143396, 20.8979469275915]]]]}, "properties": {"taskId": 628, "taskX": 119893, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.8973054501379], [-97.6760101143396, 20.8979469275915], [-97.6753234688319, 20.8979469275915], [-97.6753234688319, 20.8973054501379], [-97.6760101143396, 20.8973054501379]]]]}, "properties": {"taskId": 627, "taskX": 119893, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.8979469275915], [-97.6766967598473, 20.8985884023029], [-97.6760101143396, 20.8985884023029], [-97.6760101143396, 20.8979469275915], [-97.6766967598473, 20.8979469275915]]]]}, "properties": {"taskId": 626, "taskX": 119892, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.8973054501379], [-97.6766967598473, 20.8979469275915], [-97.6760101143396, 20.8979469275915], [-97.6760101143396, 20.8973054501379], [-97.6766967598473, 20.8973054501379]]]]}, "properties": {"taskId": 625, "taskX": 119892, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.8966639699422], [-97.6760101143396, 20.8973054501379], [-97.6753234688319, 20.8973054501379], [-97.6753234688319, 20.8966639699422], [-97.6760101143396, 20.8966639699422]]]]}, "properties": {"taskId": 624, "taskX": 119893, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6760101143396, 20.8960224870044], [-97.6760101143396, 20.8966639699422], [-97.6753234688319, 20.8966639699422], [-97.6753234688319, 20.8960224870044], [-97.6760101143396, 20.8960224870044]]]]}, "properties": {"taskId": 623, "taskX": 119893, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.8966639699422], [-97.6766967598473, 20.8973054501379], [-97.6760101143396, 20.8973054501379], [-97.6760101143396, 20.8966639699422], [-97.6766967598473, 20.8966639699422]]]]}, "properties": {"taskId": 622, "taskX": 119892, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.8960224870044], [-97.6766967598473, 20.8966639699422], [-97.6760101143396, 20.8966639699422], [-97.6760101143396, 20.8960224870044], [-97.6766967598473, 20.8960224870044]]]]}, "properties": {"taskId": 621, "taskX": 119892, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.8947395129029], [-97.6766967598473, 20.8960224870044], [-97.6753234688319, 20.8960224870044], [-97.6753234688319, 20.8947395129029], [-97.6766967598473, 20.8947395129029]]]]}, "properties": {"taskId": 620, "taskX": 59946, "taskY": 146636, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6766967598473, 20.8934565278341], [-97.6766967598473, 20.8947395129029], [-97.6753234688319, 20.8947395129029], [-97.6753234688319, 20.8934565278341], [-97.6766967598473, 20.8934565278341]]]]}, "properties": {"taskId": 619, "taskX": 59946, "taskY": 146635, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9216796650287], [-97.6780700508627, 20.9229624086873], [-97.6766967598473, 20.9229624086873], [-97.6766967598473, 20.9216796650287], [-97.6780700508627, 20.9216796650287]]]]}, "properties": {"taskId": 618, "taskX": 59945, "taskY": 146657, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9210382890822], [-97.6780700508627, 20.9216796650287], [-97.677383405355, 20.9216796650287], [-97.677383405355, 20.9210382890822], [-97.6780700508627, 20.9210382890822]]]]}, "properties": {"taskId": 615, "taskX": 119890, "taskY": 293313, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.920396910391], [-97.6780700508627, 20.9210382890822], [-97.677383405355, 20.9210382890822], [-97.677383405355, 20.920396910391], [-97.6780700508627, 20.920396910391]]]]}, "properties": {"taskId": 614, "taskX": 119890, "taskY": 293312, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6567840401243, 20.8947395129029], [-97.6567840401243, 20.8953810013247], [-97.6560973946166, 20.8953810013247], [-97.6560973946166, 20.8947395129029], [-97.6567840401243, 20.8947395129029]]]]}, "properties": {"taskId": 1585, "taskX": 119921, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.657470685632, 20.8953810013247], [-97.657470685632, 20.8960224870044], [-97.6567840401243, 20.8960224870044], [-97.6567840401243, 20.8953810013247], [-97.657470685632, 20.8953810013247]]]]}, "properties": {"taskId": 1584, "taskX": 119920, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6567840401243, 20.8940980217394], [-97.6567840401243, 20.8947395129029], [-97.6560973946166, 20.8947395129029], [-97.6560973946166, 20.8940980217394], [-97.6567840401243, 20.8940980217394]]]]}, "properties": {"taskId": 1582, "taskX": 119921, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6567840401243, 20.8934565278341], [-97.6567840401243, 20.8940980217394], [-97.6560973946166, 20.8940980217394], [-97.6560973946166, 20.8934565278341], [-97.6567840401243, 20.8934565278341]]]]}, "properties": {"taskId": 1581, "taskX": 119921, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.657470685632, 20.8940980217394], [-97.657470685632, 20.8947395129029], [-97.6567840401243, 20.8947395129029], [-97.6567840401243, 20.8940980217394], [-97.657470685632, 20.8940980217394]]]]}, "properties": {"taskId": 1580, "taskX": 119920, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.657470685632, 20.8934565278341], [-97.657470685632, 20.8940980217394], [-97.6567840401243, 20.8940980217394], [-97.6567840401243, 20.8934565278341], [-97.657470685632, 20.8934565278341]]]]}, "properties": {"taskId": 1579, "taskX": 119920, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6567840401243, 20.892815031187], [-97.6567840401243, 20.8934565278341], [-97.6560973946166, 20.8934565278341], [-97.6560973946166, 20.892815031187], [-97.6567840401243, 20.892815031187]]]]}, "properties": {"taskId": 1578, "taskX": 119921, "taskY": 293269, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6567840401243, 20.8921735317983], [-97.6567840401243, 20.892815031187], [-97.6560973946166, 20.892815031187], [-97.6560973946166, 20.8921735317983], [-97.6567840401243, 20.8921735317983]]]]}, "properties": {"taskId": 1577, "taskX": 119921, "taskY": 293268, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.657470685632, 20.8921735317983], [-97.657470685632, 20.892815031187], [-97.6567840401243, 20.892815031187], [-97.6567840401243, 20.8921735317983], [-97.657470685632, 20.8921735317983]]]]}, "properties": {"taskId": 1575, "taskX": 119920, "taskY": 293268, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6567840401243, 20.891532029668], [-97.6567840401243, 20.8921735317983], [-97.6560973946166, 20.8921735317983], [-97.6560973946166, 20.891532029668], [-97.6567840401243, 20.891532029668]]]]}, "properties": {"taskId": 1574, "taskX": 119921, "taskY": 293267, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6567840401243, 20.8908905247962], [-97.6567840401243, 20.891532029668], [-97.6560973946166, 20.891532029668], [-97.6560973946166, 20.8908905247962], [-97.6567840401243, 20.8908905247962]]]]}, "properties": {"taskId": 1573, "taskX": 119921, "taskY": 293266, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.657470685632, 20.891532029668], [-97.657470685632, 20.8921735317983], [-97.6567840401243, 20.8921735317983], [-97.6567840401243, 20.891532029668], [-97.657470685632, 20.891532029668]]]]}, "properties": {"taskId": 1572, "taskX": 119920, "taskY": 293267, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.657470685632, 20.8908905247962], [-97.657470685632, 20.891532029668], [-97.6567840401243, 20.891532029668], [-97.6567840401243, 20.8908905247962], [-97.657470685632, 20.8908905247962]]]]}, "properties": {"taskId": 1571, "taskX": 119920, "taskY": 293266, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6567840401243, 20.890249017183], [-97.6567840401243, 20.8908905247962], [-97.6560973946166, 20.8908905247962], [-97.6560973946166, 20.890249017183], [-97.6567840401243, 20.890249017183]]]]}, "properties": {"taskId": 1570, "taskX": 119921, "taskY": 293265, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6567840401243, 20.8896075068283], [-97.6567840401243, 20.890249017183], [-97.6560973946166, 20.890249017183], [-97.6560973946166, 20.8896075068283], [-97.6567840401243, 20.8896075068283]]]]}, "properties": {"taskId": 1569, "taskX": 119921, "taskY": 293264, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.657470685632, 20.890249017183], [-97.657470685632, 20.8908905247962], [-97.6567840401243, 20.8908905247962], [-97.6567840401243, 20.890249017183], [-97.657470685632, 20.890249017183]]]]}, "properties": {"taskId": 1568, "taskX": 119920, "taskY": 293265, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.657470685632, 20.8896075068283], [-97.657470685632, 20.890249017183], [-97.6567840401243, 20.890249017183], [-97.6567840401243, 20.8896075068283], [-97.657470685632, 20.8896075068283]]]]}, "properties": {"taskId": 1567, "taskX": 119920, "taskY": 293264, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6567840401243, 20.8889659937324], [-97.6567840401243, 20.8896075068283], [-97.6560973946166, 20.8896075068283], [-97.6560973946166, 20.8889659937324], [-97.6567840401243, 20.8889659937324]]]]}, "properties": {"taskId": 1566, "taskX": 119921, "taskY": 293263, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.657470685632, 20.8889659937324], [-97.657470685632, 20.8896075068283], [-97.6567840401243, 20.8896075068283], [-97.6567840401243, 20.8889659937324], [-97.657470685632, 20.8889659937324]]]]}, "properties": {"taskId": 1564, "taskX": 119920, "taskY": 293263, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.657470685632, 20.8883244778952], [-97.657470685632, 20.8889659937324], [-97.6567840401243, 20.8889659937324], [-97.6567840401243, 20.8883244778952], [-97.657470685632, 20.8883244778952]]]]}, "properties": {"taskId": 1563, "taskX": 119920, "taskY": 293262, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6567840401243, 20.8876829593169], [-97.6567840401243, 20.8883244778952], [-97.6560973946166, 20.8883244778952], [-97.6560973946166, 20.8876829593169], [-97.6567840401243, 20.8876829593169]]]]}, "properties": {"taskId": 1562, "taskX": 119921, "taskY": 293261, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6567840401243, 20.8870414379975], [-97.6567840401243, 20.8876829593169], [-97.6560973946166, 20.8876829593169], [-97.6560973946166, 20.8870414379975], [-97.6567840401243, 20.8870414379975]]]]}, "properties": {"taskId": 1561, "taskX": 119921, "taskY": 293260, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.657470685632, 20.8876829593169], [-97.657470685632, 20.8883244778952], [-97.6567840401243, 20.8883244778952], [-97.6567840401243, 20.8876829593169], [-97.657470685632, 20.8876829593169]]]]}, "properties": {"taskId": 1560, "taskX": 119920, "taskY": 293261, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.657470685632, 20.8870414379975], [-97.657470685632, 20.8876829593169], [-97.6567840401243, 20.8876829593169], [-97.6567840401243, 20.8870414379975], [-97.657470685632, 20.8870414379975]]]]}, "properties": {"taskId": 1559, "taskX": 119920, "taskY": 293260, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6567840401243, 20.8857583871356], [-97.6567840401243, 20.886399913937], [-97.6560973946166, 20.886399913937], [-97.6560973946166, 20.8857583871356], [-97.6567840401243, 20.8857583871356]]]]}, "properties": {"taskId": 1557, "taskX": 119921, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.657470685632, 20.886399913937], [-97.657470685632, 20.8870414379975], [-97.6567840401243, 20.8870414379975], [-97.6567840401243, 20.886399913937], [-97.657470685632, 20.886399913937]]]]}, "properties": {"taskId": 1556, "taskX": 119920, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6567840401243, 20.8844753253101], [-97.6567840401243, 20.8851168575932], [-97.6560973946166, 20.8851168575932], [-97.6560973946166, 20.8844753253101], [-97.6567840401243, 20.8844753253101]]]]}, "properties": {"taskId": 1553, "taskX": 119921, "taskY": 293256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.657470685632, 20.8851168575932], [-97.657470685632, 20.8857583871356], [-97.6567840401243, 20.8857583871356], [-97.6567840401243, 20.8851168575932], [-97.657470685632, 20.8851168575932]]]]}, "properties": {"taskId": 1552, "taskX": 119920, "taskY": 293257, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.657470685632, 20.8844753253101], [-97.657470685632, 20.8851168575932], [-97.6567840401243, 20.8851168575932], [-97.6567840401243, 20.8844753253101], [-97.657470685632, 20.8844753253101]]]]}, "properties": {"taskId": 1551, "taskX": 119920, "taskY": 293256, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6567840401243, 20.8838337902862], [-97.6567840401243, 20.8844753253101], [-97.6560973946166, 20.8844753253101], [-97.6560973946166, 20.8838337902862], [-97.6567840401243, 20.8838337902862]]]]}, "properties": {"taskId": 1550, "taskX": 119921, "taskY": 293255, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6567840401243, 20.8831922525216], [-97.6567840401243, 20.8838337902862], [-97.6560973946166, 20.8838337902862], [-97.6560973946166, 20.8831922525216], [-97.6567840401243, 20.8831922525216]]]]}, "properties": {"taskId": 1549, "taskX": 119921, "taskY": 293254, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.657470685632, 20.8838337902862], [-97.657470685632, 20.8844753253101], [-97.6567840401243, 20.8844753253101], [-97.6567840401243, 20.8838337902862], [-97.657470685632, 20.8838337902862]]]]}, "properties": {"taskId": 1548, "taskX": 119920, "taskY": 293255, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.657470685632, 20.8831922525216], [-97.657470685632, 20.8838337902862], [-97.6567840401243, 20.8838337902862], [-97.6567840401243, 20.8831922525216], [-97.657470685632, 20.8831922525216]]]]}, "properties": {"taskId": 1547, "taskX": 119920, "taskY": 293254, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6588439766474, 20.8973054501379], [-97.6588439766474, 20.8985884023029], [-97.657470685632, 20.8985884023029], [-97.657470685632, 20.8973054501379], [-97.6588439766474, 20.8973054501379]]]]}, "properties": {"taskId": 1546, "taskX": 59959, "taskY": 146638, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6581573311397, 20.8966639699422], [-97.6581573311397, 20.8973054501379], [-97.657470685632, 20.8973054501379], [-97.657470685632, 20.8966639699422], [-97.6581573311397, 20.8966639699422]]]]}, "properties": {"taskId": 1545, "taskX": 119919, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6581573311397, 20.8960224870044], [-97.6581573311397, 20.8966639699422], [-97.657470685632, 20.8966639699422], [-97.657470685632, 20.8960224870044], [-97.6581573311397, 20.8960224870044]]]]}, "properties": {"taskId": 1544, "taskX": 119919, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6588439766474, 20.8966639699422], [-97.6588439766474, 20.8973054501379], [-97.6581573311397, 20.8973054501379], [-97.6581573311397, 20.8966639699422], [-97.6588439766474, 20.8966639699422]]]]}, "properties": {"taskId": 1543, "taskX": 119918, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6588439766474, 20.8960224870044], [-97.6588439766474, 20.8966639699422], [-97.6581573311397, 20.8966639699422], [-97.6581573311397, 20.8960224870044], [-97.6588439766474, 20.8960224870044]]]]}, "properties": {"taskId": 1542, "taskX": 119918, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6581573311397, 20.8953810013247], [-97.6581573311397, 20.8960224870044], [-97.657470685632, 20.8960224870044], [-97.657470685632, 20.8953810013247], [-97.6581573311397, 20.8953810013247]]]]}, "properties": {"taskId": 1541, "taskX": 119919, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6581573311397, 20.8947395129029], [-97.6581573311397, 20.8953810013247], [-97.657470685632, 20.8953810013247], [-97.657470685632, 20.8947395129029], [-97.6581573311397, 20.8947395129029]]]]}, "properties": {"taskId": 1540, "taskX": 119919, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6588439766474, 20.8953810013247], [-97.6588439766474, 20.8960224870044], [-97.6581573311397, 20.8960224870044], [-97.6581573311397, 20.8953810013247], [-97.6588439766474, 20.8953810013247]]]]}, "properties": {"taskId": 1539, "taskX": 119918, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6588439766474, 20.8947395129029], [-97.6588439766474, 20.8953810013247], [-97.6581573311397, 20.8953810013247], [-97.6581573311397, 20.8947395129029], [-97.6588439766474, 20.8947395129029]]]]}, "properties": {"taskId": 1538, "taskX": 119918, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6581573311397, 20.8934565278341], [-97.6581573311397, 20.8940980217394], [-97.657470685632, 20.8940980217394], [-97.657470685632, 20.8934565278341], [-97.6581573311397, 20.8934565278341]]]]}, "properties": {"taskId": 1536, "taskX": 119919, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6588439766474, 20.8940980217394], [-97.6588439766474, 20.8947395129029], [-97.6581573311397, 20.8947395129029], [-97.6581573311397, 20.8940980217394], [-97.6588439766474, 20.8940980217394]]]]}, "properties": {"taskId": 1535, "taskX": 119918, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6588439766474, 20.8934565278341], [-97.6588439766474, 20.8940980217394], [-97.6581573311397, 20.8940980217394], [-97.6581573311397, 20.8934565278341], [-97.6588439766474, 20.8934565278341]]]]}, "properties": {"taskId": 1534, "taskX": 119918, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6581573311397, 20.892815031187], [-97.6581573311397, 20.8934565278341], [-97.657470685632, 20.8934565278341], [-97.657470685632, 20.892815031187], [-97.6581573311397, 20.892815031187]]]]}, "properties": {"taskId": 1533, "taskX": 119919, "taskY": 293269, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6581573311397, 20.8921735317983], [-97.6581573311397, 20.892815031187], [-97.657470685632, 20.892815031187], [-97.657470685632, 20.8921735317983], [-97.6581573311397, 20.8921735317983]]]]}, "properties": {"taskId": 1532, "taskX": 119919, "taskY": 293268, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6588439766474, 20.892815031187], [-97.6588439766474, 20.8934565278341], [-97.6581573311397, 20.8934565278341], [-97.6581573311397, 20.892815031187], [-97.6588439766474, 20.892815031187]]]]}, "properties": {"taskId": 1531, "taskX": 119918, "taskY": 293269, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6588439766474, 20.8921735317983], [-97.6588439766474, 20.892815031187], [-97.6581573311397, 20.892815031187], [-97.6581573311397, 20.8921735317983], [-97.6588439766474, 20.8921735317983]]]]}, "properties": {"taskId": 1530, "taskX": 119918, "taskY": 293268, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6581573311397, 20.891532029668], [-97.6581573311397, 20.8921735317983], [-97.657470685632, 20.8921735317983], [-97.657470685632, 20.891532029668], [-97.6581573311397, 20.891532029668]]]]}, "properties": {"taskId": 1529, "taskX": 119919, "taskY": 293267, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.8966639699422], [-97.6670837227396, 20.8973054501379], [-97.6663970772319, 20.8973054501379], [-97.6663970772319, 20.8966639699422], [-97.6670837227396, 20.8966639699422]]]]}, "properties": {"taskId": 1122, "taskX": 119906, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.8953810013247], [-97.6663970772319, 20.8960224870044], [-97.6657104317242, 20.8960224870044], [-97.6657104317242, 20.8953810013247], [-97.6663970772319, 20.8953810013247]]]]}, "properties": {"taskId": 1120, "taskX": 119907, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.8947395129029], [-97.6663970772319, 20.8953810013247], [-97.6657104317242, 20.8953810013247], [-97.6657104317242, 20.8947395129029], [-97.6663970772319, 20.8947395129029]]]]}, "properties": {"taskId": 1119, "taskX": 119907, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.8953810013247], [-97.6670837227396, 20.8960224870044], [-97.6663970772319, 20.8960224870044], [-97.6663970772319, 20.8953810013247], [-97.6670837227396, 20.8953810013247]]]]}, "properties": {"taskId": 1118, "taskX": 119906, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.8947395129029], [-97.6670837227396, 20.8953810013247], [-97.6663970772319, 20.8953810013247], [-97.6663970772319, 20.8947395129029], [-97.6670837227396, 20.8947395129029]]]]}, "properties": {"taskId": 1117, "taskX": 119906, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.8940980217394], [-97.6663970772319, 20.8947395129029], [-97.6657104317242, 20.8947395129029], [-97.6657104317242, 20.8940980217394], [-97.6663970772319, 20.8940980217394]]]]}, "properties": {"taskId": 1116, "taskX": 119907, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.8934565278341], [-97.6663970772319, 20.8940980217394], [-97.6657104317242, 20.8940980217394], [-97.6657104317242, 20.8934565278341], [-97.6663970772319, 20.8934565278341]]]]}, "properties": {"taskId": 1115, "taskX": 119907, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.8940980217394], [-97.6670837227396, 20.8947395129029], [-97.6663970772319, 20.8947395129029], [-97.6663970772319, 20.8940980217394], [-97.6670837227396, 20.8940980217394]]]]}, "properties": {"taskId": 1114, "taskX": 119906, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.8934565278341], [-97.6670837227396, 20.8940980217394], [-97.6663970772319, 20.8940980217394], [-97.6663970772319, 20.8934565278341], [-97.6670837227396, 20.8934565278341]]]]}, "properties": {"taskId": 1113, "taskX": 119906, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.8921735317983], [-97.6663970772319, 20.892815031187], [-97.6657104317242, 20.892815031187], [-97.6657104317242, 20.8921735317983], [-97.6663970772319, 20.8921735317983]]]]}, "properties": {"taskId": 1111, "taskX": 119907, "taskY": 293268, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.892815031187], [-97.6670837227396, 20.8934565278341], [-97.6663970772319, 20.8934565278341], [-97.6663970772319, 20.892815031187], [-97.6670837227396, 20.892815031187]]]]}, "properties": {"taskId": 1110, "taskX": 119906, "taskY": 293269, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.8921735317983], [-97.6670837227396, 20.892815031187], [-97.6663970772319, 20.892815031187], [-97.6663970772319, 20.8921735317983], [-97.6670837227396, 20.8921735317983]]]]}, "properties": {"taskId": 1109, "taskX": 119906, "taskY": 293268, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.891532029668], [-97.6663970772319, 20.8921735317983], [-97.6657104317242, 20.8921735317983], [-97.6657104317242, 20.891532029668], [-97.6663970772319, 20.891532029668]]]]}, "properties": {"taskId": 1108, "taskX": 119907, "taskY": 293267, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.891532029668], [-97.6670837227396, 20.8921735317983], [-97.6663970772319, 20.8921735317983], [-97.6663970772319, 20.891532029668], [-97.6670837227396, 20.891532029668]]]]}, "properties": {"taskId": 1106, "taskX": 119906, "taskY": 293267, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.8908905247962], [-97.6670837227396, 20.891532029668], [-97.6663970772319, 20.891532029668], [-97.6663970772319, 20.8908905247962], [-97.6670837227396, 20.8908905247962]]]]}, "properties": {"taskId": 1105, "taskX": 119906, "taskY": 293266, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.8896075068283], [-97.6670837227396, 20.8908905247962], [-97.6657104317242, 20.8908905247962], [-97.6657104317242, 20.8896075068283], [-97.6670837227396, 20.8896075068283]]]]}, "properties": {"taskId": 1104, "taskX": 59953, "taskY": 146632, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.8889659937324], [-97.6663970772319, 20.8896075068283], [-97.6657104317242, 20.8896075068283], [-97.6657104317242, 20.8889659937324], [-97.6663970772319, 20.8889659937324]]]]}, "properties": {"taskId": 1103, "taskX": 119907, "taskY": 293263, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.8883244778952], [-97.6663970772319, 20.8889659937324], [-97.6657104317242, 20.8889659937324], [-97.6657104317242, 20.8883244778952], [-97.6663970772319, 20.8883244778952]]]]}, "properties": {"taskId": 1102, "taskX": 119907, "taskY": 293262, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.8889659937324], [-97.6670837227396, 20.8896075068283], [-97.6663970772319, 20.8896075068283], [-97.6663970772319, 20.8889659937324], [-97.6670837227396, 20.8889659937324]]]]}, "properties": {"taskId": 1101, "taskX": 119906, "taskY": 293263, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.8883244778952], [-97.6670837227396, 20.8889659937324], [-97.6663970772319, 20.8889659937324], [-97.6663970772319, 20.8883244778952], [-97.6670837227396, 20.8883244778952]]]]}, "properties": {"taskId": 1100, "taskX": 119906, "taskY": 293262, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.8870414379975], [-97.6663970772319, 20.8876829593169], [-97.6657104317242, 20.8876829593169], [-97.6657104317242, 20.8870414379975], [-97.6663970772319, 20.8870414379975]]]]}, "properties": {"taskId": 1098, "taskX": 119907, "taskY": 293260, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.8876829593169], [-97.6670837227396, 20.8883244778952], [-97.6663970772319, 20.8883244778952], [-97.6663970772319, 20.8876829593169], [-97.6670837227396, 20.8876829593169]]]]}, "properties": {"taskId": 1097, "taskX": 119906, "taskY": 293261, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.8870414379975], [-97.6670837227396, 20.8876829593169], [-97.6663970772319, 20.8876829593169], [-97.6663970772319, 20.8870414379975], [-97.6670837227396, 20.8870414379975]]]]}, "properties": {"taskId": 1096, "taskX": 119906, "taskY": 293260, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6663970772319, 20.886399913937], [-97.6663970772319, 20.8870414379975], [-97.6657104317242, 20.8870414379975], [-97.6657104317242, 20.886399913937], [-97.6663970772319, 20.886399913937]]]]}, "properties": {"taskId": 1095, "taskX": 119907, "taskY": 293259, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.8857583871356], [-97.6670837227396, 20.886399913937], [-97.6663970772319, 20.886399913937], [-97.6663970772319, 20.8857583871356], [-97.6670837227396, 20.8857583871356]]]]}, "properties": {"taskId": 1092, "taskX": 119906, "taskY": 293258, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.8844753253101], [-97.6670837227396, 20.8857583871356], [-97.6657104317242, 20.8857583871356], [-97.6657104317242, 20.8844753253101], [-97.6670837227396, 20.8844753253101]]]]}, "properties": {"taskId": 1091, "taskX": 59953, "taskY": 146628, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6670837227396, 20.8819091687706], [-97.6670837227396, 20.8831922525216], [-97.6657104317242, 20.8831922525216], [-97.6657104317242, 20.8819091687706], [-97.6670837227396, 20.8819091687706]]]]}, "properties": {"taskId": 1089, "taskX": 59953, "taskY": 146626, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.919114144775], [-97.668457013755, 20.920396910391], [-97.6670837227396, 20.920396910391], [-97.6670837227396, 20.919114144775], [-97.668457013755, 20.919114144775]]]]}, "properties": {"taskId": 1088, "taskX": 59952, "taskY": 146655, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.9178313681812], [-97.668457013755, 20.919114144775], [-97.6670837227396, 20.919114144775], [-97.6670837227396, 20.9178313681812], [-97.668457013755, 20.9178313681812]]]]}, "properties": {"taskId": 1087, "taskX": 59952, "taskY": 146654, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.9165485806099], [-97.668457013755, 20.9178313681812], [-97.6670837227396, 20.9178313681812], [-97.6670837227396, 20.9165485806099], [-97.668457013755, 20.9165485806099]]]]}, "properties": {"taskId": 1086, "taskX": 59952, "taskY": 146653, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.9146243786719], [-97.6677703682473, 20.9152657820619], [-97.6670837227396, 20.9152657820619], [-97.6670837227396, 20.9146243786719], [-97.6677703682473, 20.9146243786719]]]]}, "properties": {"taskId": 1084, "taskX": 119905, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.9139829725378], [-97.6677703682473, 20.9146243786719], [-97.6670837227396, 20.9146243786719], [-97.6670837227396, 20.9139829725378], [-97.6677703682473, 20.9139829725378]]]]}, "properties": {"taskId": 1083, "taskX": 119905, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.9146243786719], [-97.668457013755, 20.9152657820619], [-97.6677703682473, 20.9152657820619], [-97.6677703682473, 20.9146243786719], [-97.668457013755, 20.9146243786719]]]]}, "properties": {"taskId": 1082, "taskX": 119904, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.9139829725378], [-97.668457013755, 20.9146243786719], [-97.6677703682473, 20.9146243786719], [-97.6677703682473, 20.9139829725378], [-97.668457013755, 20.9139829725378]]]]}, "properties": {"taskId": 1081, "taskX": 119904, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.9133415636598], [-97.6677703682473, 20.9139829725378], [-97.6670837227396, 20.9139829725378], [-97.6670837227396, 20.9133415636598], [-97.6677703682473, 20.9133415636598]]]]}, "properties": {"taskId": 1080, "taskX": 119905, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.9127001520379], [-97.6677703682473, 20.9133415636598], [-97.6670837227396, 20.9133415636598], [-97.6670837227396, 20.9127001520379], [-97.6677703682473, 20.9127001520379]]]]}, "properties": {"taskId": 1079, "taskX": 119905, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.9133415636598], [-97.668457013755, 20.9139829725378], [-97.6677703682473, 20.9139829725378], [-97.6677703682473, 20.9133415636598], [-97.668457013755, 20.9133415636598]]]]}, "properties": {"taskId": 1078, "taskX": 119904, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.9127001520379], [-97.668457013755, 20.9133415636598], [-97.6677703682473, 20.9133415636598], [-97.6677703682473, 20.9127001520379], [-97.668457013755, 20.9127001520379]]]]}, "properties": {"taskId": 1077, "taskX": 119904, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.9120587376723], [-97.6677703682473, 20.9127001520379], [-97.6670837227396, 20.9127001520379], [-97.6670837227396, 20.9120587376723], [-97.6677703682473, 20.9120587376723]]]]}, "properties": {"taskId": 1076, "taskX": 119905, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.911417320563], [-97.6677703682473, 20.9120587376723], [-97.6670837227396, 20.9120587376723], [-97.6670837227396, 20.911417320563], [-97.6677703682473, 20.911417320563]]]]}, "properties": {"taskId": 1075, "taskX": 119905, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.9120587376723], [-97.668457013755, 20.9127001520379], [-97.6677703682473, 20.9127001520379], [-97.6677703682473, 20.9120587376723], [-97.668457013755, 20.9120587376723]]]]}, "properties": {"taskId": 1074, "taskX": 119904, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.911417320563], [-97.668457013755, 20.9120587376723], [-97.6677703682473, 20.9120587376723], [-97.6677703682473, 20.911417320563], [-97.668457013755, 20.911417320563]]]]}, "properties": {"taskId": 1073, "taskX": 119904, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.91077590071], [-97.6677703682473, 20.911417320563], [-97.6670837227396, 20.911417320563], [-97.6670837227396, 20.91077590071], [-97.6677703682473, 20.91077590071]]]]}, "properties": {"taskId": 1072, "taskX": 119905, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.9101344781134], [-97.6677703682473, 20.91077590071], [-97.6670837227396, 20.91077590071], [-97.6670837227396, 20.9101344781134], [-97.6677703682473, 20.9101344781134]]]]}, "properties": {"taskId": 1071, "taskX": 119905, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.91077590071], [-97.668457013755, 20.911417320563], [-97.6677703682473, 20.911417320563], [-97.6677703682473, 20.91077590071], [-97.668457013755, 20.91077590071]]]]}, "properties": {"taskId": 1070, "taskX": 119904, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.9101344781134], [-97.668457013755, 20.91077590071], [-97.6677703682473, 20.91077590071], [-97.6677703682473, 20.9101344781134], [-97.668457013755, 20.9101344781134]]]]}, "properties": {"taskId": 1069, "taskX": 119904, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.9094930527734], [-97.6677703682473, 20.9101344781134], [-97.6670837227396, 20.9101344781134], [-97.6670837227396, 20.9094930527734], [-97.6677703682473, 20.9094930527734]]]]}, "properties": {"taskId": 1068, "taskX": 119905, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.9088516246899], [-97.6677703682473, 20.9094930527734], [-97.6670837227396, 20.9094930527734], [-97.6670837227396, 20.9088516246899], [-97.6677703682473, 20.9088516246899]]]]}, "properties": {"taskId": 1067, "taskX": 119905, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.9094930527734], [-97.668457013755, 20.9101344781134], [-97.6677703682473, 20.9101344781134], [-97.6677703682473, 20.9094930527734], [-97.668457013755, 20.9094930527734]]]]}, "properties": {"taskId": 1066, "taskX": 119904, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.9088516246899], [-97.668457013755, 20.9094930527734], [-97.6677703682473, 20.9094930527734], [-97.6677703682473, 20.9088516246899], [-97.668457013755, 20.9088516246899]]]]}, "properties": {"taskId": 1065, "taskX": 119904, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.9082101938631], [-97.6677703682473, 20.9088516246899], [-97.6670837227396, 20.9088516246899], [-97.6670837227396, 20.9082101938631], [-97.6677703682473, 20.9082101938631]]]]}, "properties": {"taskId": 1064, "taskX": 119905, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.9075687602929], [-97.6677703682473, 20.9082101938631], [-97.6670837227396, 20.9082101938631], [-97.6670837227396, 20.9075687602929], [-97.6677703682473, 20.9075687602929]]]]}, "properties": {"taskId": 1063, "taskX": 119905, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.9082101938631], [-97.668457013755, 20.9088516246899], [-97.6677703682473, 20.9088516246899], [-97.6677703682473, 20.9082101938631], [-97.668457013755, 20.9082101938631]]]]}, "properties": {"taskId": 1062, "taskX": 119904, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.9075687602929], [-97.668457013755, 20.9082101938631], [-97.6677703682473, 20.9082101938631], [-97.6677703682473, 20.9075687602929], [-97.668457013755, 20.9075687602929]]]]}, "properties": {"taskId": 1061, "taskX": 119904, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.906285884923], [-97.6677703682473, 20.9069273239795], [-97.6670837227396, 20.9069273239795], [-97.6670837227396, 20.906285884923], [-97.6677703682473, 20.906285884923]]]]}, "properties": {"taskId": 1059, "taskX": 119905, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.9069273239795], [-97.668457013755, 20.9075687602929], [-97.6677703682473, 20.9075687602929], [-97.6677703682473, 20.9069273239795], [-97.668457013755, 20.9069273239795]]]]}, "properties": {"taskId": 1058, "taskX": 119904, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.906285884923], [-97.668457013755, 20.9069273239795], [-97.6677703682473, 20.9069273239795], [-97.6677703682473, 20.906285884923], [-97.668457013755, 20.906285884923]]]]}, "properties": {"taskId": 1057, "taskX": 119904, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.9056444431233], [-97.6677703682473, 20.906285884923], [-97.6670837227396, 20.906285884923], [-97.6670837227396, 20.9056444431233], [-97.6677703682473, 20.9056444431233]]]]}, "properties": {"taskId": 1056, "taskX": 119905, "taskY": 293289, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.9050029985807], [-97.6677703682473, 20.9056444431233], [-97.6670837227396, 20.9056444431233], [-97.6670837227396, 20.9050029985807], [-97.6677703682473, 20.9050029985807]]]]}, "properties": {"taskId": 1055, "taskX": 119905, "taskY": 293288, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.9056444431233], [-97.668457013755, 20.906285884923], [-97.6677703682473, 20.906285884923], [-97.6677703682473, 20.9056444431233], [-97.668457013755, 20.9056444431233]]]]}, "properties": {"taskId": 1054, "taskX": 119904, "taskY": 293289, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.9050029985807], [-97.668457013755, 20.9056444431233], [-97.6677703682473, 20.9056444431233], [-97.6677703682473, 20.9050029985807], [-97.668457013755, 20.9050029985807]]]]}, "properties": {"taskId": 1053, "taskX": 119904, "taskY": 293288, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.9043615512951], [-97.6677703682473, 20.9050029985807], [-97.6670837227396, 20.9050029985807], [-97.6670837227396, 20.9043615512951], [-97.6677703682473, 20.9043615512951]]]]}, "properties": {"taskId": 1052, "taskX": 119905, "taskY": 293287, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.9037201012666], [-97.6677703682473, 20.9043615512951], [-97.6670837227396, 20.9043615512951], [-97.6670837227396, 20.9037201012666], [-97.6677703682473, 20.9037201012666]]]]}, "properties": {"taskId": 1051, "taskX": 119905, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.9043615512951], [-97.668457013755, 20.9050029985807], [-97.6677703682473, 20.9050029985807], [-97.6677703682473, 20.9043615512951], [-97.668457013755, 20.9043615512951]]]]}, "properties": {"taskId": 1050, "taskX": 119904, "taskY": 293287, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.9037201012666], [-97.668457013755, 20.9043615512951], [-97.6677703682473, 20.9043615512951], [-97.6677703682473, 20.9037201012666], [-97.668457013755, 20.9037201012666]]]]}, "properties": {"taskId": 1049, "taskX": 119904, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.9030786484952], [-97.6677703682473, 20.9037201012666], [-97.6670837227396, 20.9037201012666], [-97.6670837227396, 20.9030786484952], [-97.6677703682473, 20.9030786484952]]]]}, "properties": {"taskId": 1048, "taskX": 119905, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.9024371929812], [-97.6677703682473, 20.9030786484952], [-97.6670837227396, 20.9030786484952], [-97.6670837227396, 20.9024371929812], [-97.6677703682473, 20.9024371929812]]]]}, "properties": {"taskId": 1047, "taskX": 119905, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.9030786484952], [-97.668457013755, 20.9037201012666], [-97.6677703682473, 20.9037201012666], [-97.6677703682473, 20.9030786484952], [-97.668457013755, 20.9030786484952]]]]}, "properties": {"taskId": 1046, "taskX": 119904, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.9024371929812], [-97.668457013755, 20.9030786484952], [-97.6677703682473, 20.9030786484952], [-97.6677703682473, 20.9024371929812], [-97.668457013755, 20.9024371929812]]]]}, "properties": {"taskId": 1045, "taskX": 119904, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.9017957347244], [-97.6677703682473, 20.9024371929812], [-97.6670837227396, 20.9024371929812], [-97.6670837227396, 20.9017957347244], [-97.6677703682473, 20.9017957347244]]]]}, "properties": {"taskId": 1044, "taskX": 119905, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.9011542737251], [-97.6677703682473, 20.9017957347244], [-97.6670837227396, 20.9017957347244], [-97.6670837227396, 20.9011542737251], [-97.6677703682473, 20.9011542737251]]]]}, "properties": {"taskId": 1043, "taskX": 119905, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.9017957347244], [-97.668457013755, 20.9024371929812], [-97.6677703682473, 20.9024371929812], [-97.6677703682473, 20.9017957347244], [-97.668457013755, 20.9017957347244]]]]}, "properties": {"taskId": 1042, "taskX": 119904, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.9011542737251], [-97.668457013755, 20.9017957347244], [-97.6677703682473, 20.9017957347244], [-97.6677703682473, 20.9011542737251], [-97.668457013755, 20.9011542737251]]]]}, "properties": {"taskId": 1041, "taskX": 119904, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.9005128099832], [-97.6677703682473, 20.9011542737251], [-97.6670837227396, 20.9011542737251], [-97.6670837227396, 20.9005128099832], [-97.6677703682473, 20.9005128099832]]]]}, "properties": {"taskId": 1040, "taskX": 119905, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.8998713434988], [-97.6677703682473, 20.9005128099832], [-97.6670837227396, 20.9005128099832], [-97.6670837227396, 20.8998713434988], [-97.6677703682473, 20.8998713434988]]]]}, "properties": {"taskId": 1039, "taskX": 119905, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.9005128099832], [-97.668457013755, 20.9011542737251], [-97.6677703682473, 20.9011542737251], [-97.6677703682473, 20.9005128099832], [-97.668457013755, 20.9005128099832]]]]}, "properties": {"taskId": 1038, "taskX": 119904, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.8998713434988], [-97.668457013755, 20.9005128099832], [-97.6677703682473, 20.9005128099832], [-97.6677703682473, 20.8998713434988], [-97.668457013755, 20.8998713434988]]]]}, "properties": {"taskId": 1037, "taskX": 119904, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.8985884023029], [-97.668457013755, 20.8998713434988], [-97.6670837227396, 20.8998713434988], [-97.6670837227396, 20.8985884023029], [-97.668457013755, 20.8985884023029]]]]}, "properties": {"taskId": 1036, "taskX": 59952, "taskY": 146639, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.8973054501379], [-97.668457013755, 20.8985884023029], [-97.6670837227396, 20.8985884023029], [-97.6670837227396, 20.8973054501379], [-97.668457013755, 20.8973054501379]]]]}, "properties": {"taskId": 1035, "taskX": 59952, "taskY": 146638, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.8960224870044], [-97.668457013755, 20.8973054501379], [-97.6670837227396, 20.8973054501379], [-97.6670837227396, 20.8960224870044], [-97.668457013755, 20.8960224870044]]]]}, "properties": {"taskId": 1034, "taskX": 59952, "taskY": 146637, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.8947395129029], [-97.668457013755, 20.8960224870044], [-97.6670837227396, 20.8960224870044], [-97.6670837227396, 20.8947395129029], [-97.668457013755, 20.8947395129029]]]]}, "properties": {"taskId": 1033, "taskX": 59952, "taskY": 146636, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.8934565278341], [-97.668457013755, 20.8947395129029], [-97.6670837227396, 20.8947395129029], [-97.6670837227396, 20.8934565278341], [-97.668457013755, 20.8934565278341]]]]}, "properties": {"taskId": 1032, "taskX": 59952, "taskY": 146635, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.8921735317983], [-97.668457013755, 20.8934565278341], [-97.6670837227396, 20.8934565278341], [-97.6670837227396, 20.8921735317983], [-97.668457013755, 20.8921735317983]]]]}, "properties": {"taskId": 1031, "taskX": 59952, "taskY": 146634, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.8908905247962], [-97.668457013755, 20.8921735317983], [-97.6670837227396, 20.8921735317983], [-97.6670837227396, 20.8908905247962], [-97.668457013755, 20.8908905247962]]]]}, "properties": {"taskId": 1030, "taskX": 59952, "taskY": 146633, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.8896075068283], [-97.668457013755, 20.8908905247962], [-97.6670837227396, 20.8908905247962], [-97.6670837227396, 20.8896075068283], [-97.668457013755, 20.8896075068283]]]]}, "properties": {"taskId": 1029, "taskX": 59952, "taskY": 146632, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.8889659937324], [-97.6677703682473, 20.8896075068283], [-97.6670837227396, 20.8896075068283], [-97.6670837227396, 20.8889659937324], [-97.6677703682473, 20.8889659937324]]]]}, "properties": {"taskId": 1028, "taskX": 119905, "taskY": 293263, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6677703682473, 20.8883244778952], [-97.6677703682473, 20.8889659937324], [-97.6670837227396, 20.8889659937324], [-97.6670837227396, 20.8883244778952], [-97.6677703682473, 20.8883244778952]]]]}, "properties": {"taskId": 1027, "taskX": 119905, "taskY": 293262, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.8889659937324], [-97.668457013755, 20.8896075068283], [-97.6677703682473, 20.8896075068283], [-97.6677703682473, 20.8889659937324], [-97.668457013755, 20.8889659937324]]]]}, "properties": {"taskId": 1026, "taskX": 119904, "taskY": 293263, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.8883244778952], [-97.668457013755, 20.8889659937324], [-97.6677703682473, 20.8889659937324], [-97.6677703682473, 20.8883244778952], [-97.668457013755, 20.8883244778952]]]]}, "properties": {"taskId": 1025, "taskX": 119904, "taskY": 293262, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.668457013755, 20.8870414379975], [-97.668457013755, 20.8883244778952], [-97.6670837227396, 20.8883244778952], [-97.6670837227396, 20.8870414379975], [-97.668457013755, 20.8870414379975]]]]}, "properties": {"taskId": 1024, "taskX": 59952, "taskY": 146630, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9197555289553], [-97.6780700508627, 20.920396910391], [-97.677383405355, 20.920396910391], [-97.677383405355, 20.9197555289553], [-97.6780700508627, 20.9197555289553]]]]}, "properties": {"taskId": 611, "taskX": 119890, "taskY": 293311, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.9184727578503], [-97.677383405355, 20.919114144775], [-97.6766967598473, 20.919114144775], [-97.6766967598473, 20.9184727578503], [-97.677383405355, 20.9184727578503]]]]}, "properties": {"taskId": 609, "taskX": 119891, "taskY": 293309, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.9178313681812], [-97.677383405355, 20.9184727578503], [-97.6766967598473, 20.9184727578503], [-97.6766967598473, 20.9178313681812], [-97.677383405355, 20.9178313681812]]]]}, "properties": {"taskId": 608, "taskX": 119891, "taskY": 293308, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9184727578503], [-97.6780700508627, 20.919114144775], [-97.677383405355, 20.919114144775], [-97.677383405355, 20.9184727578503], [-97.6780700508627, 20.9184727578503]]]]}, "properties": {"taskId": 607, "taskX": 119890, "taskY": 293309, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9178313681812], [-97.6780700508627, 20.9184727578503], [-97.677383405355, 20.9184727578503], [-97.677383405355, 20.9178313681812], [-97.6780700508627, 20.9178313681812]]]]}, "properties": {"taskId": 606, "taskX": 119890, "taskY": 293308, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.9171899757676], [-97.677383405355, 20.9178313681812], [-97.6766967598473, 20.9178313681812], [-97.6766967598473, 20.9171899757676], [-97.677383405355, 20.9171899757676]]]]}, "properties": {"taskId": 605, "taskX": 119891, "taskY": 293307, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.9165485806099], [-97.677383405355, 20.9171899757676], [-97.6766967598473, 20.9171899757676], [-97.6766967598473, 20.9165485806099], [-97.677383405355, 20.9165485806099]]]]}, "properties": {"taskId": 604, "taskX": 119891, "taskY": 293306, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9171899757676], [-97.6780700508627, 20.9178313681812], [-97.677383405355, 20.9178313681812], [-97.677383405355, 20.9171899757676], [-97.6780700508627, 20.9171899757676]]]]}, "properties": {"taskId": 603, "taskX": 119890, "taskY": 293307, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.915907182708], [-97.677383405355, 20.9165485806099], [-97.6766967598473, 20.9165485806099], [-97.6766967598473, 20.915907182708], [-97.677383405355, 20.915907182708]]]]}, "properties": {"taskId": 601, "taskX": 119891, "taskY": 293305, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.915907182708], [-97.6780700508627, 20.9165485806099], [-97.677383405355, 20.9165485806099], [-97.677383405355, 20.915907182708], [-97.6780700508627, 20.915907182708]]]]}, "properties": {"taskId": 599, "taskX": 119890, "taskY": 293305, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9152657820619], [-97.6780700508627, 20.915907182708], [-97.677383405355, 20.915907182708], [-97.677383405355, 20.9152657820619], [-97.6780700508627, 20.9152657820619]]]]}, "properties": {"taskId": 598, "taskX": 119890, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.9146243786719], [-97.677383405355, 20.9152657820619], [-97.6766967598473, 20.9152657820619], [-97.6766967598473, 20.9146243786719], [-97.677383405355, 20.9146243786719]]]]}, "properties": {"taskId": 597, "taskX": 119891, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.9139829725378], [-97.677383405355, 20.9146243786719], [-97.6766967598473, 20.9146243786719], [-97.6766967598473, 20.9139829725378], [-97.677383405355, 20.9139829725378]]]]}, "properties": {"taskId": 596, "taskX": 119891, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9146243786719], [-97.6780700508627, 20.9152657820619], [-97.677383405355, 20.9152657820619], [-97.677383405355, 20.9146243786719], [-97.6780700508627, 20.9146243786719]]]]}, "properties": {"taskId": 595, "taskX": 119890, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9139829725378], [-97.6780700508627, 20.9146243786719], [-97.677383405355, 20.9146243786719], [-97.677383405355, 20.9139829725378], [-97.6780700508627, 20.9139829725378]]]]}, "properties": {"taskId": 594, "taskX": 119890, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.9133415636598], [-97.677383405355, 20.9139829725378], [-97.6766967598473, 20.9139829725378], [-97.6766967598473, 20.9133415636598], [-97.677383405355, 20.9133415636598]]]]}, "properties": {"taskId": 593, "taskX": 119891, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9133415636598], [-97.6780700508627, 20.9139829725378], [-97.677383405355, 20.9139829725378], [-97.677383405355, 20.9133415636598], [-97.6780700508627, 20.9133415636598]]]]}, "properties": {"taskId": 591, "taskX": 119890, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9127001520379], [-97.6780700508627, 20.9133415636598], [-97.677383405355, 20.9133415636598], [-97.677383405355, 20.9127001520379], [-97.6780700508627, 20.9127001520379]]]]}, "properties": {"taskId": 590, "taskX": 119890, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.9120587376723], [-97.677383405355, 20.9127001520379], [-97.6766967598473, 20.9127001520379], [-97.6766967598473, 20.9120587376723], [-97.677383405355, 20.9120587376723]]]]}, "properties": {"taskId": 589, "taskX": 119891, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.911417320563], [-97.677383405355, 20.9120587376723], [-97.6766967598473, 20.9120587376723], [-97.6766967598473, 20.911417320563], [-97.677383405355, 20.911417320563]]]]}, "properties": {"taskId": 588, "taskX": 119891, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9120587376723], [-97.6780700508627, 20.9127001520379], [-97.677383405355, 20.9127001520379], [-97.677383405355, 20.9120587376723], [-97.6780700508627, 20.9120587376723]]]]}, "properties": {"taskId": 587, "taskX": 119890, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.911417320563], [-97.6780700508627, 20.9120587376723], [-97.677383405355, 20.9120587376723], [-97.677383405355, 20.911417320563], [-97.6780700508627, 20.911417320563]]]]}, "properties": {"taskId": 586, "taskX": 119890, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.91077590071], [-97.677383405355, 20.911417320563], [-97.6766967598473, 20.911417320563], [-97.6766967598473, 20.91077590071], [-97.677383405355, 20.91077590071]]]]}, "properties": {"taskId": 585, "taskX": 119891, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.9101344781134], [-97.677383405355, 20.91077590071], [-97.6766967598473, 20.91077590071], [-97.6766967598473, 20.9101344781134], [-97.677383405355, 20.9101344781134]]]]}, "properties": {"taskId": 584, "taskX": 119891, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.91077590071], [-97.6780700508627, 20.911417320563], [-97.677383405355, 20.911417320563], [-97.677383405355, 20.91077590071], [-97.6780700508627, 20.91077590071]]]]}, "properties": {"taskId": 583, "taskX": 119890, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9101344781134], [-97.6780700508627, 20.91077590071], [-97.677383405355, 20.91077590071], [-97.677383405355, 20.9101344781134], [-97.6780700508627, 20.9101344781134]]]]}, "properties": {"taskId": 582, "taskX": 119890, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.9094930527734], [-97.677383405355, 20.9101344781134], [-97.6766967598473, 20.9101344781134], [-97.6766967598473, 20.9094930527734], [-97.677383405355, 20.9094930527734]]]]}, "properties": {"taskId": 581, "taskX": 119891, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.9088516246899], [-97.677383405355, 20.9094930527734], [-97.6766967598473, 20.9094930527734], [-97.6766967598473, 20.9088516246899], [-97.677383405355, 20.9088516246899]]]]}, "properties": {"taskId": 580, "taskX": 119891, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9094930527734], [-97.6780700508627, 20.9101344781134], [-97.677383405355, 20.9101344781134], [-97.677383405355, 20.9094930527734], [-97.6780700508627, 20.9094930527734]]]]}, "properties": {"taskId": 579, "taskX": 119890, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9088516246899], [-97.6780700508627, 20.9094930527734], [-97.677383405355, 20.9094930527734], [-97.677383405355, 20.9088516246899], [-97.6780700508627, 20.9088516246899]]]]}, "properties": {"taskId": 578, "taskX": 119890, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.9082101938631], [-97.677383405355, 20.9088516246899], [-97.6766967598473, 20.9088516246899], [-97.6766967598473, 20.9082101938631], [-97.677383405355, 20.9082101938631]]]]}, "properties": {"taskId": 577, "taskX": 119891, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.9075687602929], [-97.677383405355, 20.9082101938631], [-97.6766967598473, 20.9082101938631], [-97.6766967598473, 20.9075687602929], [-97.677383405355, 20.9075687602929]]]]}, "properties": {"taskId": 576, "taskX": 119891, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9082101938631], [-97.6780700508627, 20.9088516246899], [-97.677383405355, 20.9088516246899], [-97.677383405355, 20.9082101938631], [-97.6780700508627, 20.9082101938631]]]]}, "properties": {"taskId": 575, "taskX": 119890, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9075687602929], [-97.6780700508627, 20.9082101938631], [-97.677383405355, 20.9082101938631], [-97.677383405355, 20.9075687602929], [-97.6780700508627, 20.9075687602929]]]]}, "properties": {"taskId": 574, "taskX": 119890, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.9069273239795], [-97.677383405355, 20.9075687602929], [-97.6766967598473, 20.9075687602929], [-97.6766967598473, 20.9069273239795], [-97.677383405355, 20.9069273239795]]]]}, "properties": {"taskId": 573, "taskX": 119891, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.906285884923], [-97.677383405355, 20.9069273239795], [-97.6766967598473, 20.9069273239795], [-97.6766967598473, 20.906285884923], [-97.677383405355, 20.906285884923]]]]}, "properties": {"taskId": 572, "taskX": 119891, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9069273239795], [-97.6780700508627, 20.9075687602929], [-97.677383405355, 20.9075687602929], [-97.677383405355, 20.9069273239795], [-97.6780700508627, 20.9069273239795]]]]}, "properties": {"taskId": 571, "taskX": 119890, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.906285884923], [-97.6780700508627, 20.9069273239795], [-97.677383405355, 20.9069273239795], [-97.677383405355, 20.906285884923], [-97.6780700508627, 20.906285884923]]]]}, "properties": {"taskId": 570, "taskX": 119890, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.9056444431233], [-97.677383405355, 20.906285884923], [-97.6766967598473, 20.906285884923], [-97.6766967598473, 20.9056444431233], [-97.677383405355, 20.9056444431233]]]]}, "properties": {"taskId": 569, "taskX": 119891, "taskY": 293289, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9056444431233], [-97.6780700508627, 20.906285884923], [-97.677383405355, 20.906285884923], [-97.677383405355, 20.9056444431233], [-97.6780700508627, 20.9056444431233]]]]}, "properties": {"taskId": 567, "taskX": 119890, "taskY": 293289, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9050029985807], [-97.6780700508627, 20.9056444431233], [-97.677383405355, 20.9056444431233], [-97.677383405355, 20.9050029985807], [-97.6780700508627, 20.9050029985807]]]]}, "properties": {"taskId": 566, "taskX": 119890, "taskY": 293288, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.9043615512951], [-97.677383405355, 20.9050029985807], [-97.6766967598473, 20.9050029985807], [-97.6766967598473, 20.9043615512951], [-97.677383405355, 20.9043615512951]]]]}, "properties": {"taskId": 565, "taskX": 119891, "taskY": 293287, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.9037201012666], [-97.677383405355, 20.9043615512951], [-97.6766967598473, 20.9043615512951], [-97.6766967598473, 20.9037201012666], [-97.677383405355, 20.9037201012666]]]]}, "properties": {"taskId": 564, "taskX": 119891, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9037201012666], [-97.6780700508627, 20.9043615512951], [-97.677383405355, 20.9043615512951], [-97.677383405355, 20.9037201012666], [-97.6780700508627, 20.9037201012666]]]]}, "properties": {"taskId": 562, "taskX": 119890, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.9030786484952], [-97.677383405355, 20.9037201012666], [-97.6766967598473, 20.9037201012666], [-97.6766967598473, 20.9030786484952], [-97.677383405355, 20.9030786484952]]]]}, "properties": {"taskId": 561, "taskX": 119891, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9030786484952], [-97.6780700508627, 20.9037201012666], [-97.677383405355, 20.9037201012666], [-97.677383405355, 20.9030786484952], [-97.6780700508627, 20.9030786484952]]]]}, "properties": {"taskId": 559, "taskX": 119890, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9024371929812], [-97.6780700508627, 20.9030786484952], [-97.677383405355, 20.9030786484952], [-97.677383405355, 20.9024371929812], [-97.6780700508627, 20.9024371929812]]]]}, "properties": {"taskId": 558, "taskX": 119890, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9011542737251], [-97.6780700508627, 20.9024371929812], [-97.6766967598473, 20.9024371929812], [-97.6766967598473, 20.9011542737251], [-97.6780700508627, 20.9011542737251]]]]}, "properties": {"taskId": 557, "taskX": 59945, "taskY": 146641, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.9005128099832], [-97.677383405355, 20.9011542737251], [-97.6766967598473, 20.9011542737251], [-97.6766967598473, 20.9005128099832], [-97.677383405355, 20.9005128099832]]]]}, "properties": {"taskId": 556, "taskX": 119891, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.8998713434988], [-97.677383405355, 20.9005128099832], [-97.6766967598473, 20.9005128099832], [-97.6766967598473, 20.8998713434988], [-97.677383405355, 20.8998713434988]]]]}, "properties": {"taskId": 555, "taskX": 119891, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.9005128099832], [-97.6780700508627, 20.9011542737251], [-97.677383405355, 20.9011542737251], [-97.677383405355, 20.9005128099832], [-97.6780700508627, 20.9005128099832]]]]}, "properties": {"taskId": 554, "taskX": 119890, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.8998713434988], [-97.6780700508627, 20.9005128099832], [-97.677383405355, 20.9005128099832], [-97.677383405355, 20.8998713434988], [-97.6780700508627, 20.8998713434988]]]]}, "properties": {"taskId": 553, "taskX": 119890, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.899229874272], [-97.677383405355, 20.8998713434988], [-97.6766967598473, 20.8998713434988], [-97.6766967598473, 20.899229874272], [-97.677383405355, 20.899229874272]]]]}, "properties": {"taskId": 552, "taskX": 119891, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.8985884023029], [-97.677383405355, 20.899229874272], [-97.6766967598473, 20.899229874272], [-97.6766967598473, 20.8985884023029], [-97.677383405355, 20.8985884023029]]]]}, "properties": {"taskId": 551, "taskX": 119891, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.899229874272], [-97.6780700508627, 20.8998713434988], [-97.677383405355, 20.8998713434988], [-97.677383405355, 20.899229874272], [-97.6780700508627, 20.899229874272]]]]}, "properties": {"taskId": 550, "taskX": 119890, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.8985884023029], [-97.6780700508627, 20.899229874272], [-97.677383405355, 20.899229874272], [-97.677383405355, 20.8985884023029], [-97.6780700508627, 20.8985884023029]]]]}, "properties": {"taskId": 549, "taskX": 119890, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.8979469275915], [-97.677383405355, 20.8985884023029], [-97.6766967598473, 20.8985884023029], [-97.6766967598473, 20.8979469275915], [-97.677383405355, 20.8979469275915]]]]}, "properties": {"taskId": 548, "taskX": 119891, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.8973054501379], [-97.677383405355, 20.8979469275915], [-97.6766967598473, 20.8979469275915], [-97.6766967598473, 20.8973054501379], [-97.677383405355, 20.8973054501379]]]]}, "properties": {"taskId": 547, "taskX": 119891, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.8979469275915], [-97.6780700508627, 20.8985884023029], [-97.677383405355, 20.8985884023029], [-97.677383405355, 20.8979469275915], [-97.6780700508627, 20.8979469275915]]]]}, "properties": {"taskId": 546, "taskX": 119890, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.8973054501379], [-97.6780700508627, 20.8979469275915], [-97.677383405355, 20.8979469275915], [-97.677383405355, 20.8973054501379], [-97.6780700508627, 20.8973054501379]]]]}, "properties": {"taskId": 545, "taskX": 119890, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.906285884923], [-97.6801299873857, 20.9069273239795], [-97.6794433418781, 20.9069273239795], [-97.6794433418781, 20.906285884923], [-97.6801299873857, 20.906285884923]]]]}, "properties": {"taskId": 407, "taskX": 119887, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9069273239795], [-97.6808166328934, 20.9075687602929], [-97.6801299873857, 20.9075687602929], [-97.6801299873857, 20.9069273239795], [-97.6808166328934, 20.9069273239795]]]]}, "properties": {"taskId": 406, "taskX": 119886, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.906285884923], [-97.6808166328934, 20.9069273239795], [-97.6801299873857, 20.9069273239795], [-97.6801299873857, 20.906285884923], [-97.6808166328934, 20.906285884923]]]]}, "properties": {"taskId": 405, "taskX": 119886, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9056444431233], [-97.6801299873857, 20.906285884923], [-97.6794433418781, 20.906285884923], [-97.6794433418781, 20.9056444431233], [-97.6801299873857, 20.9056444431233]]]]}, "properties": {"taskId": 404, "taskX": 119887, "taskY": 293289, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9050029985807], [-97.6801299873857, 20.9056444431233], [-97.6794433418781, 20.9056444431233], [-97.6794433418781, 20.9050029985807], [-97.6801299873857, 20.9050029985807]]]]}, "properties": {"taskId": 403, "taskX": 119887, "taskY": 293288, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9056444431233], [-97.6808166328934, 20.906285884923], [-97.6801299873857, 20.906285884923], [-97.6801299873857, 20.9056444431233], [-97.6808166328934, 20.9056444431233]]]]}, "properties": {"taskId": 402, "taskX": 119886, "taskY": 293289, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9050029985807], [-97.6808166328934, 20.9056444431233], [-97.6801299873857, 20.9056444431233], [-97.6801299873857, 20.9050029985807], [-97.6808166328934, 20.9050029985807]]]]}, "properties": {"taskId": 401, "taskX": 119886, "taskY": 293288, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9043615512951], [-97.6801299873857, 20.9050029985807], [-97.6794433418781, 20.9050029985807], [-97.6794433418781, 20.9043615512951], [-97.6801299873857, 20.9043615512951]]]]}, "properties": {"taskId": 400, "taskX": 119887, "taskY": 293287, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9043615512951], [-97.6808166328934, 20.9050029985807], [-97.6801299873857, 20.9050029985807], [-97.6801299873857, 20.9043615512951], [-97.6808166328934, 20.9043615512951]]]]}, "properties": {"taskId": 398, "taskX": 119886, "taskY": 293287, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9037201012666], [-97.6808166328934, 20.9043615512951], [-97.6801299873857, 20.9043615512951], [-97.6801299873857, 20.9037201012666], [-97.6808166328934, 20.9037201012666]]]]}, "properties": {"taskId": 397, "taskX": 119886, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9030786484952], [-97.6801299873857, 20.9037201012666], [-97.6794433418781, 20.9037201012666], [-97.6794433418781, 20.9030786484952], [-97.6801299873857, 20.9030786484952]]]]}, "properties": {"taskId": 396, "taskX": 119887, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9024371929812], [-97.6801299873857, 20.9030786484952], [-97.6794433418781, 20.9030786484952], [-97.6794433418781, 20.9024371929812], [-97.6801299873857, 20.9024371929812]]]]}, "properties": {"taskId": 395, "taskX": 119887, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9030786484952], [-97.6808166328934, 20.9037201012666], [-97.6801299873857, 20.9037201012666], [-97.6801299873857, 20.9030786484952], [-97.6808166328934, 20.9030786484952]]]]}, "properties": {"taskId": 394, "taskX": 119886, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9024371929812], [-97.6808166328934, 20.9030786484952], [-97.6801299873857, 20.9030786484952], [-97.6801299873857, 20.9024371929812], [-97.6808166328934, 20.9024371929812]]]]}, "properties": {"taskId": 393, "taskX": 119886, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9017957347244], [-97.6801299873857, 20.9024371929812], [-97.6794433418781, 20.9024371929812], [-97.6794433418781, 20.9017957347244], [-97.6801299873857, 20.9017957347244]]]]}, "properties": {"taskId": 392, "taskX": 119887, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9011542737251], [-97.6801299873857, 20.9017957347244], [-97.6794433418781, 20.9017957347244], [-97.6794433418781, 20.9011542737251], [-97.6801299873857, 20.9011542737251]]]]}, "properties": {"taskId": 391, "taskX": 119887, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9017957347244], [-97.6808166328934, 20.9024371929812], [-97.6801299873857, 20.9024371929812], [-97.6801299873857, 20.9017957347244], [-97.6808166328934, 20.9017957347244]]]]}, "properties": {"taskId": 390, "taskX": 119886, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9011542737251], [-97.6808166328934, 20.9017957347244], [-97.6801299873857, 20.9017957347244], [-97.6801299873857, 20.9011542737251], [-97.6808166328934, 20.9011542737251]]]]}, "properties": {"taskId": 389, "taskX": 119886, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9005128099832], [-97.6801299873857, 20.9011542737251], [-97.6794433418781, 20.9011542737251], [-97.6794433418781, 20.9005128099832], [-97.6801299873857, 20.9005128099832]]]]}, "properties": {"taskId": 388, "taskX": 119887, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.8998713434988], [-97.6801299873857, 20.9005128099832], [-97.6794433418781, 20.9005128099832], [-97.6794433418781, 20.8998713434988], [-97.6801299873857, 20.8998713434988]]]]}, "properties": {"taskId": 387, "taskX": 119887, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9005128099832], [-97.6808166328934, 20.9011542737251], [-97.6801299873857, 20.9011542737251], [-97.6801299873857, 20.9005128099832], [-97.6808166328934, 20.9005128099832]]]]}, "properties": {"taskId": 386, "taskX": 119886, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.8998713434988], [-97.6808166328934, 20.9005128099832], [-97.6801299873857, 20.9005128099832], [-97.6801299873857, 20.8998713434988], [-97.6808166328934, 20.8998713434988]]]]}, "properties": {"taskId": 385, "taskX": 119886, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.899229874272], [-97.6801299873857, 20.8998713434988], [-97.6794433418781, 20.8998713434988], [-97.6794433418781, 20.899229874272], [-97.6801299873857, 20.899229874272]]]]}, "properties": {"taskId": 384, "taskX": 119887, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.8985884023029], [-97.6801299873857, 20.899229874272], [-97.6794433418781, 20.899229874272], [-97.6794433418781, 20.8985884023029], [-97.6801299873857, 20.8985884023029]]]]}, "properties": {"taskId": 383, "taskX": 119887, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.899229874272], [-97.6808166328934, 20.8998713434988], [-97.6801299873857, 20.8998713434988], [-97.6801299873857, 20.899229874272], [-97.6808166328934, 20.899229874272]]]]}, "properties": {"taskId": 382, "taskX": 119886, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.8985884023029], [-97.6808166328934, 20.899229874272], [-97.6801299873857, 20.899229874272], [-97.6801299873857, 20.8985884023029], [-97.6808166328934, 20.8985884023029]]]]}, "properties": {"taskId": 381, "taskX": 119886, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.8979469275915], [-97.6801299873857, 20.8985884023029], [-97.6794433418781, 20.8985884023029], [-97.6794433418781, 20.8979469275915], [-97.6801299873857, 20.8979469275915]]]]}, "properties": {"taskId": 380, "taskX": 119887, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.8973054501379], [-97.6801299873857, 20.8979469275915], [-97.6794433418781, 20.8979469275915], [-97.6794433418781, 20.8973054501379], [-97.6801299873857, 20.8973054501379]]]]}, "properties": {"taskId": 379, "taskX": 119887, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.8979469275915], [-97.6808166328934, 20.8985884023029], [-97.6801299873857, 20.8985884023029], [-97.6801299873857, 20.8979469275915], [-97.6808166328934, 20.8979469275915]]]]}, "properties": {"taskId": 378, "taskX": 119886, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.8973054501379], [-97.6808166328934, 20.8979469275915], [-97.6801299873857, 20.8979469275915], [-97.6801299873857, 20.8973054501379], [-97.6808166328934, 20.8973054501379]]]]}, "properties": {"taskId": 377, "taskX": 119886, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.8966639699422], [-97.6801299873857, 20.8973054501379], [-97.6794433418781, 20.8973054501379], [-97.6794433418781, 20.8966639699422], [-97.6801299873857, 20.8966639699422]]]]}, "properties": {"taskId": 376, "taskX": 119887, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.8960224870044], [-97.6801299873857, 20.8966639699422], [-97.6794433418781, 20.8966639699422], [-97.6794433418781, 20.8960224870044], [-97.6801299873857, 20.8960224870044]]]]}, "properties": {"taskId": 375, "taskX": 119887, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.8966639699422], [-97.6808166328934, 20.8973054501379], [-97.6801299873857, 20.8973054501379], [-97.6801299873857, 20.8966639699422], [-97.6808166328934, 20.8966639699422]]]]}, "properties": {"taskId": 374, "taskX": 119886, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.8960224870044], [-97.6808166328934, 20.8966639699422], [-97.6801299873857, 20.8966639699422], [-97.6801299873857, 20.8960224870044], [-97.6808166328934, 20.8960224870044]]]]}, "properties": {"taskId": 373, "taskX": 119886, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.8953810013247], [-97.6801299873857, 20.8960224870044], [-97.6794433418781, 20.8960224870044], [-97.6794433418781, 20.8953810013247], [-97.6801299873857, 20.8953810013247]]]]}, "properties": {"taskId": 372, "taskX": 119887, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.8947395129029], [-97.6801299873857, 20.8953810013247], [-97.6794433418781, 20.8953810013247], [-97.6794433418781, 20.8947395129029], [-97.6801299873857, 20.8947395129029]]]]}, "properties": {"taskId": 371, "taskX": 119887, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.8953810013247], [-97.6808166328934, 20.8960224870044], [-97.6801299873857, 20.8960224870044], [-97.6801299873857, 20.8953810013247], [-97.6808166328934, 20.8953810013247]]]]}, "properties": {"taskId": 370, "taskX": 119886, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.8947395129029], [-97.6808166328934, 20.8953810013247], [-97.6801299873857, 20.8953810013247], [-97.6801299873857, 20.8947395129029], [-97.6808166328934, 20.8947395129029]]]]}, "properties": {"taskId": 369, "taskX": 119886, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.8940980217394], [-97.6801299873857, 20.8947395129029], [-97.6794433418781, 20.8947395129029], [-97.6794433418781, 20.8940980217394], [-97.6801299873857, 20.8940980217394]]]]}, "properties": {"taskId": 368, "taskX": 119887, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.8940980217394], [-97.6808166328934, 20.8947395129029], [-97.6801299873857, 20.8947395129029], [-97.6801299873857, 20.8940980217394], [-97.6808166328934, 20.8940980217394]]]]}, "properties": {"taskId": 366, "taskX": 119886, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.8934565278341], [-97.6808166328934, 20.8940980217394], [-97.6801299873857, 20.8940980217394], [-97.6801299873857, 20.8934565278341], [-97.6808166328934, 20.8934565278341]]]]}, "properties": {"taskId": 365, "taskX": 119886, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.9210382890822], [-97.6815032784011, 20.9216796650287], [-97.6808166328934, 20.9216796650287], [-97.6808166328934, 20.9210382890822], [-97.6815032784011, 20.9210382890822]]]]}, "properties": {"taskId": 362, "taskX": 119885, "taskY": 293313, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.920396910391], [-97.6815032784011, 20.9210382890822], [-97.6808166328934, 20.9210382890822], [-97.6808166328934, 20.920396910391], [-97.6815032784011, 20.920396910391]]]]}, "properties": {"taskId": 361, "taskX": 119885, "taskY": 293312, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.920396910391], [-97.6821899239088, 20.9210382890822], [-97.6815032784011, 20.9210382890822], [-97.6815032784011, 20.920396910391], [-97.6821899239088, 20.920396910391]]]]}, "properties": {"taskId": 359, "taskX": 119884, "taskY": 293312, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.9197555289553], [-97.6815032784011, 20.920396910391], [-97.6808166328934, 20.920396910391], [-97.6808166328934, 20.9197555289553], [-97.6815032784011, 20.9197555289553]]]]}, "properties": {"taskId": 358, "taskX": 119885, "taskY": 293311, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.919114144775], [-97.6815032784011, 20.9197555289553], [-97.6808166328934, 20.9197555289553], [-97.6808166328934, 20.919114144775], [-97.6815032784011, 20.919114144775]]]]}, "properties": {"taskId": 357, "taskX": 119885, "taskY": 293310, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9197555289553], [-97.6821899239088, 20.920396910391], [-97.6815032784011, 20.920396910391], [-97.6815032784011, 20.9197555289553], [-97.6821899239088, 20.9197555289553]]]]}, "properties": {"taskId": 356, "taskX": 119884, "taskY": 293311, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.919114144775], [-97.6821899239088, 20.9197555289553], [-97.6815032784011, 20.9197555289553], [-97.6815032784011, 20.919114144775], [-97.6821899239088, 20.919114144775]]]]}, "properties": {"taskId": 355, "taskX": 119884, "taskY": 293310, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.9178313681812], [-97.6815032784011, 20.9184727578503], [-97.6808166328934, 20.9184727578503], [-97.6808166328934, 20.9178313681812], [-97.6815032784011, 20.9178313681812]]]]}, "properties": {"taskId": 353, "taskX": 119885, "taskY": 293308, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9184727578503], [-97.6821899239088, 20.919114144775], [-97.6815032784011, 20.919114144775], [-97.6815032784011, 20.9184727578503], [-97.6821899239088, 20.9184727578503]]]]}, "properties": {"taskId": 352, "taskX": 119884, "taskY": 293309, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9178313681812], [-97.6821899239088, 20.9184727578503], [-97.6815032784011, 20.9184727578503], [-97.6815032784011, 20.9178313681812], [-97.6821899239088, 20.9178313681812]]]]}, "properties": {"taskId": 351, "taskX": 119884, "taskY": 293308, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.9171899757676], [-97.6815032784011, 20.9178313681812], [-97.6808166328934, 20.9178313681812], [-97.6808166328934, 20.9171899757676], [-97.6815032784011, 20.9171899757676]]]]}, "properties": {"taskId": 350, "taskX": 119885, "taskY": 293307, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.9165485806099], [-97.6815032784011, 20.9171899757676], [-97.6808166328934, 20.9171899757676], [-97.6808166328934, 20.9165485806099], [-97.6815032784011, 20.9165485806099]]]]}, "properties": {"taskId": 349, "taskX": 119885, "taskY": 293306, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9171899757676], [-97.6821899239088, 20.9178313681812], [-97.6815032784011, 20.9178313681812], [-97.6815032784011, 20.9171899757676], [-97.6821899239088, 20.9171899757676]]]]}, "properties": {"taskId": 348, "taskX": 119884, "taskY": 293307, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9165485806099], [-97.6821899239088, 20.9171899757676], [-97.6815032784011, 20.9171899757676], [-97.6815032784011, 20.9165485806099], [-97.6821899239088, 20.9165485806099]]]]}, "properties": {"taskId": 347, "taskX": 119884, "taskY": 293306, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.915907182708], [-97.6815032784011, 20.9165485806099], [-97.6808166328934, 20.9165485806099], [-97.6808166328934, 20.915907182708], [-97.6815032784011, 20.915907182708]]]]}, "properties": {"taskId": 346, "taskX": 119885, "taskY": 293305, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.9152657820619], [-97.6815032784011, 20.915907182708], [-97.6808166328934, 20.915907182708], [-97.6808166328934, 20.9152657820619], [-97.6815032784011, 20.9152657820619]]]]}, "properties": {"taskId": 345, "taskX": 119885, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.915907182708], [-97.6821899239088, 20.9165485806099], [-97.6815032784011, 20.9165485806099], [-97.6815032784011, 20.915907182708], [-97.6821899239088, 20.915907182708]]]]}, "properties": {"taskId": 344, "taskX": 119884, "taskY": 293305, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9152657820619], [-97.6821899239088, 20.915907182708], [-97.6815032784011, 20.915907182708], [-97.6815032784011, 20.9152657820619], [-97.6821899239088, 20.9152657820619]]]]}, "properties": {"taskId": 343, "taskX": 119884, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.9146243786719], [-97.6815032784011, 20.9152657820619], [-97.6808166328934, 20.9152657820619], [-97.6808166328934, 20.9146243786719], [-97.6815032784011, 20.9146243786719]]]]}, "properties": {"taskId": 342, "taskX": 119885, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.9139829725378], [-97.6815032784011, 20.9146243786719], [-97.6808166328934, 20.9146243786719], [-97.6808166328934, 20.9139829725378], [-97.6815032784011, 20.9139829725378]]]]}, "properties": {"taskId": 341, "taskX": 119885, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9146243786719], [-97.6821899239088, 20.9152657820619], [-97.6815032784011, 20.9152657820619], [-97.6815032784011, 20.9146243786719], [-97.6821899239088, 20.9146243786719]]]]}, "properties": {"taskId": 340, "taskX": 119884, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9139829725378], [-97.6821899239088, 20.9146243786719], [-97.6815032784011, 20.9146243786719], [-97.6815032784011, 20.9139829725378], [-97.6821899239088, 20.9139829725378]]]]}, "properties": {"taskId": 339, "taskX": 119884, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.9133415636598], [-97.6815032784011, 20.9139829725378], [-97.6808166328934, 20.9139829725378], [-97.6808166328934, 20.9133415636598], [-97.6815032784011, 20.9133415636598]]]]}, "properties": {"taskId": 338, "taskX": 119885, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9133415636598], [-97.6821899239088, 20.9139829725378], [-97.6815032784011, 20.9139829725378], [-97.6815032784011, 20.9133415636598], [-97.6821899239088, 20.9133415636598]]]]}, "properties": {"taskId": 336, "taskX": 119884, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9127001520379], [-97.6821899239088, 20.9133415636598], [-97.6815032784011, 20.9133415636598], [-97.6815032784011, 20.9127001520379], [-97.6821899239088, 20.9127001520379]]]]}, "properties": {"taskId": 335, "taskX": 119884, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.9120587376723], [-97.6815032784011, 20.9127001520379], [-97.6808166328934, 20.9127001520379], [-97.6808166328934, 20.9120587376723], [-97.6815032784011, 20.9120587376723]]]]}, "properties": {"taskId": 334, "taskX": 119885, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.911417320563], [-97.6815032784011, 20.9120587376723], [-97.6808166328934, 20.9120587376723], [-97.6808166328934, 20.911417320563], [-97.6815032784011, 20.911417320563]]]]}, "properties": {"taskId": 333, "taskX": 119885, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9120587376723], [-97.6821899239088, 20.9127001520379], [-97.6815032784011, 20.9127001520379], [-97.6815032784011, 20.9120587376723], [-97.6821899239088, 20.9120587376723]]]]}, "properties": {"taskId": 332, "taskX": 119884, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.911417320563], [-97.6821899239088, 20.9120587376723], [-97.6815032784011, 20.9120587376723], [-97.6815032784011, 20.911417320563], [-97.6821899239088, 20.911417320563]]]]}, "properties": {"taskId": 331, "taskX": 119884, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.91077590071], [-97.6815032784011, 20.911417320563], [-97.6808166328934, 20.911417320563], [-97.6808166328934, 20.91077590071], [-97.6815032784011, 20.91077590071]]]]}, "properties": {"taskId": 330, "taskX": 119885, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.9101344781134], [-97.6815032784011, 20.91077590071], [-97.6808166328934, 20.91077590071], [-97.6808166328934, 20.9101344781134], [-97.6815032784011, 20.9101344781134]]]]}, "properties": {"taskId": 329, "taskX": 119885, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.91077590071], [-97.6821899239088, 20.911417320563], [-97.6815032784011, 20.911417320563], [-97.6815032784011, 20.91077590071], [-97.6821899239088, 20.91077590071]]]]}, "properties": {"taskId": 328, "taskX": 119884, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9101344781134], [-97.6821899239088, 20.91077590071], [-97.6815032784011, 20.91077590071], [-97.6815032784011, 20.9101344781134], [-97.6821899239088, 20.9101344781134]]]]}, "properties": {"taskId": 327, "taskX": 119884, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9094930527734], [-97.6821899239088, 20.9101344781134], [-97.6815032784011, 20.9101344781134], [-97.6815032784011, 20.9094930527734], [-97.6821899239088, 20.9094930527734]]]]}, "properties": {"taskId": 324, "taskX": 119884, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.9082101938631], [-97.6815032784011, 20.9088516246899], [-97.6808166328934, 20.9088516246899], [-97.6808166328934, 20.9082101938631], [-97.6815032784011, 20.9082101938631]]]]}, "properties": {"taskId": 322, "taskX": 119885, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.9075687602929], [-97.6815032784011, 20.9082101938631], [-97.6808166328934, 20.9082101938631], [-97.6808166328934, 20.9075687602929], [-97.6815032784011, 20.9075687602929]]]]}, "properties": {"taskId": 321, "taskX": 119885, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9082101938631], [-97.6821899239088, 20.9088516246899], [-97.6815032784011, 20.9088516246899], [-97.6815032784011, 20.9082101938631], [-97.6821899239088, 20.9082101938631]]]]}, "properties": {"taskId": 320, "taskX": 119884, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9075687602929], [-97.6821899239088, 20.9082101938631], [-97.6815032784011, 20.9082101938631], [-97.6815032784011, 20.9075687602929], [-97.6821899239088, 20.9075687602929]]]]}, "properties": {"taskId": 319, "taskX": 119884, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.9069273239795], [-97.6815032784011, 20.9075687602929], [-97.6808166328934, 20.9075687602929], [-97.6808166328934, 20.9069273239795], [-97.6815032784011, 20.9069273239795]]]]}, "properties": {"taskId": 318, "taskX": 119885, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.906285884923], [-97.6815032784011, 20.9069273239795], [-97.6808166328934, 20.9069273239795], [-97.6808166328934, 20.906285884923], [-97.6815032784011, 20.906285884923]]]]}, "properties": {"taskId": 317, "taskX": 119885, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.906285884923], [-97.6821899239088, 20.9069273239795], [-97.6815032784011, 20.9069273239795], [-97.6815032784011, 20.906285884923], [-97.6821899239088, 20.906285884923]]]]}, "properties": {"taskId": 315, "taskX": 119884, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9050029985807], [-97.6821899239088, 20.906285884923], [-97.6808166328934, 20.906285884923], [-97.6808166328934, 20.9050029985807], [-97.6821899239088, 20.9050029985807]]]]}, "properties": {"taskId": 314, "taskX": 59942, "taskY": 146644, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.9037201012666], [-97.6815032784011, 20.9043615512951], [-97.6808166328934, 20.9043615512951], [-97.6808166328934, 20.9037201012666], [-97.6815032784011, 20.9037201012666]]]]}, "properties": {"taskId": 312, "taskX": 119885, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9043615512951], [-97.6821899239088, 20.9050029985807], [-97.6815032784011, 20.9050029985807], [-97.6815032784011, 20.9043615512951], [-97.6821899239088, 20.9043615512951]]]]}, "properties": {"taskId": 311, "taskX": 119884, "taskY": 293287, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9037201012666], [-97.6821899239088, 20.9043615512951], [-97.6815032784011, 20.9043615512951], [-97.6815032784011, 20.9037201012666], [-97.6821899239088, 20.9037201012666]]]]}, "properties": {"taskId": 310, "taskX": 119884, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.9030786484952], [-97.6815032784011, 20.9037201012666], [-97.6808166328934, 20.9037201012666], [-97.6808166328934, 20.9030786484952], [-97.6815032784011, 20.9030786484952]]]]}, "properties": {"taskId": 309, "taskX": 119885, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.9024371929812], [-97.6815032784011, 20.9030786484952], [-97.6808166328934, 20.9030786484952], [-97.6808166328934, 20.9024371929812], [-97.6815032784011, 20.9024371929812]]]]}, "properties": {"taskId": 308, "taskX": 119885, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9030786484952], [-97.6821899239088, 20.9037201012666], [-97.6815032784011, 20.9037201012666], [-97.6815032784011, 20.9030786484952], [-97.6821899239088, 20.9030786484952]]]]}, "properties": {"taskId": 307, "taskX": 119884, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9024371929812], [-97.6821899239088, 20.9030786484952], [-97.6815032784011, 20.9030786484952], [-97.6815032784011, 20.9024371929812], [-97.6821899239088, 20.9024371929812]]]]}, "properties": {"taskId": 306, "taskX": 119884, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.9017957347244], [-97.6815032784011, 20.9024371929812], [-97.6808166328934, 20.9024371929812], [-97.6808166328934, 20.9017957347244], [-97.6815032784011, 20.9017957347244]]]]}, "properties": {"taskId": 305, "taskX": 119885, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.9011542737251], [-97.6815032784011, 20.9017957347244], [-97.6808166328934, 20.9017957347244], [-97.6808166328934, 20.9011542737251], [-97.6815032784011, 20.9011542737251]]]]}, "properties": {"taskId": 304, "taskX": 119885, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9017957347244], [-97.6821899239088, 20.9024371929812], [-97.6815032784011, 20.9024371929812], [-97.6815032784011, 20.9017957347244], [-97.6821899239088, 20.9017957347244]]]]}, "properties": {"taskId": 303, "taskX": 119884, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9011542737251], [-97.6821899239088, 20.9017957347244], [-97.6815032784011, 20.9017957347244], [-97.6815032784011, 20.9011542737251], [-97.6821899239088, 20.9011542737251]]]]}, "properties": {"taskId": 302, "taskX": 119884, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.9005128099832], [-97.6815032784011, 20.9011542737251], [-97.6808166328934, 20.9011542737251], [-97.6808166328934, 20.9005128099832], [-97.6815032784011, 20.9005128099832]]]]}, "properties": {"taskId": 301, "taskX": 119885, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.8998713434988], [-97.6815032784011, 20.9005128099832], [-97.6808166328934, 20.9005128099832], [-97.6808166328934, 20.8998713434988], [-97.6815032784011, 20.8998713434988]]]]}, "properties": {"taskId": 300, "taskX": 119885, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.9005128099832], [-97.6821899239088, 20.9011542737251], [-97.6815032784011, 20.9011542737251], [-97.6815032784011, 20.9005128099832], [-97.6821899239088, 20.9005128099832]]]]}, "properties": {"taskId": 299, "taskX": 119884, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.8998713434988], [-97.6821899239088, 20.9005128099832], [-97.6815032784011, 20.9005128099832], [-97.6815032784011, 20.8998713434988], [-97.6821899239088, 20.8998713434988]]]]}, "properties": {"taskId": 298, "taskX": 119884, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.899229874272], [-97.6815032784011, 20.8998713434988], [-97.6808166328934, 20.8998713434988], [-97.6808166328934, 20.899229874272], [-97.6815032784011, 20.899229874272]]]]}, "properties": {"taskId": 297, "taskX": 119885, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.8985884023029], [-97.6815032784011, 20.899229874272], [-97.6808166328934, 20.899229874272], [-97.6808166328934, 20.8985884023029], [-97.6815032784011, 20.8985884023029]]]]}, "properties": {"taskId": 296, "taskX": 119885, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.899229874272], [-97.6821899239088, 20.8998713434988], [-97.6815032784011, 20.8998713434988], [-97.6815032784011, 20.899229874272], [-97.6821899239088, 20.899229874272]]]]}, "properties": {"taskId": 295, "taskX": 119884, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.8979469275915], [-97.6815032784011, 20.8985884023029], [-97.6808166328934, 20.8985884023029], [-97.6808166328934, 20.8979469275915], [-97.6815032784011, 20.8979469275915]]]]}, "properties": {"taskId": 293, "taskX": 119885, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.8973054501379], [-97.6815032784011, 20.8979469275915], [-97.6808166328934, 20.8979469275915], [-97.6808166328934, 20.8973054501379], [-97.6815032784011, 20.8973054501379]]]]}, "properties": {"taskId": 292, "taskX": 119885, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.8979469275915], [-97.6821899239088, 20.8985884023029], [-97.6815032784011, 20.8985884023029], [-97.6815032784011, 20.8979469275915], [-97.6821899239088, 20.8979469275915]]]]}, "properties": {"taskId": 291, "taskX": 119884, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.8973054501379], [-97.6821899239088, 20.8979469275915], [-97.6815032784011, 20.8979469275915], [-97.6815032784011, 20.8973054501379], [-97.6821899239088, 20.8973054501379]]]]}, "properties": {"taskId": 290, "taskX": 119884, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.8966639699422], [-97.6815032784011, 20.8973054501379], [-97.6808166328934, 20.8973054501379], [-97.6808166328934, 20.8966639699422], [-97.6815032784011, 20.8966639699422]]]]}, "properties": {"taskId": 289, "taskX": 119885, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.8960224870044], [-97.6815032784011, 20.8966639699422], [-97.6808166328934, 20.8966639699422], [-97.6808166328934, 20.8960224870044], [-97.6815032784011, 20.8960224870044]]]]}, "properties": {"taskId": 288, "taskX": 119885, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.8960224870044], [-97.6821899239088, 20.8966639699422], [-97.6815032784011, 20.8966639699422], [-97.6815032784011, 20.8960224870044], [-97.6821899239088, 20.8960224870044]]]]}, "properties": {"taskId": 286, "taskX": 119884, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.8953810013247], [-97.6815032784011, 20.8960224870044], [-97.6808166328934, 20.8960224870044], [-97.6808166328934, 20.8953810013247], [-97.6815032784011, 20.8953810013247]]]]}, "properties": {"taskId": 285, "taskX": 119885, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.8947395129029], [-97.6815032784011, 20.8953810013247], [-97.6808166328934, 20.8953810013247], [-97.6808166328934, 20.8947395129029], [-97.6815032784011, 20.8947395129029]]]]}, "properties": {"taskId": 284, "taskX": 119885, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.8953810013247], [-97.6821899239088, 20.8960224870044], [-97.6815032784011, 20.8960224870044], [-97.6815032784011, 20.8953810013247], [-97.6821899239088, 20.8953810013247]]]]}, "properties": {"taskId": 283, "taskX": 119884, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.8947395129029], [-97.6821899239088, 20.8953810013247], [-97.6815032784011, 20.8953810013247], [-97.6815032784011, 20.8947395129029], [-97.6821899239088, 20.8947395129029]]]]}, "properties": {"taskId": 282, "taskX": 119884, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.8940980217394], [-97.6815032784011, 20.8947395129029], [-97.6808166328934, 20.8947395129029], [-97.6808166328934, 20.8940980217394], [-97.6815032784011, 20.8940980217394]]]]}, "properties": {"taskId": 281, "taskX": 119885, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6815032784011, 20.8934565278341], [-97.6815032784011, 20.8940980217394], [-97.6808166328934, 20.8940980217394], [-97.6808166328934, 20.8934565278341], [-97.6815032784011, 20.8934565278341]]]]}, "properties": {"taskId": 280, "taskX": 119885, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.8940980217394], [-97.6821899239088, 20.8947395129029], [-97.6815032784011, 20.8947395129029], [-97.6815032784011, 20.8940980217394], [-97.6821899239088, 20.8940980217394]]]]}, "properties": {"taskId": 279, "taskX": 119884, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.8934565278341], [-97.6821899239088, 20.8940980217394], [-97.6815032784011, 20.8940980217394], [-97.6815032784011, 20.8934565278341], [-97.6821899239088, 20.8934565278341]]]]}, "properties": {"taskId": 278, "taskX": 119884, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6821899239088, 20.8921735317983], [-97.6821899239088, 20.8934565278341], [-97.6808166328934, 20.8934565278341], [-97.6808166328934, 20.8921735317983], [-97.6821899239088, 20.8921735317983]]]]}, "properties": {"taskId": 277, "taskX": 59942, "taskY": 146634, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.9197555289553], [-97.6828765694165, 20.920396910391], [-97.6821899239088, 20.920396910391], [-97.6821899239088, 20.9197555289553], [-97.6828765694165, 20.9197555289553]]]]}, "properties": {"taskId": 273, "taskX": 119883, "taskY": 293311, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.919114144775], [-97.6828765694165, 20.9197555289553], [-97.6821899239088, 20.9197555289553], [-97.6821899239088, 20.919114144775], [-97.6828765694165, 20.919114144775]]]]}, "properties": {"taskId": 272, "taskX": 119883, "taskY": 293310, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.9197555289553], [-97.6835632149242, 20.920396910391], [-97.6828765694165, 20.920396910391], [-97.6828765694165, 20.9197555289553], [-97.6835632149242, 20.9197555289553]]]]}, "properties": {"taskId": 271, "taskX": 119882, "taskY": 293311, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.919114144775], [-97.6835632149242, 20.9197555289553], [-97.6828765694165, 20.9197555289553], [-97.6828765694165, 20.919114144775], [-97.6835632149242, 20.919114144775]]]]}, "properties": {"taskId": 270, "taskX": 119882, "taskY": 293310, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.9184727578503], [-97.6828765694165, 20.919114144775], [-97.6821899239088, 20.919114144775], [-97.6821899239088, 20.9184727578503], [-97.6828765694165, 20.9184727578503]]]]}, "properties": {"taskId": 269, "taskX": 119883, "taskY": 293309, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.9178313681812], [-97.6828765694165, 20.9184727578503], [-97.6821899239088, 20.9184727578503], [-97.6821899239088, 20.9178313681812], [-97.6828765694165, 20.9178313681812]]]]}, "properties": {"taskId": 268, "taskX": 119883, "taskY": 293308, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.9184727578503], [-97.6835632149242, 20.919114144775], [-97.6828765694165, 20.919114144775], [-97.6828765694165, 20.9184727578503], [-97.6835632149242, 20.9184727578503]]]]}, "properties": {"taskId": 267, "taskX": 119882, "taskY": 293309, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.9178313681812], [-97.6835632149242, 20.9184727578503], [-97.6828765694165, 20.9184727578503], [-97.6828765694165, 20.9178313681812], [-97.6835632149242, 20.9178313681812]]]]}, "properties": {"taskId": 266, "taskX": 119882, "taskY": 293308, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.9171899757676], [-97.6828765694165, 20.9178313681812], [-97.6821899239088, 20.9178313681812], [-97.6821899239088, 20.9171899757676], [-97.6828765694165, 20.9171899757676]]]]}, "properties": {"taskId": 265, "taskX": 119883, "taskY": 293307, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.9171899757676], [-97.6835632149242, 20.9178313681812], [-97.6828765694165, 20.9178313681812], [-97.6828765694165, 20.9171899757676], [-97.6835632149242, 20.9171899757676]]]]}, "properties": {"taskId": 263, "taskX": 119882, "taskY": 293307, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.9165485806099], [-97.6835632149242, 20.9171899757676], [-97.6828765694165, 20.9171899757676], [-97.6828765694165, 20.9165485806099], [-97.6835632149242, 20.9165485806099]]]]}, "properties": {"taskId": 262, "taskX": 119882, "taskY": 293306, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.915907182708], [-97.6828765694165, 20.9165485806099], [-97.6821899239088, 20.9165485806099], [-97.6821899239088, 20.915907182708], [-97.6828765694165, 20.915907182708]]]]}, "properties": {"taskId": 261, "taskX": 119883, "taskY": 293305, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.9152657820619], [-97.6828765694165, 20.915907182708], [-97.6821899239088, 20.915907182708], [-97.6821899239088, 20.9152657820619], [-97.6828765694165, 20.9152657820619]]]]}, "properties": {"taskId": 260, "taskX": 119883, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.9127001520379], [-97.6739501778165, 20.9133415636598], [-97.6732635323089, 20.9133415636598], [-97.6732635323089, 20.9127001520379], [-97.6739501778165, 20.9127001520379]]]]}, "properties": {"taskId": 806, "taskX": 119896, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.911417320563], [-97.6732635323089, 20.9120587376723], [-97.6725768868012, 20.9120587376723], [-97.6725768868012, 20.911417320563], [-97.6732635323089, 20.911417320563]]]]}, "properties": {"taskId": 804, "taskX": 119897, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.9120587376723], [-97.6739501778165, 20.9127001520379], [-97.6732635323089, 20.9127001520379], [-97.6732635323089, 20.9120587376723], [-97.6739501778165, 20.9120587376723]]]]}, "properties": {"taskId": 803, "taskX": 119896, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.911417320563], [-97.6739501778165, 20.9120587376723], [-97.6732635323089, 20.9120587376723], [-97.6732635323089, 20.911417320563], [-97.6739501778165, 20.911417320563]]]]}, "properties": {"taskId": 802, "taskX": 119896, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.91077590071], [-97.6732635323089, 20.911417320563], [-97.6725768868012, 20.911417320563], [-97.6725768868012, 20.91077590071], [-97.6732635323089, 20.91077590071]]]]}, "properties": {"taskId": 801, "taskX": 119897, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.9101344781134], [-97.6732635323089, 20.91077590071], [-97.6725768868012, 20.91077590071], [-97.6725768868012, 20.9101344781134], [-97.6732635323089, 20.9101344781134]]]]}, "properties": {"taskId": 800, "taskX": 119897, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.9101344781134], [-97.6739501778165, 20.91077590071], [-97.6732635323089, 20.91077590071], [-97.6732635323089, 20.9101344781134], [-97.6739501778165, 20.9101344781134]]]]}, "properties": {"taskId": 798, "taskX": 119896, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.9094930527734], [-97.6732635323089, 20.9101344781134], [-97.6725768868012, 20.9101344781134], [-97.6725768868012, 20.9094930527734], [-97.6732635323089, 20.9094930527734]]]]}, "properties": {"taskId": 797, "taskX": 119897, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.9094930527734], [-97.6739501778165, 20.9101344781134], [-97.6732635323089, 20.9101344781134], [-97.6732635323089, 20.9094930527734], [-97.6739501778165, 20.9094930527734]]]]}, "properties": {"taskId": 795, "taskX": 119896, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.9088516246899], [-97.6739501778165, 20.9094930527734], [-97.6732635323089, 20.9094930527734], [-97.6732635323089, 20.9088516246899], [-97.6739501778165, 20.9088516246899]]]]}, "properties": {"taskId": 794, "taskX": 119896, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.9082101938631], [-97.6732635323089, 20.9088516246899], [-97.6725768868012, 20.9088516246899], [-97.6725768868012, 20.9082101938631], [-97.6732635323089, 20.9082101938631]]]]}, "properties": {"taskId": 793, "taskX": 119897, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.9075687602929], [-97.6732635323089, 20.9082101938631], [-97.6725768868012, 20.9082101938631], [-97.6725768868012, 20.9075687602929], [-97.6732635323089, 20.9075687602929]]]]}, "properties": {"taskId": 792, "taskX": 119897, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.9075687602929], [-97.6739501778165, 20.9082101938631], [-97.6732635323089, 20.9082101938631], [-97.6732635323089, 20.9075687602929], [-97.6739501778165, 20.9075687602929]]]]}, "properties": {"taskId": 790, "taskX": 119896, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.9069273239795], [-97.6732635323089, 20.9075687602929], [-97.6725768868012, 20.9075687602929], [-97.6725768868012, 20.9069273239795], [-97.6732635323089, 20.9069273239795]]]]}, "properties": {"taskId": 789, "taskX": 119897, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.906285884923], [-97.6732635323089, 20.9069273239795], [-97.6725768868012, 20.9069273239795], [-97.6725768868012, 20.906285884923], [-97.6732635323089, 20.906285884923]]]]}, "properties": {"taskId": 788, "taskX": 119897, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.9069273239795], [-97.6739501778165, 20.9075687602929], [-97.6732635323089, 20.9075687602929], [-97.6732635323089, 20.9069273239795], [-97.6739501778165, 20.9069273239795]]]]}, "properties": {"taskId": 787, "taskX": 119896, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.906285884923], [-97.6739501778165, 20.9069273239795], [-97.6732635323089, 20.9069273239795], [-97.6732635323089, 20.906285884923], [-97.6739501778165, 20.906285884923]]]]}, "properties": {"taskId": 786, "taskX": 119896, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.9056444431233], [-97.6732635323089, 20.906285884923], [-97.6725768868012, 20.906285884923], [-97.6725768868012, 20.9056444431233], [-97.6732635323089, 20.9056444431233]]]]}, "properties": {"taskId": 785, "taskX": 119897, "taskY": 293289, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.9050029985807], [-97.6732635323089, 20.9056444431233], [-97.6725768868012, 20.9056444431233], [-97.6725768868012, 20.9050029985807], [-97.6732635323089, 20.9050029985807]]]]}, "properties": {"taskId": 784, "taskX": 119897, "taskY": 293288, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.9056444431233], [-97.6739501778165, 20.906285884923], [-97.6732635323089, 20.906285884923], [-97.6732635323089, 20.9056444431233], [-97.6739501778165, 20.9056444431233]]]]}, "properties": {"taskId": 783, "taskX": 119896, "taskY": 293289, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.9050029985807], [-97.6739501778165, 20.9056444431233], [-97.6732635323089, 20.9056444431233], [-97.6732635323089, 20.9050029985807], [-97.6739501778165, 20.9050029985807]]]]}, "properties": {"taskId": 782, "taskX": 119896, "taskY": 293288, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.9043615512951], [-97.6732635323089, 20.9050029985807], [-97.6725768868012, 20.9050029985807], [-97.6725768868012, 20.9043615512951], [-97.6732635323089, 20.9043615512951]]]]}, "properties": {"taskId": 781, "taskX": 119897, "taskY": 293287, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.9037201012666], [-97.6732635323089, 20.9043615512951], [-97.6725768868012, 20.9043615512951], [-97.6725768868012, 20.9037201012666], [-97.6732635323089, 20.9037201012666]]]]}, "properties": {"taskId": 780, "taskX": 119897, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.9043615512951], [-97.6739501778165, 20.9050029985807], [-97.6732635323089, 20.9050029985807], [-97.6732635323089, 20.9043615512951], [-97.6739501778165, 20.9043615512951]]]]}, "properties": {"taskId": 779, "taskX": 119896, "taskY": 293287, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.9037201012666], [-97.6739501778165, 20.9043615512951], [-97.6732635323089, 20.9043615512951], [-97.6732635323089, 20.9037201012666], [-97.6739501778165, 20.9037201012666]]]]}, "properties": {"taskId": 778, "taskX": 119896, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.9030786484952], [-97.6732635323089, 20.9037201012666], [-97.6725768868012, 20.9037201012666], [-97.6725768868012, 20.9030786484952], [-97.6732635323089, 20.9030786484952]]]]}, "properties": {"taskId": 777, "taskX": 119897, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.9024371929812], [-97.6732635323089, 20.9030786484952], [-97.6725768868012, 20.9030786484952], [-97.6725768868012, 20.9024371929812], [-97.6732635323089, 20.9024371929812]]]]}, "properties": {"taskId": 776, "taskX": 119897, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.9030786484952], [-97.6739501778165, 20.9037201012666], [-97.6732635323089, 20.9037201012666], [-97.6732635323089, 20.9030786484952], [-97.6739501778165, 20.9030786484952]]]]}, "properties": {"taskId": 775, "taskX": 119896, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.9024371929812], [-97.6739501778165, 20.9030786484952], [-97.6732635323089, 20.9030786484952], [-97.6732635323089, 20.9024371929812], [-97.6739501778165, 20.9024371929812]]]]}, "properties": {"taskId": 774, "taskX": 119896, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.9017957347244], [-97.6732635323089, 20.9024371929812], [-97.6725768868012, 20.9024371929812], [-97.6725768868012, 20.9017957347244], [-97.6732635323089, 20.9017957347244]]]]}, "properties": {"taskId": 773, "taskX": 119897, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.9011542737251], [-97.6732635323089, 20.9017957347244], [-97.6725768868012, 20.9017957347244], [-97.6725768868012, 20.9011542737251], [-97.6732635323089, 20.9011542737251]]]]}, "properties": {"taskId": 772, "taskX": 119897, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.9017957347244], [-97.6739501778165, 20.9024371929812], [-97.6732635323089, 20.9024371929812], [-97.6732635323089, 20.9017957347244], [-97.6739501778165, 20.9017957347244]]]]}, "properties": {"taskId": 771, "taskX": 119896, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.9011542737251], [-97.6739501778165, 20.9017957347244], [-97.6732635323089, 20.9017957347244], [-97.6732635323089, 20.9011542737251], [-97.6739501778165, 20.9011542737251]]]]}, "properties": {"taskId": 770, "taskX": 119896, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.9005128099832], [-97.6732635323089, 20.9011542737251], [-97.6725768868012, 20.9011542737251], [-97.6725768868012, 20.9005128099832], [-97.6732635323089, 20.9005128099832]]]]}, "properties": {"taskId": 769, "taskX": 119897, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.8998713434988], [-97.6732635323089, 20.9005128099832], [-97.6725768868012, 20.9005128099832], [-97.6725768868012, 20.8998713434988], [-97.6732635323089, 20.8998713434988]]]]}, "properties": {"taskId": 768, "taskX": 119897, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.9005128099832], [-97.6739501778165, 20.9011542737251], [-97.6732635323089, 20.9011542737251], [-97.6732635323089, 20.9005128099832], [-97.6739501778165, 20.9005128099832]]]]}, "properties": {"taskId": 767, "taskX": 119896, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.8998713434988], [-97.6739501778165, 20.9005128099832], [-97.6732635323089, 20.9005128099832], [-97.6732635323089, 20.8998713434988], [-97.6739501778165, 20.8998713434988]]]]}, "properties": {"taskId": 766, "taskX": 119896, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.899229874272], [-97.6732635323089, 20.8998713434988], [-97.6725768868012, 20.8998713434988], [-97.6725768868012, 20.899229874272], [-97.6732635323089, 20.899229874272]]]]}, "properties": {"taskId": 765, "taskX": 119897, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.8985884023029], [-97.6732635323089, 20.899229874272], [-97.6725768868012, 20.899229874272], [-97.6725768868012, 20.8985884023029], [-97.6732635323089, 20.8985884023029]]]]}, "properties": {"taskId": 764, "taskX": 119897, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.899229874272], [-97.6739501778165, 20.8998713434988], [-97.6732635323089, 20.8998713434988], [-97.6732635323089, 20.899229874272], [-97.6739501778165, 20.899229874272]]]]}, "properties": {"taskId": 763, "taskX": 119896, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6739501778165, 20.8985884023029], [-97.6739501778165, 20.899229874272], [-97.6732635323089, 20.899229874272], [-97.6732635323089, 20.8985884023029], [-97.6739501778165, 20.8985884023029]]]]}, "properties": {"taskId": 762, "taskX": 119896, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6732635323089, 20.8979469275915], [-97.6732635323089, 20.8985884023029], [-97.6725768868012, 20.8985884023029], [-97.6725768868012, 20.8979469275915], [-97.6732635323089, 20.8979469275915]]]]}, "properties": {"taskId": 761, "taskX": 119897, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.9152657820619], [-97.6835632149242, 20.915907182708], [-97.6828765694165, 20.915907182708], [-97.6828765694165, 20.9152657820619], [-97.6835632149242, 20.9152657820619]]]]}, "properties": {"taskId": 258, "taskX": 119882, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.9139829725378], [-97.6828765694165, 20.9146243786719], [-97.6821899239088, 20.9146243786719], [-97.6821899239088, 20.9139829725378], [-97.6828765694165, 20.9139829725378]]]]}, "properties": {"taskId": 256, "taskX": 119883, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.9146243786719], [-97.6835632149242, 20.9152657820619], [-97.6828765694165, 20.9152657820619], [-97.6828765694165, 20.9146243786719], [-97.6835632149242, 20.9146243786719]]]]}, "properties": {"taskId": 255, "taskX": 119882, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.9139829725378], [-97.6835632149242, 20.9146243786719], [-97.6828765694165, 20.9146243786719], [-97.6828765694165, 20.9139829725378], [-97.6835632149242, 20.9139829725378]]]]}, "properties": {"taskId": 254, "taskX": 119882, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.9133415636598], [-97.6828765694165, 20.9139829725378], [-97.6821899239088, 20.9139829725378], [-97.6821899239088, 20.9133415636598], [-97.6828765694165, 20.9133415636598]]]]}, "properties": {"taskId": 253, "taskX": 119883, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.9127001520379], [-97.6828765694165, 20.9133415636598], [-97.6821899239088, 20.9133415636598], [-97.6821899239088, 20.9127001520379], [-97.6828765694165, 20.9127001520379]]]]}, "properties": {"taskId": 252, "taskX": 119883, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.9133415636598], [-97.6835632149242, 20.9139829725378], [-97.6828765694165, 20.9139829725378], [-97.6828765694165, 20.9133415636598], [-97.6835632149242, 20.9133415636598]]]]}, "properties": {"taskId": 251, "taskX": 119882, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.9127001520379], [-97.6835632149242, 20.9133415636598], [-97.6828765694165, 20.9133415636598], [-97.6828765694165, 20.9127001520379], [-97.6835632149242, 20.9127001520379]]]]}, "properties": {"taskId": 250, "taskX": 119882, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.9120587376723], [-97.6828765694165, 20.9127001520379], [-97.6821899239088, 20.9127001520379], [-97.6821899239088, 20.9120587376723], [-97.6828765694165, 20.9120587376723]]]]}, "properties": {"taskId": 249, "taskX": 119883, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.911417320563], [-97.6828765694165, 20.9120587376723], [-97.6821899239088, 20.9120587376723], [-97.6821899239088, 20.911417320563], [-97.6828765694165, 20.911417320563]]]]}, "properties": {"taskId": 248, "taskX": 119883, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.9120587376723], [-97.6835632149242, 20.9127001520379], [-97.6828765694165, 20.9127001520379], [-97.6828765694165, 20.9120587376723], [-97.6835632149242, 20.9120587376723]]]]}, "properties": {"taskId": 247, "taskX": 119882, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.911417320563], [-97.6835632149242, 20.9120587376723], [-97.6828765694165, 20.9120587376723], [-97.6828765694165, 20.911417320563], [-97.6835632149242, 20.911417320563]]]]}, "properties": {"taskId": 246, "taskX": 119882, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.91077590071], [-97.6828765694165, 20.911417320563], [-97.6821899239088, 20.911417320563], [-97.6821899239088, 20.91077590071], [-97.6828765694165, 20.91077590071]]]]}, "properties": {"taskId": 245, "taskX": 119883, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.9101344781134], [-97.6828765694165, 20.91077590071], [-97.6821899239088, 20.91077590071], [-97.6821899239088, 20.9101344781134], [-97.6828765694165, 20.9101344781134]]]]}, "properties": {"taskId": 244, "taskX": 119883, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.91077590071], [-97.6835632149242, 20.911417320563], [-97.6828765694165, 20.911417320563], [-97.6828765694165, 20.91077590071], [-97.6835632149242, 20.91077590071]]]]}, "properties": {"taskId": 243, "taskX": 119882, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.9094930527734], [-97.6828765694165, 20.9101344781134], [-97.6821899239088, 20.9101344781134], [-97.6821899239088, 20.9094930527734], [-97.6828765694165, 20.9094930527734]]]]}, "properties": {"taskId": 241, "taskX": 119883, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.9088516246899], [-97.6828765694165, 20.9094930527734], [-97.6821899239088, 20.9094930527734], [-97.6821899239088, 20.9088516246899], [-97.6828765694165, 20.9088516246899]]]]}, "properties": {"taskId": 240, "taskX": 119883, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.9094930527734], [-97.6835632149242, 20.9101344781134], [-97.6828765694165, 20.9101344781134], [-97.6828765694165, 20.9094930527734], [-97.6835632149242, 20.9094930527734]]]]}, "properties": {"taskId": 239, "taskX": 119882, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.9088516246899], [-97.6835632149242, 20.9094930527734], [-97.6828765694165, 20.9094930527734], [-97.6828765694165, 20.9088516246899], [-97.6835632149242, 20.9088516246899]]]]}, "properties": {"taskId": 238, "taskX": 119882, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.9082101938631], [-97.6828765694165, 20.9088516246899], [-97.6821899239088, 20.9088516246899], [-97.6821899239088, 20.9082101938631], [-97.6828765694165, 20.9082101938631]]]]}, "properties": {"taskId": 237, "taskX": 119883, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.9075687602929], [-97.6828765694165, 20.9082101938631], [-97.6821899239088, 20.9082101938631], [-97.6821899239088, 20.9075687602929], [-97.6828765694165, 20.9075687602929]]]]}, "properties": {"taskId": 236, "taskX": 119883, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.9082101938631], [-97.6835632149242, 20.9088516246899], [-97.6828765694165, 20.9088516246899], [-97.6828765694165, 20.9082101938631], [-97.6835632149242, 20.9082101938631]]]]}, "properties": {"taskId": 235, "taskX": 119882, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.9069273239795], [-97.6828765694165, 20.9075687602929], [-97.6821899239088, 20.9075687602929], [-97.6821899239088, 20.9069273239795], [-97.6828765694165, 20.9069273239795]]]]}, "properties": {"taskId": 233, "taskX": 119883, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.906285884923], [-97.6828765694165, 20.9069273239795], [-97.6821899239088, 20.9069273239795], [-97.6821899239088, 20.906285884923], [-97.6828765694165, 20.906285884923]]]]}, "properties": {"taskId": 232, "taskX": 119883, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.9069273239795], [-97.6835632149242, 20.9075687602929], [-97.6828765694165, 20.9075687602929], [-97.6828765694165, 20.9069273239795], [-97.6835632149242, 20.9069273239795]]]]}, "properties": {"taskId": 231, "taskX": 119882, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.906285884923], [-97.6835632149242, 20.9069273239795], [-97.6828765694165, 20.9069273239795], [-97.6828765694165, 20.906285884923], [-97.6835632149242, 20.906285884923]]]]}, "properties": {"taskId": 230, "taskX": 119882, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.9037201012666], [-97.6835632149242, 20.9050029985807], [-97.6821899239088, 20.9050029985807], [-97.6821899239088, 20.9037201012666], [-97.6835632149242, 20.9037201012666]]]]}, "properties": {"taskId": 228, "taskX": 59941, "taskY": 146643, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.9024371929812], [-97.6835632149242, 20.9037201012666], [-97.6821899239088, 20.9037201012666], [-97.6821899239088, 20.9024371929812], [-97.6835632149242, 20.9024371929812]]]]}, "properties": {"taskId": 227, "taskX": 59941, "taskY": 146642, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.9017957347244], [-97.6828765694165, 20.9024371929812], [-97.6821899239088, 20.9024371929812], [-97.6821899239088, 20.9017957347244], [-97.6828765694165, 20.9017957347244]]]]}, "properties": {"taskId": 226, "taskX": 119883, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.9011542737251], [-97.6828765694165, 20.9017957347244], [-97.6821899239088, 20.9017957347244], [-97.6821899239088, 20.9011542737251], [-97.6828765694165, 20.9011542737251]]]]}, "properties": {"taskId": 225, "taskX": 119883, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.9017957347244], [-97.6835632149242, 20.9024371929812], [-97.6828765694165, 20.9024371929812], [-97.6828765694165, 20.9017957347244], [-97.6835632149242, 20.9017957347244]]]]}, "properties": {"taskId": 224, "taskX": 119882, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.9011542737251], [-97.6835632149242, 20.9017957347244], [-97.6828765694165, 20.9017957347244], [-97.6828765694165, 20.9011542737251], [-97.6835632149242, 20.9011542737251]]]]}, "properties": {"taskId": 223, "taskX": 119882, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.9005128099832], [-97.6828765694165, 20.9011542737251], [-97.6821899239088, 20.9011542737251], [-97.6821899239088, 20.9005128099832], [-97.6828765694165, 20.9005128099832]]]]}, "properties": {"taskId": 222, "taskX": 119883, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.8998713434988], [-97.6828765694165, 20.9005128099832], [-97.6821899239088, 20.9005128099832], [-97.6821899239088, 20.8998713434988], [-97.6828765694165, 20.8998713434988]]]]}, "properties": {"taskId": 221, "taskX": 119883, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.9005128099832], [-97.6835632149242, 20.9011542737251], [-97.6828765694165, 20.9011542737251], [-97.6828765694165, 20.9005128099832], [-97.6835632149242, 20.9005128099832]]]]}, "properties": {"taskId": 220, "taskX": 119882, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.8998713434988], [-97.6835632149242, 20.9005128099832], [-97.6828765694165, 20.9005128099832], [-97.6828765694165, 20.8998713434988], [-97.6835632149242, 20.8998713434988]]]]}, "properties": {"taskId": 219, "taskX": 119882, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.899229874272], [-97.6828765694165, 20.8998713434988], [-97.6821899239088, 20.8998713434988], [-97.6821899239088, 20.899229874272], [-97.6828765694165, 20.899229874272]]]]}, "properties": {"taskId": 218, "taskX": 119883, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.899229874272], [-97.6835632149242, 20.8998713434988], [-97.6828765694165, 20.8998713434988], [-97.6828765694165, 20.899229874272], [-97.6835632149242, 20.899229874272]]]]}, "properties": {"taskId": 216, "taskX": 119882, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.8979469275915], [-97.6828765694165, 20.8985884023029], [-97.6821899239088, 20.8985884023029], [-97.6821899239088, 20.8979469275915], [-97.6828765694165, 20.8979469275915]]]]}, "properties": {"taskId": 214, "taskX": 119883, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.8973054501379], [-97.6828765694165, 20.8979469275915], [-97.6821899239088, 20.8979469275915], [-97.6821899239088, 20.8973054501379], [-97.6828765694165, 20.8973054501379]]]]}, "properties": {"taskId": 213, "taskX": 119883, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.8979469275915], [-97.6835632149242, 20.8985884023029], [-97.6828765694165, 20.8985884023029], [-97.6828765694165, 20.8979469275915], [-97.6835632149242, 20.8979469275915]]]]}, "properties": {"taskId": 212, "taskX": 119882, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.8973054501379], [-97.6835632149242, 20.8979469275915], [-97.6828765694165, 20.8979469275915], [-97.6828765694165, 20.8973054501379], [-97.6835632149242, 20.8973054501379]]]]}, "properties": {"taskId": 211, "taskX": 119882, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.8966639699422], [-97.6828765694165, 20.8973054501379], [-97.6821899239088, 20.8973054501379], [-97.6821899239088, 20.8966639699422], [-97.6828765694165, 20.8966639699422]]]]}, "properties": {"taskId": 210, "taskX": 119883, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.8960224870044], [-97.6828765694165, 20.8966639699422], [-97.6821899239088, 20.8966639699422], [-97.6821899239088, 20.8960224870044], [-97.6828765694165, 20.8960224870044]]]]}, "properties": {"taskId": 209, "taskX": 119883, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.8966639699422], [-97.6835632149242, 20.8973054501379], [-97.6828765694165, 20.8973054501379], [-97.6828765694165, 20.8966639699422], [-97.6835632149242, 20.8966639699422]]]]}, "properties": {"taskId": 208, "taskX": 119882, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.8960224870044], [-97.6835632149242, 20.8966639699422], [-97.6828765694165, 20.8966639699422], [-97.6828765694165, 20.8960224870044], [-97.6835632149242, 20.8960224870044]]]]}, "properties": {"taskId": 207, "taskX": 119882, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.8947395129029], [-97.6828765694165, 20.8953810013247], [-97.6821899239088, 20.8953810013247], [-97.6821899239088, 20.8947395129029], [-97.6828765694165, 20.8947395129029]]]]}, "properties": {"taskId": 205, "taskX": 119883, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.8953810013247], [-97.6835632149242, 20.8960224870044], [-97.6828765694165, 20.8960224870044], [-97.6828765694165, 20.8953810013247], [-97.6835632149242, 20.8953810013247]]]]}, "properties": {"taskId": 204, "taskX": 119882, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.8947395129029], [-97.6835632149242, 20.8953810013247], [-97.6828765694165, 20.8953810013247], [-97.6828765694165, 20.8947395129029], [-97.6835632149242, 20.8947395129029]]]]}, "properties": {"taskId": 203, "taskX": 119882, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.8940980217394], [-97.6828765694165, 20.8947395129029], [-97.6821899239088, 20.8947395129029], [-97.6821899239088, 20.8940980217394], [-97.6828765694165, 20.8940980217394]]]]}, "properties": {"taskId": 202, "taskX": 119883, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6828765694165, 20.8934565278341], [-97.6828765694165, 20.8940980217394], [-97.6821899239088, 20.8940980217394], [-97.6821899239088, 20.8934565278341], [-97.6828765694165, 20.8934565278341]]]]}, "properties": {"taskId": 201, "taskX": 119883, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.8940980217394], [-97.6835632149242, 20.8947395129029], [-97.6828765694165, 20.8947395129029], [-97.6828765694165, 20.8940980217394], [-97.6835632149242, 20.8940980217394]]]]}, "properties": {"taskId": 200, "taskX": 119882, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.8934565278341], [-97.6835632149242, 20.8940980217394], [-97.6828765694165, 20.8940980217394], [-97.6828765694165, 20.8934565278341], [-97.6835632149242, 20.8934565278341]]]]}, "properties": {"taskId": 199, "taskX": 119882, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.8921735317983], [-97.6835632149242, 20.8934565278341], [-97.6821899239088, 20.8934565278341], [-97.6821899239088, 20.8921735317983], [-97.6835632149242, 20.8921735317983]]]]}, "properties": {"taskId": 198, "taskX": 59941, "taskY": 146634, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6835632149242, 20.8908905247962], [-97.6835632149242, 20.8921735317983], [-97.6821899239088, 20.8921735317983], [-97.6821899239088, 20.8908905247962], [-97.6835632149242, 20.8908905247962]]]]}, "properties": {"taskId": 197, "taskX": 59941, "taskY": 146633, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.919114144775], [-97.6849365059396, 20.920396910391], [-97.6835632149242, 20.920396910391], [-97.6835632149242, 20.919114144775], [-97.6849365059396, 20.919114144775]]]]}, "properties": {"taskId": 195, "taskX": 59940, "taskY": 146655, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.9178313681812], [-97.6849365059396, 20.919114144775], [-97.6835632149242, 20.919114144775], [-97.6835632149242, 20.9178313681812], [-97.6849365059396, 20.9178313681812]]]]}, "properties": {"taskId": 194, "taskX": 59940, "taskY": 146654, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.9165485806099], [-97.6849365059396, 20.9178313681812], [-97.6835632149242, 20.9178313681812], [-97.6835632149242, 20.9165485806099], [-97.6849365059396, 20.9165485806099]]]]}, "properties": {"taskId": 193, "taskX": 59940, "taskY": 146653, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.9152657820619], [-97.6849365059396, 20.9165485806099], [-97.6835632149242, 20.9165485806099], [-97.6835632149242, 20.9152657820619], [-97.6849365059396, 20.9152657820619]]]]}, "properties": {"taskId": 192, "taskX": 59940, "taskY": 146652, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.9127001520379], [-97.6849365059396, 20.9139829725378], [-97.6835632149242, 20.9139829725378], [-97.6835632149242, 20.9127001520379], [-97.6849365059396, 20.9127001520379]]]]}, "properties": {"taskId": 190, "taskX": 59940, "taskY": 146650, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6842498604319, 20.9120587376723], [-97.6842498604319, 20.9127001520379], [-97.6835632149242, 20.9127001520379], [-97.6835632149242, 20.9120587376723], [-97.6842498604319, 20.9120587376723]]]]}, "properties": {"taskId": 189, "taskX": 119881, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6842498604319, 20.911417320563], [-97.6842498604319, 20.9120587376723], [-97.6835632149242, 20.9120587376723], [-97.6835632149242, 20.911417320563], [-97.6842498604319, 20.911417320563]]]]}, "properties": {"taskId": 188, "taskX": 119881, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.9120587376723], [-97.6849365059396, 20.9127001520379], [-97.6842498604319, 20.9127001520379], [-97.6842498604319, 20.9120587376723], [-97.6849365059396, 20.9120587376723]]]]}, "properties": {"taskId": 187, "taskX": 119880, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6842498604319, 20.91077590071], [-97.6842498604319, 20.911417320563], [-97.6835632149242, 20.911417320563], [-97.6835632149242, 20.91077590071], [-97.6842498604319, 20.91077590071]]]]}, "properties": {"taskId": 185, "taskX": 119881, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6842498604319, 20.9101344781134], [-97.6842498604319, 20.91077590071], [-97.6835632149242, 20.91077590071], [-97.6835632149242, 20.9101344781134], [-97.6842498604319, 20.9101344781134]]]]}, "properties": {"taskId": 184, "taskX": 119881, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6842498604319, 20.9094930527734], [-97.6842498604319, 20.9101344781134], [-97.6835632149242, 20.9101344781134], [-97.6835632149242, 20.9094930527734], [-97.6842498604319, 20.9094930527734]]]]}, "properties": {"taskId": 181, "taskX": 119881, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6842498604319, 20.9088516246899], [-97.6842498604319, 20.9094930527734], [-97.6835632149242, 20.9094930527734], [-97.6835632149242, 20.9088516246899], [-97.6842498604319, 20.9088516246899]]]]}, "properties": {"taskId": 180, "taskX": 119881, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.9094930527734], [-97.6849365059396, 20.9101344781134], [-97.6842498604319, 20.9101344781134], [-97.6842498604319, 20.9094930527734], [-97.6849365059396, 20.9094930527734]]]]}, "properties": {"taskId": 179, "taskX": 119880, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.9088516246899], [-97.6849365059396, 20.9094930527734], [-97.6842498604319, 20.9094930527734], [-97.6842498604319, 20.9088516246899], [-97.6849365059396, 20.9088516246899]]]]}, "properties": {"taskId": 178, "taskX": 119880, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6842498604319, 20.9082101938631], [-97.6842498604319, 20.9088516246899], [-97.6835632149242, 20.9088516246899], [-97.6835632149242, 20.9082101938631], [-97.6842498604319, 20.9082101938631]]]]}, "properties": {"taskId": 177, "taskX": 119881, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6842498604319, 20.9075687602929], [-97.6842498604319, 20.9082101938631], [-97.6835632149242, 20.9082101938631], [-97.6835632149242, 20.9075687602929], [-97.6842498604319, 20.9075687602929]]]]}, "properties": {"taskId": 176, "taskX": 119881, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.9082101938631], [-97.6849365059396, 20.9088516246899], [-97.6842498604319, 20.9088516246899], [-97.6842498604319, 20.9082101938631], [-97.6849365059396, 20.9082101938631]]]]}, "properties": {"taskId": 175, "taskX": 119880, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.9075687602929], [-97.6849365059396, 20.9082101938631], [-97.6842498604319, 20.9082101938631], [-97.6842498604319, 20.9075687602929], [-97.6849365059396, 20.9075687602929]]]]}, "properties": {"taskId": 174, "taskX": 119880, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.906285884923], [-97.6849365059396, 20.9075687602929], [-97.6835632149242, 20.9075687602929], [-97.6835632149242, 20.906285884923], [-97.6849365059396, 20.906285884923]]]]}, "properties": {"taskId": 173, "taskX": 59940, "taskY": 146645, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.9050029985807], [-97.6849365059396, 20.906285884923], [-97.6835632149242, 20.906285884923], [-97.6835632149242, 20.9050029985807], [-97.6849365059396, 20.9050029985807]]]]}, "properties": {"taskId": 172, "taskX": 59940, "taskY": 146644, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.9037201012666], [-97.6849365059396, 20.9050029985807], [-97.6835632149242, 20.9050029985807], [-97.6835632149242, 20.9037201012666], [-97.6849365059396, 20.9037201012666]]]]}, "properties": {"taskId": 171, "taskX": 59940, "taskY": 146643, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.9024371929812], [-97.6849365059396, 20.9037201012666], [-97.6835632149242, 20.9037201012666], [-97.6835632149242, 20.9024371929812], [-97.6849365059396, 20.9024371929812]]]]}, "properties": {"taskId": 170, "taskX": 59940, "taskY": 146642, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6842498604319, 20.9017957347244], [-97.6842498604319, 20.9024371929812], [-97.6835632149242, 20.9024371929812], [-97.6835632149242, 20.9017957347244], [-97.6842498604319, 20.9017957347244]]]]}, "properties": {"taskId": 169, "taskX": 119881, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6842498604319, 20.9011542737251], [-97.6842498604319, 20.9017957347244], [-97.6835632149242, 20.9017957347244], [-97.6835632149242, 20.9011542737251], [-97.6842498604319, 20.9011542737251]]]]}, "properties": {"taskId": 168, "taskX": 119881, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.9011542737251], [-97.6849365059396, 20.9017957347244], [-97.6842498604319, 20.9017957347244], [-97.6842498604319, 20.9011542737251], [-97.6849365059396, 20.9011542737251]]]]}, "properties": {"taskId": 166, "taskX": 119880, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6842498604319, 20.9005128099832], [-97.6842498604319, 20.9011542737251], [-97.6835632149242, 20.9011542737251], [-97.6835632149242, 20.9005128099832], [-97.6842498604319, 20.9005128099832]]]]}, "properties": {"taskId": 165, "taskX": 119881, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.9005128099832], [-97.6849365059396, 20.9011542737251], [-97.6842498604319, 20.9011542737251], [-97.6842498604319, 20.9005128099832], [-97.6849365059396, 20.9005128099832]]]]}, "properties": {"taskId": 163, "taskX": 119880, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.8998713434988], [-97.6849365059396, 20.9005128099832], [-97.6842498604319, 20.9005128099832], [-97.6842498604319, 20.8998713434988], [-97.6849365059396, 20.8998713434988]]]]}, "properties": {"taskId": 162, "taskX": 119880, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6842498604319, 20.899229874272], [-97.6842498604319, 20.8998713434988], [-97.6835632149242, 20.8998713434988], [-97.6835632149242, 20.899229874272], [-97.6842498604319, 20.899229874272]]]]}, "properties": {"taskId": 161, "taskX": 119881, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6842498604319, 20.8985884023029], [-97.6842498604319, 20.899229874272], [-97.6835632149242, 20.899229874272], [-97.6835632149242, 20.8985884023029], [-97.6842498604319, 20.8985884023029]]]]}, "properties": {"taskId": 160, "taskX": 119881, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.899229874272], [-97.6849365059396, 20.8998713434988], [-97.6842498604319, 20.8998713434988], [-97.6842498604319, 20.899229874272], [-97.6849365059396, 20.899229874272]]]]}, "properties": {"taskId": 159, "taskX": 119880, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.8985884023029], [-97.6849365059396, 20.899229874272], [-97.6842498604319, 20.899229874272], [-97.6842498604319, 20.8985884023029], [-97.6849365059396, 20.8985884023029]]]]}, "properties": {"taskId": 158, "taskX": 119880, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6842498604319, 20.8979469275915], [-97.6842498604319, 20.8985884023029], [-97.6835632149242, 20.8985884023029], [-97.6835632149242, 20.8979469275915], [-97.6842498604319, 20.8979469275915]]]]}, "properties": {"taskId": 157, "taskX": 119881, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6842498604319, 20.8973054501379], [-97.6842498604319, 20.8979469275915], [-97.6835632149242, 20.8979469275915], [-97.6835632149242, 20.8973054501379], [-97.6842498604319, 20.8973054501379]]]]}, "properties": {"taskId": 156, "taskX": 119881, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.8979469275915], [-97.6849365059396, 20.8985884023029], [-97.6842498604319, 20.8985884023029], [-97.6842498604319, 20.8979469275915], [-97.6849365059396, 20.8979469275915]]]]}, "properties": {"taskId": 155, "taskX": 119880, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.8973054501379], [-97.6849365059396, 20.8979469275915], [-97.6842498604319, 20.8979469275915], [-97.6842498604319, 20.8973054501379], [-97.6849365059396, 20.8973054501379]]]]}, "properties": {"taskId": 154, "taskX": 119880, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6842498604319, 20.8966639699422], [-97.6842498604319, 20.8973054501379], [-97.6835632149242, 20.8973054501379], [-97.6835632149242, 20.8966639699422], [-97.6842498604319, 20.8966639699422]]]]}, "properties": {"taskId": 153, "taskX": 119881, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.8966639699422], [-97.6849365059396, 20.8973054501379], [-97.6842498604319, 20.8973054501379], [-97.6842498604319, 20.8966639699422], [-97.6849365059396, 20.8966639699422]]]]}, "properties": {"taskId": 151, "taskX": 119880, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.8960224870044], [-97.6849365059396, 20.8966639699422], [-97.6842498604319, 20.8966639699422], [-97.6842498604319, 20.8960224870044], [-97.6849365059396, 20.8960224870044]]]]}, "properties": {"taskId": 150, "taskX": 119880, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6842498604319, 20.8953810013247], [-97.6842498604319, 20.8960224870044], [-97.6835632149242, 20.8960224870044], [-97.6835632149242, 20.8953810013247], [-97.6842498604319, 20.8953810013247]]]]}, "properties": {"taskId": 149, "taskX": 119881, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6842498604319, 20.8947395129029], [-97.6842498604319, 20.8953810013247], [-97.6835632149242, 20.8953810013247], [-97.6835632149242, 20.8947395129029], [-97.6842498604319, 20.8947395129029]]]]}, "properties": {"taskId": 148, "taskX": 119881, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.8953810013247], [-97.6849365059396, 20.8960224870044], [-97.6842498604319, 20.8960224870044], [-97.6842498604319, 20.8953810013247], [-97.6849365059396, 20.8953810013247]]]]}, "properties": {"taskId": 147, "taskX": 119880, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.8947395129029], [-97.6849365059396, 20.8953810013247], [-97.6842498604319, 20.8953810013247], [-97.6842498604319, 20.8947395129029], [-97.6849365059396, 20.8947395129029]]]]}, "properties": {"taskId": 146, "taskX": 119880, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6842498604319, 20.8940980217394], [-97.6842498604319, 20.8947395129029], [-97.6835632149242, 20.8947395129029], [-97.6835632149242, 20.8940980217394], [-97.6842498604319, 20.8940980217394]]]]}, "properties": {"taskId": 145, "taskX": 119881, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6842498604319, 20.8934565278341], [-97.6842498604319, 20.8940980217394], [-97.6835632149242, 20.8940980217394], [-97.6835632149242, 20.8934565278341], [-97.6842498604319, 20.8934565278341]]]]}, "properties": {"taskId": 144, "taskX": 119881, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.8940980217394], [-97.6849365059396, 20.8947395129029], [-97.6842498604319, 20.8947395129029], [-97.6842498604319, 20.8940980217394], [-97.6849365059396, 20.8940980217394]]]]}, "properties": {"taskId": 143, "taskX": 119880, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.8934565278341], [-97.6849365059396, 20.8940980217394], [-97.6842498604319, 20.8940980217394], [-97.6842498604319, 20.8934565278341], [-97.6849365059396, 20.8934565278341]]]]}, "properties": {"taskId": 142, "taskX": 119880, "taskY": 293270, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6842498604319, 20.892815031187], [-97.6842498604319, 20.8934565278341], [-97.6835632149242, 20.8934565278341], [-97.6835632149242, 20.892815031187], [-97.6842498604319, 20.892815031187]]]]}, "properties": {"taskId": 141, "taskX": 119881, "taskY": 293269, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6842498604319, 20.8921735317983], [-97.6842498604319, 20.892815031187], [-97.6835632149242, 20.892815031187], [-97.6835632149242, 20.8921735317983], [-97.6842498604319, 20.8921735317983]]]]}, "properties": {"taskId": 140, "taskX": 119881, "taskY": 293268, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.892815031187], [-97.6849365059396, 20.8934565278341], [-97.6842498604319, 20.8934565278341], [-97.6842498604319, 20.892815031187], [-97.6849365059396, 20.892815031187]]]]}, "properties": {"taskId": 139, "taskX": 119880, "taskY": 293269, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.8921735317983], [-97.6849365059396, 20.892815031187], [-97.6842498604319, 20.892815031187], [-97.6842498604319, 20.8921735317983], [-97.6849365059396, 20.8921735317983]]]]}, "properties": {"taskId": 138, "taskX": 119880, "taskY": 293268, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6849365059396, 20.8908905247962], [-97.6849365059396, 20.8921735317983], [-97.6835632149242, 20.8921735317983], [-97.6835632149242, 20.8908905247962], [-97.6849365059396, 20.8908905247962]]]]}, "properties": {"taskId": 137, "taskX": 59940, "taskY": 146633, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.920396910391], [-97.6863097969549, 20.9216796650287], [-97.6849365059396, 20.9216796650287], [-97.6849365059396, 20.920396910391], [-97.6863097969549, 20.920396910391]]]]}, "properties": {"taskId": 136, "taskX": 59939, "taskY": 146656, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.9178313681812], [-97.6863097969549, 20.919114144775], [-97.6849365059396, 20.919114144775], [-97.6849365059396, 20.9178313681812], [-97.6863097969549, 20.9178313681812]]]]}, "properties": {"taskId": 134, "taskX": 59939, "taskY": 146654, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.9165485806099], [-97.6863097969549, 20.9178313681812], [-97.6849365059396, 20.9178313681812], [-97.6849365059396, 20.9165485806099], [-97.6863097969549, 20.9165485806099]]]]}, "properties": {"taskId": 133, "taskX": 59939, "taskY": 146653, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.9139829725378], [-97.6863097969549, 20.9152657820619], [-97.6849365059396, 20.9152657820619], [-97.6849365059396, 20.9139829725378], [-97.6863097969549, 20.9139829725378]]]]}, "properties": {"taskId": 132, "taskX": 59939, "taskY": 146651, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.9127001520379], [-97.6863097969549, 20.9139829725378], [-97.6849365059396, 20.9139829725378], [-97.6849365059396, 20.9127001520379], [-97.6863097969549, 20.9127001520379]]]]}, "properties": {"taskId": 131, "taskX": 59939, "taskY": 146650, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.911417320563], [-97.6863097969549, 20.9127001520379], [-97.6849365059396, 20.9127001520379], [-97.6849365059396, 20.911417320563], [-97.6863097969549, 20.911417320563]]]]}, "properties": {"taskId": 130, "taskX": 59939, "taskY": 146649, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.9101344781134], [-97.6863097969549, 20.911417320563], [-97.6849365059396, 20.911417320563], [-97.6849365059396, 20.9101344781134], [-97.6863097969549, 20.9101344781134]]]]}, "properties": {"taskId": 129, "taskX": 59939, "taskY": 146648, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.906285884923], [-97.6863097969549, 20.9075687602929], [-97.6849365059396, 20.9075687602929], [-97.6849365059396, 20.906285884923], [-97.6863097969549, 20.906285884923]]]]}, "properties": {"taskId": 126, "taskX": 59939, "taskY": 146645, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.9050029985807], [-97.6863097969549, 20.906285884923], [-97.6849365059396, 20.906285884923], [-97.6849365059396, 20.9050029985807], [-97.6863097969549, 20.9050029985807]]]]}, "properties": {"taskId": 125, "taskX": 59939, "taskY": 146644, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.9037201012666], [-97.6863097969549, 20.9050029985807], [-97.6849365059396, 20.9050029985807], [-97.6849365059396, 20.9037201012666], [-97.6863097969549, 20.9037201012666]]]]}, "properties": {"taskId": 124, "taskX": 59939, "taskY": 146643, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.9024371929812], [-97.6863097969549, 20.9037201012666], [-97.6849365059396, 20.9037201012666], [-97.6849365059396, 20.9024371929812], [-97.6863097969549, 20.9024371929812]]]]}, "properties": {"taskId": 123, "taskX": 59939, "taskY": 146642, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6856231514473, 20.9017957347244], [-97.6856231514473, 20.9024371929812], [-97.6849365059396, 20.9024371929812], [-97.6849365059396, 20.9017957347244], [-97.6856231514473, 20.9017957347244]]]]}, "properties": {"taskId": 122, "taskX": 119879, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.9017957347244], [-97.6863097969549, 20.9024371929812], [-97.6856231514473, 20.9024371929812], [-97.6856231514473, 20.9017957347244], [-97.6863097969549, 20.9017957347244]]]]}, "properties": {"taskId": 120, "taskX": 119878, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.9011542737251], [-97.6863097969549, 20.9017957347244], [-97.6856231514473, 20.9017957347244], [-97.6856231514473, 20.9011542737251], [-97.6863097969549, 20.9011542737251]]]]}, "properties": {"taskId": 119, "taskX": 119878, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6856231514473, 20.9005128099832], [-97.6856231514473, 20.9011542737251], [-97.6849365059396, 20.9011542737251], [-97.6849365059396, 20.9005128099832], [-97.6856231514473, 20.9005128099832]]]]}, "properties": {"taskId": 118, "taskX": 119879, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6856231514473, 20.8998713434988], [-97.6856231514473, 20.9005128099832], [-97.6849365059396, 20.9005128099832], [-97.6849365059396, 20.8998713434988], [-97.6856231514473, 20.8998713434988]]]]}, "properties": {"taskId": 117, "taskX": 119879, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.9005128099832], [-97.6863097969549, 20.9011542737251], [-97.6856231514473, 20.9011542737251], [-97.6856231514473, 20.9005128099832], [-97.6863097969549, 20.9005128099832]]]]}, "properties": {"taskId": 116, "taskX": 119878, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6856231514473, 20.899229874272], [-97.6856231514473, 20.8998713434988], [-97.6849365059396, 20.8998713434988], [-97.6849365059396, 20.899229874272], [-97.6856231514473, 20.899229874272]]]]}, "properties": {"taskId": 114, "taskX": 119879, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6856231514473, 20.8985884023029], [-97.6856231514473, 20.899229874272], [-97.6849365059396, 20.899229874272], [-97.6849365059396, 20.8985884023029], [-97.6856231514473, 20.8985884023029]]]]}, "properties": {"taskId": 113, "taskX": 119879, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.899229874272], [-97.6863097969549, 20.8998713434988], [-97.6856231514473, 20.8998713434988], [-97.6856231514473, 20.899229874272], [-97.6863097969549, 20.899229874272]]]]}, "properties": {"taskId": 112, "taskX": 119878, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.8985884023029], [-97.6863097969549, 20.899229874272], [-97.6856231514473, 20.899229874272], [-97.6856231514473, 20.8985884023029], [-97.6863097969549, 20.8985884023029]]]]}, "properties": {"taskId": 111, "taskX": 119878, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6856231514473, 20.8979469275915], [-97.6856231514473, 20.8985884023029], [-97.6849365059396, 20.8985884023029], [-97.6849365059396, 20.8979469275915], [-97.6856231514473, 20.8979469275915]]]]}, "properties": {"taskId": 110, "taskX": 119879, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6856231514473, 20.8973054501379], [-97.6856231514473, 20.8979469275915], [-97.6849365059396, 20.8979469275915], [-97.6849365059396, 20.8973054501379], [-97.6856231514473, 20.8973054501379]]]]}, "properties": {"taskId": 109, "taskX": 119879, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.8979469275915], [-97.6863097969549, 20.8985884023029], [-97.6856231514473, 20.8985884023029], [-97.6856231514473, 20.8979469275915], [-97.6863097969549, 20.8979469275915]]]]}, "properties": {"taskId": 108, "taskX": 119878, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.8973054501379], [-97.6863097969549, 20.8979469275915], [-97.6856231514473, 20.8979469275915], [-97.6856231514473, 20.8973054501379], [-97.6863097969549, 20.8973054501379]]]]}, "properties": {"taskId": 107, "taskX": 119878, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6856231514473, 20.8966639699422], [-97.6856231514473, 20.8973054501379], [-97.6849365059396, 20.8973054501379], [-97.6849365059396, 20.8966639699422], [-97.6856231514473, 20.8966639699422]]]]}, "properties": {"taskId": 106, "taskX": 119879, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6856231514473, 20.8960224870044], [-97.6856231514473, 20.8966639699422], [-97.6849365059396, 20.8966639699422], [-97.6849365059396, 20.8960224870044], [-97.6856231514473, 20.8960224870044]]]]}, "properties": {"taskId": 105, "taskX": 119879, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.8966639699422], [-97.6863097969549, 20.8973054501379], [-97.6856231514473, 20.8973054501379], [-97.6856231514473, 20.8966639699422], [-97.6863097969549, 20.8966639699422]]]]}, "properties": {"taskId": 104, "taskX": 119878, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.8960224870044], [-97.6863097969549, 20.8966639699422], [-97.6856231514473, 20.8966639699422], [-97.6856231514473, 20.8960224870044], [-97.6863097969549, 20.8960224870044]]]]}, "properties": {"taskId": 103, "taskX": 119878, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6856231514473, 20.8953810013247], [-97.6856231514473, 20.8960224870044], [-97.6849365059396, 20.8960224870044], [-97.6849365059396, 20.8953810013247], [-97.6856231514473, 20.8953810013247]]]]}, "properties": {"taskId": 102, "taskX": 119879, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6856231514473, 20.8947395129029], [-97.6856231514473, 20.8953810013247], [-97.6849365059396, 20.8953810013247], [-97.6849365059396, 20.8947395129029], [-97.6856231514473, 20.8947395129029]]]]}, "properties": {"taskId": 101, "taskX": 119879, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.8953810013247], [-97.6863097969549, 20.8960224870044], [-97.6856231514473, 20.8960224870044], [-97.6856231514473, 20.8953810013247], [-97.6863097969549, 20.8953810013247]]]]}, "properties": {"taskId": 100, "taskX": 119878, "taskY": 293273, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.8947395129029], [-97.6863097969549, 20.8953810013247], [-97.6856231514473, 20.8953810013247], [-97.6856231514473, 20.8947395129029], [-97.6863097969549, 20.8947395129029]]]]}, "properties": {"taskId": 99, "taskX": 119878, "taskY": 293272, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6856231514473, 20.8940980217394], [-97.6856231514473, 20.8947395129029], [-97.6849365059396, 20.8947395129029], [-97.6849365059396, 20.8940980217394], [-97.6856231514473, 20.8940980217394]]]]}, "properties": {"taskId": 98, "taskX": 119879, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.8940980217394], [-97.6863097969549, 20.8947395129029], [-97.6856231514473, 20.8947395129029], [-97.6856231514473, 20.8940980217394], [-97.6863097969549, 20.8940980217394]]]]}, "properties": {"taskId": 96, "taskX": 119878, "taskY": 293271, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6856231514473, 20.892815031187], [-97.6856231514473, 20.8934565278341], [-97.6849365059396, 20.8934565278341], [-97.6849365059396, 20.892815031187], [-97.6856231514473, 20.892815031187]]]]}, "properties": {"taskId": 94, "taskX": 119879, "taskY": 293269, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6856231514473, 20.8921735317983], [-97.6856231514473, 20.892815031187], [-97.6849365059396, 20.892815031187], [-97.6849365059396, 20.8921735317983], [-97.6856231514473, 20.8921735317983]]]]}, "properties": {"taskId": 93, "taskX": 119879, "taskY": 293268, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.892815031187], [-97.6863097969549, 20.8934565278341], [-97.6856231514473, 20.8934565278341], [-97.6856231514473, 20.892815031187], [-97.6863097969549, 20.892815031187]]]]}, "properties": {"taskId": 92, "taskX": 119878, "taskY": 293269, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.8921735317983], [-97.6863097969549, 20.892815031187], [-97.6856231514473, 20.892815031187], [-97.6856231514473, 20.8921735317983], [-97.6863097969549, 20.8921735317983]]]]}, "properties": {"taskId": 91, "taskX": 119878, "taskY": 293268, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6856231514473, 20.891532029668], [-97.6856231514473, 20.8921735317983], [-97.6849365059396, 20.8921735317983], [-97.6849365059396, 20.891532029668], [-97.6856231514473, 20.891532029668]]]]}, "properties": {"taskId": 90, "taskX": 119879, "taskY": 293267, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6856231514473, 20.8908905247962], [-97.6856231514473, 20.891532029668], [-97.6849365059396, 20.891532029668], [-97.6849365059396, 20.8908905247962], [-97.6856231514473, 20.8908905247962]]]]}, "properties": {"taskId": 89, "taskX": 119879, "taskY": 293266, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6863097969549, 20.891532029668], [-97.6863097969549, 20.8921735317983], [-97.6856231514473, 20.8921735317983], [-97.6856231514473, 20.891532029668], [-97.6863097969549, 20.891532029668]]]]}, "properties": {"taskId": 88, "taskX": 119878, "taskY": 293267, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6876830879703, 20.9127001520379], [-97.6876830879703, 20.9139829725378], [-97.6863097969549, 20.9139829725378], [-97.6863097969549, 20.9127001520379], [-97.6876830879703, 20.9127001520379]]]]}, "properties": {"taskId": 86, "taskX": 59938, "taskY": 146650, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6876830879703, 20.911417320563], [-97.6876830879703, 20.9127001520379], [-97.6863097969549, 20.9127001520379], [-97.6863097969549, 20.911417320563], [-97.6876830879703, 20.911417320563]]]]}, "properties": {"taskId": 85, "taskX": 59938, "taskY": 146649, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6876830879703, 20.9101344781134], [-97.6876830879703, 20.911417320563], [-97.6863097969549, 20.911417320563], [-97.6863097969549, 20.9101344781134], [-97.6876830879703, 20.9101344781134]]]]}, "properties": {"taskId": 84, "taskX": 59938, "taskY": 146648, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6876830879703, 20.9088516246899], [-97.6876830879703, 20.9101344781134], [-97.6863097969549, 20.9101344781134], [-97.6863097969549, 20.9088516246899], [-97.6876830879703, 20.9088516246899]]]]}, "properties": {"taskId": 83, "taskX": 59938, "taskY": 146647, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6876830879703, 20.9075687602929], [-97.6876830879703, 20.9088516246899], [-97.6863097969549, 20.9088516246899], [-97.6863097969549, 20.9075687602929], [-97.6876830879703, 20.9075687602929]]]]}, "properties": {"taskId": 82, "taskX": 59938, "taskY": 146646, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6876830879703, 20.906285884923], [-97.6876830879703, 20.9075687602929], [-97.6863097969549, 20.9075687602929], [-97.6863097969549, 20.906285884923], [-97.6876830879703, 20.906285884923]]]]}, "properties": {"taskId": 81, "taskX": 59938, "taskY": 146645, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6876830879703, 20.9037201012666], [-97.6876830879703, 20.9050029985807], [-97.6863097969549, 20.9050029985807], [-97.6863097969549, 20.9037201012666], [-97.6876830879703, 20.9037201012666]]]]}, "properties": {"taskId": 79, "taskX": 59938, "taskY": 146643, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6876830879703, 20.9024371929812], [-97.6876830879703, 20.9037201012666], [-97.6863097969549, 20.9037201012666], [-97.6863097969549, 20.9024371929812], [-97.6876830879703, 20.9024371929812]]]]}, "properties": {"taskId": 78, "taskX": 59938, "taskY": 146642, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6876830879703, 20.9011542737251], [-97.6876830879703, 20.9024371929812], [-97.6863097969549, 20.9024371929812], [-97.6863097969549, 20.9011542737251], [-97.6876830879703, 20.9011542737251]]]]}, "properties": {"taskId": 77, "taskX": 59938, "taskY": 146641, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6876830879703, 20.8985884023029], [-97.6876830879703, 20.8998713434988], [-97.6863097969549, 20.8998713434988], [-97.6863097969549, 20.8985884023029], [-97.6876830879703, 20.8985884023029]]]]}, "properties": {"taskId": 75, "taskX": 59938, "taskY": 146639, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6869964424626, 20.8973054501379], [-97.6869964424626, 20.8979469275915], [-97.6863097969549, 20.8979469275915], [-97.6863097969549, 20.8973054501379], [-97.6869964424626, 20.8973054501379]]]]}, "properties": {"taskId": 73, "taskX": 119877, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6876830879703, 20.8979469275915], [-97.6876830879703, 20.8985884023029], [-97.6869964424626, 20.8985884023029], [-97.6869964424626, 20.8979469275915], [-97.6876830879703, 20.8979469275915]]]]}, "properties": {"taskId": 72, "taskX": 119876, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6876830879703, 20.8973054501379], [-97.6876830879703, 20.8979469275915], [-97.6869964424626, 20.8979469275915], [-97.6869964424626, 20.8973054501379], [-97.6876830879703, 20.8973054501379]]]]}, "properties": {"taskId": 71, "taskX": 119876, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6876830879703, 20.8960224870044], [-97.6876830879703, 20.8973054501379], [-97.6863097969549, 20.8973054501379], [-97.6863097969549, 20.8960224870044], [-97.6876830879703, 20.8960224870044]]]]}, "properties": {"taskId": 70, "taskX": 59938, "taskY": 146637, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6876830879703, 20.8947395129029], [-97.6876830879703, 20.8960224870044], [-97.6863097969549, 20.8960224870044], [-97.6863097969549, 20.8947395129029], [-97.6876830879703, 20.8947395129029]]]]}, "properties": {"taskId": 69, "taskX": 59938, "taskY": 146636, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6876830879703, 20.8934565278341], [-97.6876830879703, 20.8947395129029], [-97.6863097969549, 20.8947395129029], [-97.6863097969549, 20.8934565278341], [-97.6876830879703, 20.8934565278341]]]]}, "properties": {"taskId": 68, "taskX": 59938, "taskY": 146635, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6869964424626, 20.892815031187], [-97.6869964424626, 20.8934565278341], [-97.6863097969549, 20.8934565278341], [-97.6863097969549, 20.892815031187], [-97.6869964424626, 20.892815031187]]]]}, "properties": {"taskId": 67, "taskX": 119877, "taskY": 293269, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6869964424626, 20.8921735317983], [-97.6869964424626, 20.892815031187], [-97.6863097969549, 20.892815031187], [-97.6863097969549, 20.8921735317983], [-97.6869964424626, 20.8921735317983]]]]}, "properties": {"taskId": 66, "taskX": 119877, "taskY": 293268, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6876830879703, 20.892815031187], [-97.6876830879703, 20.8934565278341], [-97.6869964424626, 20.8934565278341], [-97.6869964424626, 20.892815031187], [-97.6876830879703, 20.892815031187]]]]}, "properties": {"taskId": 65, "taskX": 119876, "taskY": 293269, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6876830879703, 20.8921735317983], [-97.6876830879703, 20.892815031187], [-97.6869964424626, 20.892815031187], [-97.6869964424626, 20.8921735317983], [-97.6876830879703, 20.8921735317983]]]]}, "properties": {"taskId": 64, "taskX": 119876, "taskY": 293268, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6869964424626, 20.8908905247962], [-97.6869964424626, 20.891532029668], [-97.6863097969549, 20.891532029668], [-97.6863097969549, 20.8908905247962], [-97.6869964424626, 20.8908905247962]]]]}, "properties": {"taskId": 62, "taskX": 119877, "taskY": 293266, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6876830879703, 20.8908905247962], [-97.6876830879703, 20.891532029668], [-97.6869964424626, 20.891532029668], [-97.6869964424626, 20.8908905247962], [-97.6876830879703, 20.8908905247962]]]]}, "properties": {"taskId": 60, "taskX": 119876, "taskY": 293266, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6876830879703, 20.8896075068283], [-97.6876830879703, 20.8908905247962], [-97.6863097969549, 20.8908905247962], [-97.6863097969549, 20.8896075068283], [-97.6876830879703, 20.8896075068283]]]]}, "properties": {"taskId": 59, "taskX": 59938, "taskY": 146632, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6890563789857, 20.911417320563], [-97.6890563789857, 20.9127001520379], [-97.6876830879703, 20.9127001520379], [-97.6876830879703, 20.911417320563], [-97.6890563789857, 20.911417320563]]]]}, "properties": {"taskId": 58, "taskX": 59937, "taskY": 146649, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6890563789857, 20.9101344781134], [-97.6890563789857, 20.911417320563], [-97.6876830879703, 20.911417320563], [-97.6876830879703, 20.9101344781134], [-97.6890563789857, 20.9101344781134]]]]}, "properties": {"taskId": 57, "taskX": 59937, "taskY": 146648, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6890563789857, 20.9088516246899], [-97.6890563789857, 20.9101344781134], [-97.6876830879703, 20.9101344781134], [-97.6876830879703, 20.9088516246899], [-97.6890563789857, 20.9088516246899]]]]}, "properties": {"taskId": 56, "taskX": 59937, "taskY": 146647, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6890563789857, 20.906285884923], [-97.6890563789857, 20.9075687602929], [-97.6876830879703, 20.9075687602929], [-97.6876830879703, 20.906285884923], [-97.6890563789857, 20.906285884923]]]]}, "properties": {"taskId": 54, "taskX": 59937, "taskY": 146645, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6890563789857, 20.9050029985807], [-97.6890563789857, 20.906285884923], [-97.6876830879703, 20.906285884923], [-97.6876830879703, 20.9050029985807], [-97.6890563789857, 20.9050029985807]]]]}, "properties": {"taskId": 53, "taskX": 59937, "taskY": 146644, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6890563789857, 20.9037201012666], [-97.6890563789857, 20.9050029985807], [-97.6876830879703, 20.9050029985807], [-97.6876830879703, 20.9037201012666], [-97.6890563789857, 20.9037201012666]]]]}, "properties": {"taskId": 52, "taskX": 59937, "taskY": 146643, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6890563789857, 20.9024371929812], [-97.6890563789857, 20.9037201012666], [-97.6876830879703, 20.9037201012666], [-97.6876830879703, 20.9024371929812], [-97.6890563789857, 20.9024371929812]]]]}, "properties": {"taskId": 51, "taskX": 59937, "taskY": 146642, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6890563789857, 20.9011542737251], [-97.6890563789857, 20.9024371929812], [-97.6876830879703, 20.9024371929812], [-97.6876830879703, 20.9011542737251], [-97.6890563789857, 20.9011542737251]]]]}, "properties": {"taskId": 50, "taskX": 59937, "taskY": 146641, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6890563789857, 20.8998713434988], [-97.6890563789857, 20.9011542737251], [-97.6876830879703, 20.9011542737251], [-97.6876830879703, 20.8998713434988], [-97.6890563789857, 20.8998713434988]]]]}, "properties": {"taskId": 49, "taskX": 59937, "taskY": 146640, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.688369733478, 20.899229874272], [-97.688369733478, 20.8998713434988], [-97.6876830879703, 20.8998713434988], [-97.6876830879703, 20.899229874272], [-97.688369733478, 20.899229874272]]]]}, "properties": {"taskId": 48, "taskX": 119875, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.688369733478, 20.8985884023029], [-97.688369733478, 20.899229874272], [-97.6876830879703, 20.899229874272], [-97.6876830879703, 20.8985884023029], [-97.688369733478, 20.8985884023029]]]]}, "properties": {"taskId": 47, "taskX": 119875, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6890563789857, 20.899229874272], [-97.6890563789857, 20.8998713434988], [-97.688369733478, 20.8998713434988], [-97.688369733478, 20.899229874272], [-97.6890563789857, 20.899229874272]]]]}, "properties": {"taskId": 46, "taskX": 119874, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6890563789857, 20.8985884023029], [-97.6890563789857, 20.899229874272], [-97.688369733478, 20.899229874272], [-97.688369733478, 20.8985884023029], [-97.6890563789857, 20.8985884023029]]]]}, "properties": {"taskId": 45, "taskX": 119874, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.688369733478, 20.8979469275915], [-97.688369733478, 20.8985884023029], [-97.6876830879703, 20.8985884023029], [-97.6876830879703, 20.8979469275915], [-97.688369733478, 20.8979469275915]]]]}, "properties": {"taskId": 44, "taskX": 119875, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.8966639699422], [-97.677383405355, 20.8973054501379], [-97.6766967598473, 20.8973054501379], [-97.6766967598473, 20.8966639699422], [-97.677383405355, 20.8966639699422]]]]}, "properties": {"taskId": 544, "taskX": 119891, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.677383405355, 20.8960224870044], [-97.677383405355, 20.8966639699422], [-97.6766967598473, 20.8966639699422], [-97.6766967598473, 20.8960224870044], [-97.677383405355, 20.8960224870044]]]]}, "properties": {"taskId": 543, "taskX": 119891, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.8966639699422], [-97.6780700508627, 20.8973054501379], [-97.677383405355, 20.8973054501379], [-97.677383405355, 20.8966639699422], [-97.6780700508627, 20.8966639699422]]]]}, "properties": {"taskId": 542, "taskX": 119890, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.8960224870044], [-97.6780700508627, 20.8966639699422], [-97.677383405355, 20.8966639699422], [-97.677383405355, 20.8960224870044], [-97.6780700508627, 20.8960224870044]]]]}, "properties": {"taskId": 541, "taskX": 119890, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.8947395129029], [-97.6780700508627, 20.8960224870044], [-97.6766967598473, 20.8960224870044], [-97.6766967598473, 20.8947395129029], [-97.6780700508627, 20.8947395129029]]]]}, "properties": {"taskId": 540, "taskX": 59945, "taskY": 146636, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.8934565278341], [-97.6780700508627, 20.8947395129029], [-97.6766967598473, 20.8947395129029], [-97.6766967598473, 20.8934565278341], [-97.6780700508627, 20.8934565278341]]]]}, "properties": {"taskId": 539, "taskX": 59945, "taskY": 146635, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6780700508627, 20.8921735317983], [-97.6780700508627, 20.8934565278341], [-97.6766967598473, 20.8934565278341], [-97.6766967598473, 20.8921735317983], [-97.6780700508627, 20.8921735317983]]]]}, "properties": {"taskId": 538, "taskX": 59945, "taskY": 146634, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9210382890822], [-97.6794433418781, 20.9216796650287], [-97.6787566963704, 20.9216796650287], [-97.6787566963704, 20.9210382890822], [-97.6794433418781, 20.9210382890822]]]]}, "properties": {"taskId": 534, "taskX": 119888, "taskY": 293313, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.920396910391], [-97.6794433418781, 20.9210382890822], [-97.6787566963704, 20.9210382890822], [-97.6787566963704, 20.920396910391], [-97.6794433418781, 20.920396910391]]]]}, "properties": {"taskId": 533, "taskX": 119888, "taskY": 293312, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.919114144775], [-97.6787566963704, 20.9197555289553], [-97.6780700508627, 20.9197555289553], [-97.6780700508627, 20.919114144775], [-97.6787566963704, 20.919114144775]]]]}, "properties": {"taskId": 531, "taskX": 119889, "taskY": 293310, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9197555289553], [-97.6794433418781, 20.920396910391], [-97.6787566963704, 20.920396910391], [-97.6787566963704, 20.9197555289553], [-97.6794433418781, 20.9197555289553]]]]}, "properties": {"taskId": 530, "taskX": 119888, "taskY": 293311, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.919114144775], [-97.6794433418781, 20.9197555289553], [-97.6787566963704, 20.9197555289553], [-97.6787566963704, 20.919114144775], [-97.6794433418781, 20.919114144775]]]]}, "properties": {"taskId": 529, "taskX": 119888, "taskY": 293310, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9184727578503], [-97.6787566963704, 20.919114144775], [-97.6780700508627, 20.919114144775], [-97.6780700508627, 20.9184727578503], [-97.6787566963704, 20.9184727578503]]]]}, "properties": {"taskId": 528, "taskX": 119889, "taskY": 293309, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9178313681812], [-97.6787566963704, 20.9184727578503], [-97.6780700508627, 20.9184727578503], [-97.6780700508627, 20.9178313681812], [-97.6787566963704, 20.9178313681812]]]]}, "properties": {"taskId": 527, "taskX": 119889, "taskY": 293308, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9184727578503], [-97.6794433418781, 20.919114144775], [-97.6787566963704, 20.919114144775], [-97.6787566963704, 20.9184727578503], [-97.6794433418781, 20.9184727578503]]]]}, "properties": {"taskId": 526, "taskX": 119888, "taskY": 293309, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9178313681812], [-97.6794433418781, 20.9184727578503], [-97.6787566963704, 20.9184727578503], [-97.6787566963704, 20.9178313681812], [-97.6794433418781, 20.9178313681812]]]]}, "properties": {"taskId": 525, "taskX": 119888, "taskY": 293308, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9171899757676], [-97.6787566963704, 20.9178313681812], [-97.6780700508627, 20.9178313681812], [-97.6780700508627, 20.9171899757676], [-97.6787566963704, 20.9171899757676]]]]}, "properties": {"taskId": 524, "taskX": 119889, "taskY": 293307, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9165485806099], [-97.6787566963704, 20.9171899757676], [-97.6780700508627, 20.9171899757676], [-97.6780700508627, 20.9165485806099], [-97.6787566963704, 20.9165485806099]]]]}, "properties": {"taskId": 523, "taskX": 119889, "taskY": 293306, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9171899757676], [-97.6794433418781, 20.9178313681812], [-97.6787566963704, 20.9178313681812], [-97.6787566963704, 20.9171899757676], [-97.6794433418781, 20.9171899757676]]]]}, "properties": {"taskId": 522, "taskX": 119888, "taskY": 293307, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9165485806099], [-97.6794433418781, 20.9171899757676], [-97.6787566963704, 20.9171899757676], [-97.6787566963704, 20.9165485806099], [-97.6794433418781, 20.9165485806099]]]]}, "properties": {"taskId": 521, "taskX": 119888, "taskY": 293306, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.915907182708], [-97.6787566963704, 20.9165485806099], [-97.6780700508627, 20.9165485806099], [-97.6780700508627, 20.915907182708], [-97.6787566963704, 20.915907182708]]]]}, "properties": {"taskId": 520, "taskX": 119889, "taskY": 293305, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9152657820619], [-97.6787566963704, 20.915907182708], [-97.6780700508627, 20.915907182708], [-97.6780700508627, 20.9152657820619], [-97.6787566963704, 20.9152657820619]]]]}, "properties": {"taskId": 519, "taskX": 119889, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.915907182708], [-97.6794433418781, 20.9165485806099], [-97.6787566963704, 20.9165485806099], [-97.6787566963704, 20.915907182708], [-97.6794433418781, 20.915907182708]]]]}, "properties": {"taskId": 518, "taskX": 119888, "taskY": 293305, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9152657820619], [-97.6794433418781, 20.915907182708], [-97.6787566963704, 20.915907182708], [-97.6787566963704, 20.9152657820619], [-97.6794433418781, 20.9152657820619]]]]}, "properties": {"taskId": 517, "taskX": 119888, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9139829725378], [-97.6787566963704, 20.9146243786719], [-97.6780700508627, 20.9146243786719], [-97.6780700508627, 20.9139829725378], [-97.6787566963704, 20.9139829725378]]]]}, "properties": {"taskId": 515, "taskX": 119889, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9146243786719], [-97.6794433418781, 20.9152657820619], [-97.6787566963704, 20.9152657820619], [-97.6787566963704, 20.9146243786719], [-97.6794433418781, 20.9146243786719]]]]}, "properties": {"taskId": 514, "taskX": 119888, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9133415636598], [-97.6787566963704, 20.9139829725378], [-97.6780700508627, 20.9139829725378], [-97.6780700508627, 20.9133415636598], [-97.6787566963704, 20.9133415636598]]]]}, "properties": {"taskId": 512, "taskX": 119889, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9133415636598], [-97.6794433418781, 20.9139829725378], [-97.6787566963704, 20.9139829725378], [-97.6787566963704, 20.9133415636598], [-97.6794433418781, 20.9133415636598]]]]}, "properties": {"taskId": 510, "taskX": 119888, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9127001520379], [-97.6794433418781, 20.9133415636598], [-97.6787566963704, 20.9133415636598], [-97.6787566963704, 20.9127001520379], [-97.6794433418781, 20.9127001520379]]]]}, "properties": {"taskId": 509, "taskX": 119888, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9120587376723], [-97.6787566963704, 20.9127001520379], [-97.6780700508627, 20.9127001520379], [-97.6780700508627, 20.9120587376723], [-97.6787566963704, 20.9120587376723]]]]}, "properties": {"taskId": 508, "taskX": 119889, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.911417320563], [-97.6787566963704, 20.9120587376723], [-97.6780700508627, 20.9120587376723], [-97.6780700508627, 20.911417320563], [-97.6787566963704, 20.911417320563]]]]}, "properties": {"taskId": 507, "taskX": 119889, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9120587376723], [-97.6794433418781, 20.9127001520379], [-97.6787566963704, 20.9127001520379], [-97.6787566963704, 20.9120587376723], [-97.6794433418781, 20.9120587376723]]]]}, "properties": {"taskId": 506, "taskX": 119888, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.911417320563], [-97.6794433418781, 20.9120587376723], [-97.6787566963704, 20.9120587376723], [-97.6787566963704, 20.911417320563], [-97.6794433418781, 20.911417320563]]]]}, "properties": {"taskId": 505, "taskX": 119888, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.91077590071], [-97.6787566963704, 20.911417320563], [-97.6780700508627, 20.911417320563], [-97.6780700508627, 20.91077590071], [-97.6787566963704, 20.91077590071]]]]}, "properties": {"taskId": 504, "taskX": 119889, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9101344781134], [-97.6787566963704, 20.91077590071], [-97.6780700508627, 20.91077590071], [-97.6780700508627, 20.9101344781134], [-97.6787566963704, 20.9101344781134]]]]}, "properties": {"taskId": 503, "taskX": 119889, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.91077590071], [-97.6794433418781, 20.911417320563], [-97.6787566963704, 20.911417320563], [-97.6787566963704, 20.91077590071], [-97.6794433418781, 20.91077590071]]]]}, "properties": {"taskId": 502, "taskX": 119888, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9101344781134], [-97.6794433418781, 20.91077590071], [-97.6787566963704, 20.91077590071], [-97.6787566963704, 20.9101344781134], [-97.6794433418781, 20.9101344781134]]]]}, "properties": {"taskId": 501, "taskX": 119888, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9094930527734], [-97.6787566963704, 20.9101344781134], [-97.6780700508627, 20.9101344781134], [-97.6780700508627, 20.9094930527734], [-97.6787566963704, 20.9094930527734]]]]}, "properties": {"taskId": 500, "taskX": 119889, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9088516246899], [-97.6787566963704, 20.9094930527734], [-97.6780700508627, 20.9094930527734], [-97.6780700508627, 20.9088516246899], [-97.6787566963704, 20.9088516246899]]]]}, "properties": {"taskId": 499, "taskX": 119889, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9094930527734], [-97.6794433418781, 20.9101344781134], [-97.6787566963704, 20.9101344781134], [-97.6787566963704, 20.9094930527734], [-97.6794433418781, 20.9094930527734]]]]}, "properties": {"taskId": 498, "taskX": 119888, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9088516246899], [-97.6794433418781, 20.9094930527734], [-97.6787566963704, 20.9094930527734], [-97.6787566963704, 20.9088516246899], [-97.6794433418781, 20.9088516246899]]]]}, "properties": {"taskId": 497, "taskX": 119888, "taskY": 293294, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9082101938631], [-97.6787566963704, 20.9088516246899], [-97.6780700508627, 20.9088516246899], [-97.6780700508627, 20.9082101938631], [-97.6787566963704, 20.9082101938631]]]]}, "properties": {"taskId": 496, "taskX": 119889, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9082101938631], [-97.6794433418781, 20.9088516246899], [-97.6787566963704, 20.9088516246899], [-97.6787566963704, 20.9082101938631], [-97.6794433418781, 20.9082101938631]]]]}, "properties": {"taskId": 494, "taskX": 119888, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9075687602929], [-97.6794433418781, 20.9082101938631], [-97.6787566963704, 20.9082101938631], [-97.6787566963704, 20.9075687602929], [-97.6794433418781, 20.9075687602929]]]]}, "properties": {"taskId": 493, "taskX": 119888, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9069273239795], [-97.6787566963704, 20.9075687602929], [-97.6780700508627, 20.9075687602929], [-97.6780700508627, 20.9069273239795], [-97.6787566963704, 20.9069273239795]]]]}, "properties": {"taskId": 492, "taskX": 119889, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.906285884923], [-97.6787566963704, 20.9069273239795], [-97.6780700508627, 20.9069273239795], [-97.6780700508627, 20.906285884923], [-97.6787566963704, 20.906285884923]]]]}, "properties": {"taskId": 491, "taskX": 119889, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.906285884923], [-97.6794433418781, 20.9069273239795], [-97.6787566963704, 20.9069273239795], [-97.6787566963704, 20.906285884923], [-97.6794433418781, 20.906285884923]]]]}, "properties": {"taskId": 489, "taskX": 119888, "taskY": 293290, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9056444431233], [-97.6787566963704, 20.906285884923], [-97.6780700508627, 20.906285884923], [-97.6780700508627, 20.9056444431233], [-97.6787566963704, 20.9056444431233]]]]}, "properties": {"taskId": 488, "taskX": 119889, "taskY": 293289, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9050029985807], [-97.6787566963704, 20.9056444431233], [-97.6780700508627, 20.9056444431233], [-97.6780700508627, 20.9050029985807], [-97.6787566963704, 20.9050029985807]]]]}, "properties": {"taskId": 487, "taskX": 119889, "taskY": 293288, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9056444431233], [-97.6794433418781, 20.906285884923], [-97.6787566963704, 20.906285884923], [-97.6787566963704, 20.9056444431233], [-97.6794433418781, 20.9056444431233]]]]}, "properties": {"taskId": 486, "taskX": 119888, "taskY": 293289, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9050029985807], [-97.6794433418781, 20.9056444431233], [-97.6787566963704, 20.9056444431233], [-97.6787566963704, 20.9050029985807], [-97.6794433418781, 20.9050029985807]]]]}, "properties": {"taskId": 485, "taskX": 119888, "taskY": 293288, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9043615512951], [-97.6787566963704, 20.9050029985807], [-97.6780700508627, 20.9050029985807], [-97.6780700508627, 20.9043615512951], [-97.6787566963704, 20.9043615512951]]]]}, "properties": {"taskId": 484, "taskX": 119889, "taskY": 293287, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9037201012666], [-97.6787566963704, 20.9043615512951], [-97.6780700508627, 20.9043615512951], [-97.6780700508627, 20.9037201012666], [-97.6787566963704, 20.9037201012666]]]]}, "properties": {"taskId": 483, "taskX": 119889, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9043615512951], [-97.6794433418781, 20.9050029985807], [-97.6787566963704, 20.9050029985807], [-97.6787566963704, 20.9043615512951], [-97.6794433418781, 20.9043615512951]]]]}, "properties": {"taskId": 482, "taskX": 119888, "taskY": 293287, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9037201012666], [-97.6794433418781, 20.9043615512951], [-97.6787566963704, 20.9043615512951], [-97.6787566963704, 20.9037201012666], [-97.6794433418781, 20.9037201012666]]]]}, "properties": {"taskId": 481, "taskX": 119888, "taskY": 293286, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9030786484952], [-97.6787566963704, 20.9037201012666], [-97.6780700508627, 20.9037201012666], [-97.6780700508627, 20.9030786484952], [-97.6787566963704, 20.9030786484952]]]]}, "properties": {"taskId": 480, "taskX": 119889, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9024371929812], [-97.6787566963704, 20.9030786484952], [-97.6780700508627, 20.9030786484952], [-97.6780700508627, 20.9024371929812], [-97.6787566963704, 20.9024371929812]]]]}, "properties": {"taskId": 479, "taskX": 119889, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9030786484952], [-97.6794433418781, 20.9037201012666], [-97.6787566963704, 20.9037201012666], [-97.6787566963704, 20.9030786484952], [-97.6794433418781, 20.9030786484952]]]]}, "properties": {"taskId": 478, "taskX": 119888, "taskY": 293285, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9024371929812], [-97.6794433418781, 20.9030786484952], [-97.6787566963704, 20.9030786484952], [-97.6787566963704, 20.9024371929812], [-97.6794433418781, 20.9024371929812]]]]}, "properties": {"taskId": 477, "taskX": 119888, "taskY": 293284, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9017957347244], [-97.6787566963704, 20.9024371929812], [-97.6780700508627, 20.9024371929812], [-97.6780700508627, 20.9017957347244], [-97.6787566963704, 20.9017957347244]]]]}, "properties": {"taskId": 476, "taskX": 119889, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9011542737251], [-97.6787566963704, 20.9017957347244], [-97.6780700508627, 20.9017957347244], [-97.6780700508627, 20.9011542737251], [-97.6787566963704, 20.9011542737251]]]]}, "properties": {"taskId": 475, "taskX": 119889, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9017957347244], [-97.6794433418781, 20.9024371929812], [-97.6787566963704, 20.9024371929812], [-97.6787566963704, 20.9017957347244], [-97.6794433418781, 20.9017957347244]]]]}, "properties": {"taskId": 474, "taskX": 119888, "taskY": 293283, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9011542737251], [-97.6794433418781, 20.9017957347244], [-97.6787566963704, 20.9017957347244], [-97.6787566963704, 20.9011542737251], [-97.6794433418781, 20.9011542737251]]]]}, "properties": {"taskId": 473, "taskX": 119888, "taskY": 293282, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.9005128099832], [-97.6787566963704, 20.9011542737251], [-97.6780700508627, 20.9011542737251], [-97.6780700508627, 20.9005128099832], [-97.6787566963704, 20.9005128099832]]]]}, "properties": {"taskId": 472, "taskX": 119889, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.8998713434988], [-97.6787566963704, 20.9005128099832], [-97.6780700508627, 20.9005128099832], [-97.6780700508627, 20.8998713434988], [-97.6787566963704, 20.8998713434988]]]]}, "properties": {"taskId": 471, "taskX": 119889, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.9005128099832], [-97.6794433418781, 20.9011542737251], [-97.6787566963704, 20.9011542737251], [-97.6787566963704, 20.9005128099832], [-97.6794433418781, 20.9005128099832]]]]}, "properties": {"taskId": 470, "taskX": 119888, "taskY": 293281, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.8998713434988], [-97.6794433418781, 20.9005128099832], [-97.6787566963704, 20.9005128099832], [-97.6787566963704, 20.8998713434988], [-97.6794433418781, 20.8998713434988]]]]}, "properties": {"taskId": 469, "taskX": 119888, "taskY": 293280, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.899229874272], [-97.6787566963704, 20.8998713434988], [-97.6780700508627, 20.8998713434988], [-97.6780700508627, 20.899229874272], [-97.6787566963704, 20.899229874272]]]]}, "properties": {"taskId": 468, "taskX": 119889, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.8985884023029], [-97.6787566963704, 20.899229874272], [-97.6780700508627, 20.899229874272], [-97.6780700508627, 20.8985884023029], [-97.6787566963704, 20.8985884023029]]]]}, "properties": {"taskId": 467, "taskX": 119889, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.899229874272], [-97.6794433418781, 20.8998713434988], [-97.6787566963704, 20.8998713434988], [-97.6787566963704, 20.899229874272], [-97.6794433418781, 20.899229874272]]]]}, "properties": {"taskId": 466, "taskX": 119888, "taskY": 293279, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.8985884023029], [-97.6794433418781, 20.899229874272], [-97.6787566963704, 20.899229874272], [-97.6787566963704, 20.8985884023029], [-97.6794433418781, 20.8985884023029]]]]}, "properties": {"taskId": 465, "taskX": 119888, "taskY": 293278, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.8979469275915], [-97.6787566963704, 20.8985884023029], [-97.6780700508627, 20.8985884023029], [-97.6780700508627, 20.8979469275915], [-97.6787566963704, 20.8979469275915]]]]}, "properties": {"taskId": 464, "taskX": 119889, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.8973054501379], [-97.6787566963704, 20.8979469275915], [-97.6780700508627, 20.8979469275915], [-97.6780700508627, 20.8973054501379], [-97.6787566963704, 20.8973054501379]]]]}, "properties": {"taskId": 463, "taskX": 119889, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.8979469275915], [-97.6794433418781, 20.8985884023029], [-97.6787566963704, 20.8985884023029], [-97.6787566963704, 20.8979469275915], [-97.6794433418781, 20.8979469275915]]]]}, "properties": {"taskId": 462, "taskX": 119888, "taskY": 293277, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.8973054501379], [-97.6794433418781, 20.8979469275915], [-97.6787566963704, 20.8979469275915], [-97.6787566963704, 20.8973054501379], [-97.6794433418781, 20.8973054501379]]]]}, "properties": {"taskId": 461, "taskX": 119888, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.8966639699422], [-97.6787566963704, 20.8973054501379], [-97.6780700508627, 20.8973054501379], [-97.6780700508627, 20.8966639699422], [-97.6787566963704, 20.8966639699422]]]]}, "properties": {"taskId": 460, "taskX": 119889, "taskY": 293275, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6787566963704, 20.8960224870044], [-97.6787566963704, 20.8966639699422], [-97.6780700508627, 20.8966639699422], [-97.6780700508627, 20.8960224870044], [-97.6787566963704, 20.8960224870044]]]]}, "properties": {"taskId": 459, "taskX": 119889, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.8960224870044], [-97.6794433418781, 20.8966639699422], [-97.6787566963704, 20.8966639699422], [-97.6787566963704, 20.8960224870044], [-97.6794433418781, 20.8960224870044]]]]}, "properties": {"taskId": 457, "taskX": 119888, "taskY": 293274, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.8947395129029], [-97.6794433418781, 20.8960224870044], [-97.6780700508627, 20.8960224870044], [-97.6780700508627, 20.8947395129029], [-97.6794433418781, 20.8947395129029]]]]}, "properties": {"taskId": 456, "taskX": 59944, "taskY": 146636, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.8934565278341], [-97.6794433418781, 20.8947395129029], [-97.6780700508627, 20.8947395129029], [-97.6780700508627, 20.8934565278341], [-97.6794433418781, 20.8934565278341]]]]}, "properties": {"taskId": 455, "taskX": 59944, "taskY": 146635, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6794433418781, 20.8921735317983], [-97.6794433418781, 20.8934565278341], [-97.6780700508627, 20.8934565278341], [-97.6780700508627, 20.8921735317983], [-97.6794433418781, 20.8921735317983]]]]}, "properties": {"taskId": 454, "taskX": 59944, "taskY": 146634, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.920396910391], [-97.6801299873857, 20.9210382890822], [-97.6794433418781, 20.9210382890822], [-97.6794433418781, 20.920396910391], [-97.6801299873857, 20.920396910391]]]]}, "properties": {"taskId": 451, "taskX": 119887, "taskY": 293312, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9210382890822], [-97.6808166328934, 20.9216796650287], [-97.6801299873857, 20.9216796650287], [-97.6801299873857, 20.9210382890822], [-97.6808166328934, 20.9210382890822]]]]}, "properties": {"taskId": 450, "taskX": 119886, "taskY": 293313, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.920396910391], [-97.6808166328934, 20.9210382890822], [-97.6801299873857, 20.9210382890822], [-97.6801299873857, 20.920396910391], [-97.6808166328934, 20.920396910391]]]]}, "properties": {"taskId": 449, "taskX": 119886, "taskY": 293312, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9197555289553], [-97.6801299873857, 20.920396910391], [-97.6794433418781, 20.920396910391], [-97.6794433418781, 20.9197555289553], [-97.6801299873857, 20.9197555289553]]]]}, "properties": {"taskId": 448, "taskX": 119887, "taskY": 293311, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.919114144775], [-97.6801299873857, 20.9197555289553], [-97.6794433418781, 20.9197555289553], [-97.6794433418781, 20.919114144775], [-97.6801299873857, 20.919114144775]]]]}, "properties": {"taskId": 447, "taskX": 119887, "taskY": 293310, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.919114144775], [-97.6808166328934, 20.9197555289553], [-97.6801299873857, 20.9197555289553], [-97.6801299873857, 20.919114144775], [-97.6808166328934, 20.919114144775]]]]}, "properties": {"taskId": 445, "taskX": 119886, "taskY": 293310, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9178313681812], [-97.6801299873857, 20.9184727578503], [-97.6794433418781, 20.9184727578503], [-97.6794433418781, 20.9178313681812], [-97.6801299873857, 20.9178313681812]]]]}, "properties": {"taskId": 443, "taskX": 119887, "taskY": 293308, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9184727578503], [-97.6808166328934, 20.919114144775], [-97.6801299873857, 20.919114144775], [-97.6801299873857, 20.9184727578503], [-97.6808166328934, 20.9184727578503]]]]}, "properties": {"taskId": 442, "taskX": 119886, "taskY": 293309, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9178313681812], [-97.6808166328934, 20.9184727578503], [-97.6801299873857, 20.9184727578503], [-97.6801299873857, 20.9178313681812], [-97.6808166328934, 20.9178313681812]]]]}, "properties": {"taskId": 441, "taskX": 119886, "taskY": 293308, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9171899757676], [-97.6801299873857, 20.9178313681812], [-97.6794433418781, 20.9178313681812], [-97.6794433418781, 20.9171899757676], [-97.6801299873857, 20.9171899757676]]]]}, "properties": {"taskId": 440, "taskX": 119887, "taskY": 293307, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9165485806099], [-97.6801299873857, 20.9171899757676], [-97.6794433418781, 20.9171899757676], [-97.6794433418781, 20.9165485806099], [-97.6801299873857, 20.9165485806099]]]]}, "properties": {"taskId": 439, "taskX": 119887, "taskY": 293306, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9171899757676], [-97.6808166328934, 20.9178313681812], [-97.6801299873857, 20.9178313681812], [-97.6801299873857, 20.9171899757676], [-97.6808166328934, 20.9171899757676]]]]}, "properties": {"taskId": 438, "taskX": 119886, "taskY": 293307, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9165485806099], [-97.6808166328934, 20.9171899757676], [-97.6801299873857, 20.9171899757676], [-97.6801299873857, 20.9165485806099], [-97.6808166328934, 20.9165485806099]]]]}, "properties": {"taskId": 437, "taskX": 119886, "taskY": 293306, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.915907182708], [-97.6801299873857, 20.9165485806099], [-97.6794433418781, 20.9165485806099], [-97.6794433418781, 20.915907182708], [-97.6801299873857, 20.915907182708]]]]}, "properties": {"taskId": 436, "taskX": 119887, "taskY": 293305, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9152657820619], [-97.6801299873857, 20.915907182708], [-97.6794433418781, 20.915907182708], [-97.6794433418781, 20.9152657820619], [-97.6801299873857, 20.9152657820619]]]]}, "properties": {"taskId": 435, "taskX": 119887, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.915907182708], [-97.6808166328934, 20.9165485806099], [-97.6801299873857, 20.9165485806099], [-97.6801299873857, 20.915907182708], [-97.6808166328934, 20.915907182708]]]]}, "properties": {"taskId": 434, "taskX": 119886, "taskY": 293305, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9152657820619], [-97.6808166328934, 20.915907182708], [-97.6801299873857, 20.915907182708], [-97.6801299873857, 20.9152657820619], [-97.6808166328934, 20.9152657820619]]]]}, "properties": {"taskId": 433, "taskX": 119886, "taskY": 293304, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9146243786719], [-97.6801299873857, 20.9152657820619], [-97.6794433418781, 20.9152657820619], [-97.6794433418781, 20.9146243786719], [-97.6801299873857, 20.9146243786719]]]]}, "properties": {"taskId": 432, "taskX": 119887, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9139829725378], [-97.6801299873857, 20.9146243786719], [-97.6794433418781, 20.9146243786719], [-97.6794433418781, 20.9139829725378], [-97.6801299873857, 20.9139829725378]]]]}, "properties": {"taskId": 431, "taskX": 119887, "taskY": 293302, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9146243786719], [-97.6808166328934, 20.9152657820619], [-97.6801299873857, 20.9152657820619], [-97.6801299873857, 20.9146243786719], [-97.6808166328934, 20.9146243786719]]]]}, "properties": {"taskId": 430, "taskX": 119886, "taskY": 293303, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9133415636598], [-97.6801299873857, 20.9139829725378], [-97.6794433418781, 20.9139829725378], [-97.6794433418781, 20.9133415636598], [-97.6801299873857, 20.9133415636598]]]]}, "properties": {"taskId": 428, "taskX": 119887, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9127001520379], [-97.6801299873857, 20.9133415636598], [-97.6794433418781, 20.9133415636598], [-97.6794433418781, 20.9127001520379], [-97.6801299873857, 20.9127001520379]]]]}, "properties": {"taskId": 427, "taskX": 119887, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9133415636598], [-97.6808166328934, 20.9139829725378], [-97.6801299873857, 20.9139829725378], [-97.6801299873857, 20.9133415636598], [-97.6808166328934, 20.9133415636598]]]]}, "properties": {"taskId": 426, "taskX": 119886, "taskY": 293301, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9127001520379], [-97.6808166328934, 20.9133415636598], [-97.6801299873857, 20.9133415636598], [-97.6801299873857, 20.9127001520379], [-97.6808166328934, 20.9127001520379]]]]}, "properties": {"taskId": 425, "taskX": 119886, "taskY": 293300, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9120587376723], [-97.6801299873857, 20.9127001520379], [-97.6794433418781, 20.9127001520379], [-97.6794433418781, 20.9120587376723], [-97.6801299873857, 20.9120587376723]]]]}, "properties": {"taskId": 424, "taskX": 119887, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.911417320563], [-97.6801299873857, 20.9120587376723], [-97.6794433418781, 20.9120587376723], [-97.6794433418781, 20.911417320563], [-97.6801299873857, 20.911417320563]]]]}, "properties": {"taskId": 423, "taskX": 119887, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9120587376723], [-97.6808166328934, 20.9127001520379], [-97.6801299873857, 20.9127001520379], [-97.6801299873857, 20.9120587376723], [-97.6808166328934, 20.9120587376723]]]]}, "properties": {"taskId": 422, "taskX": 119886, "taskY": 293299, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.911417320563], [-97.6808166328934, 20.9120587376723], [-97.6801299873857, 20.9120587376723], [-97.6801299873857, 20.911417320563], [-97.6808166328934, 20.911417320563]]]]}, "properties": {"taskId": 421, "taskX": 119886, "taskY": 293298, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.91077590071], [-97.6801299873857, 20.911417320563], [-97.6794433418781, 20.911417320563], [-97.6794433418781, 20.91077590071], [-97.6801299873857, 20.91077590071]]]]}, "properties": {"taskId": 420, "taskX": 119887, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9101344781134], [-97.6801299873857, 20.91077590071], [-97.6794433418781, 20.91077590071], [-97.6794433418781, 20.9101344781134], [-97.6801299873857, 20.9101344781134]]]]}, "properties": {"taskId": 419, "taskX": 119887, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.91077590071], [-97.6808166328934, 20.911417320563], [-97.6801299873857, 20.911417320563], [-97.6801299873857, 20.91077590071], [-97.6808166328934, 20.91077590071]]]]}, "properties": {"taskId": 418, "taskX": 119886, "taskY": 293297, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9101344781134], [-97.6808166328934, 20.91077590071], [-97.6801299873857, 20.91077590071], [-97.6801299873857, 20.9101344781134], [-97.6808166328934, 20.9101344781134]]]]}, "properties": {"taskId": 417, "taskX": 119886, "taskY": 293296, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9094930527734], [-97.6808166328934, 20.9101344781134], [-97.6801299873857, 20.9101344781134], [-97.6801299873857, 20.9094930527734], [-97.6808166328934, 20.9094930527734]]]]}, "properties": {"taskId": 414, "taskX": 119886, "taskY": 293295, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9082101938631], [-97.6801299873857, 20.9088516246899], [-97.6794433418781, 20.9088516246899], [-97.6794433418781, 20.9082101938631], [-97.6801299873857, 20.9082101938631]]]]}, "properties": {"taskId": 412, "taskX": 119887, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9075687602929], [-97.6801299873857, 20.9082101938631], [-97.6794433418781, 20.9082101938631], [-97.6794433418781, 20.9075687602929], [-97.6801299873857, 20.9075687602929]]]]}, "properties": {"taskId": 411, "taskX": 119887, "taskY": 293292, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6808166328934, 20.9082101938631], [-97.6808166328934, 20.9088516246899], [-97.6801299873857, 20.9088516246899], [-97.6801299873857, 20.9082101938631], [-97.6808166328934, 20.9082101938631]]]]}, "properties": {"taskId": 410, "taskX": 119886, "taskY": 293293, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6801299873857, 20.9069273239795], [-97.6801299873857, 20.9075687602929], [-97.6794433418781, 20.9075687602929], [-97.6794433418781, 20.9069273239795], [-97.6801299873857, 20.9069273239795]]]]}, "properties": {"taskId": 408, "taskX": 119887, "taskY": 293291, "taskZoom": 19, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6890563789857, 20.8973054501379], [-97.6890563789857, 20.8979469275915], [-97.688369733478, 20.8979469275915], [-97.688369733478, 20.8973054501379], [-97.6890563789857, 20.8973054501379]]]]}, "properties": {"taskId": 41, "taskX": 119874, "taskY": 293276, "taskZoom": 19, "taskSplittable": true, "taskStatus": "MAPPED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6890563789857, 20.8960224870044], [-97.6890563789857, 20.8973054501379], [-97.6876830879703, 20.8973054501379], [-97.6876830879703, 20.8960224870044], [-97.6890563789857, 20.8960224870044]]]]}, "properties": {"taskId": 40, "taskX": 59937, "taskY": 146637, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6890563789857, 20.8947395129029], [-97.6890563789857, 20.8960224870044], [-97.6876830879703, 20.8960224870044], [-97.6876830879703, 20.8947395129029], [-97.6890563789857, 20.8947395129029]]]]}, "properties": {"taskId": 39, "taskX": 59937, "taskY": 146636, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6890563789857, 20.8934565278341], [-97.6890563789857, 20.8947395129029], [-97.6876830879703, 20.8947395129029], [-97.6876830879703, 20.8934565278341], [-97.6890563789857, 20.8934565278341]]]]}, "properties": {"taskId": 38, "taskX": 59937, "taskY": 146635, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6890563789857, 20.8908905247962], [-97.6890563789857, 20.8921735317983], [-97.6876830879703, 20.8921735317983], [-97.6876830879703, 20.8908905247962], [-97.6890563789857, 20.8908905247962]]]]}, "properties": {"taskId": 36, "taskX": 59937, "taskY": 146633, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6890563789857, 20.8896075068283], [-97.6890563789857, 20.8908905247962], [-97.6876830879703, 20.8908905247962], [-97.6876830879703, 20.8896075068283], [-97.6890563789857, 20.8896075068283]]]]}, "properties": {"taskId": 35, "taskX": 59937, "taskY": 146632, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6904296700011, 20.9101344781134], [-97.6904296700011, 20.911417320563], [-97.6890563789857, 20.911417320563], [-97.6890563789857, 20.9101344781134], [-97.6904296700011, 20.9101344781134]]]]}, "properties": {"taskId": 34, "taskX": 59936, "taskY": 146648, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6904296700011, 20.9088516246899], [-97.6904296700011, 20.9101344781134], [-97.6890563789857, 20.9101344781134], [-97.6890563789857, 20.9088516246899], [-97.6904296700011, 20.9088516246899]]]]}, "properties": {"taskId": 33, "taskX": 59936, "taskY": 146647, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6904296700011, 20.9075687602929], [-97.6904296700011, 20.9088516246899], [-97.6890563789857, 20.9088516246899], [-97.6890563789857, 20.9075687602929], [-97.6904296700011, 20.9075687602929]]]]}, "properties": {"taskId": 32, "taskX": 59936, "taskY": 146646, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6904296700011, 20.906285884923], [-97.6904296700011, 20.9075687602929], [-97.6890563789857, 20.9075687602929], [-97.6890563789857, 20.906285884923], [-97.6904296700011, 20.906285884923]]]]}, "properties": {"taskId": 31, "taskX": 59936, "taskY": 146645, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6904296700011, 20.9050029985807], [-97.6904296700011, 20.906285884923], [-97.6890563789857, 20.906285884923], [-97.6890563789857, 20.9050029985807], [-97.6904296700011, 20.9050029985807]]]]}, "properties": {"taskId": 30, "taskX": 59936, "taskY": 146644, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6904296700011, 20.9037201012666], [-97.6904296700011, 20.9050029985807], [-97.6890563789857, 20.9050029985807], [-97.6890563789857, 20.9037201012666], [-97.6904296700011, 20.9037201012666]]]]}, "properties": {"taskId": 29, "taskX": 59936, "taskY": 146643, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6904296700011, 20.9024371929812], [-97.6904296700011, 20.9037201012666], [-97.6890563789857, 20.9037201012666], [-97.6890563789857, 20.9024371929812], [-97.6904296700011, 20.9024371929812]]]]}, "properties": {"taskId": 28, "taskX": 59936, "taskY": 146642, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6904296700011, 20.9011542737251], [-97.6904296700011, 20.9024371929812], [-97.6890563789857, 20.9024371929812], [-97.6890563789857, 20.9011542737251], [-97.6904296700011, 20.9011542737251]]]]}, "properties": {"taskId": 27, "taskX": 59936, "taskY": 146641, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6904296700011, 20.8998713434988], [-97.6904296700011, 20.9011542737251], [-97.6890563789857, 20.9011542737251], [-97.6890563789857, 20.8998713434988], [-97.6904296700011, 20.8998713434988]]]]}, "properties": {"taskId": 26, "taskX": 59936, "taskY": 146640, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6904296700011, 20.8985884023029], [-97.6904296700011, 20.8998713434988], [-97.6890563789857, 20.8998713434988], [-97.6890563789857, 20.8985884023029], [-97.6904296700011, 20.8985884023029]]]]}, "properties": {"taskId": 25, "taskX": 59936, "taskY": 146639, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6904296700011, 20.8973054501379], [-97.6904296700011, 20.8985884023029], [-97.6890563789857, 20.8985884023029], [-97.6890563789857, 20.8973054501379], [-97.6904296700011, 20.8973054501379]]]]}, "properties": {"taskId": 24, "taskX": 59936, "taskY": 146638, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6904296700011, 20.8960224870044], [-97.6904296700011, 20.8973054501379], [-97.6890563789857, 20.8973054501379], [-97.6890563789857, 20.8960224870044], [-97.6904296700011, 20.8960224870044]]]]}, "properties": {"taskId": 23, "taskX": 59936, "taskY": 146637, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6904296700011, 20.8947395129029], [-97.6904296700011, 20.8960224870044], [-97.6890563789857, 20.8960224870044], [-97.6890563789857, 20.8947395129029], [-97.6904296700011, 20.8947395129029]]]]}, "properties": {"taskId": 22, "taskX": 59936, "taskY": 146636, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6904296700011, 20.8934565278341], [-97.6904296700011, 20.8947395129029], [-97.6890563789857, 20.8947395129029], [-97.6890563789857, 20.8934565278341], [-97.6904296700011, 20.8934565278341]]]]}, "properties": {"taskId": 21, "taskX": 59936, "taskY": 146635, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6904296700011, 20.8921735317983], [-97.6904296700011, 20.8934565278341], [-97.6890563789857, 20.8934565278341], [-97.6890563789857, 20.8921735317983], [-97.6904296700011, 20.8921735317983]]]]}, "properties": {"taskId": 20, "taskX": 59936, "taskY": 146634, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6904296700011, 20.8908905247962], [-97.6904296700011, 20.8921735317983], [-97.6890563789857, 20.8921735317983], [-97.6890563789857, 20.8908905247962], [-97.6904296700011, 20.8908905247962]]]]}, "properties": {"taskId": 19, "taskX": 59936, "taskY": 146633, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6918029610165, 20.9011542737251], [-97.6918029610165, 20.9024371929812], [-97.6904296700011, 20.9024371929812], [-97.6904296700011, 20.9011542737251], [-97.6918029610165, 20.9011542737251]]]]}, "properties": {"taskId": 18, "taskX": 59935, "taskY": 146641, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6918029610165, 20.8998713434988], [-97.6918029610165, 20.9011542737251], [-97.6904296700011, 20.9011542737251], [-97.6904296700011, 20.8998713434988], [-97.6918029610165, 20.8998713434988]]]]}, "properties": {"taskId": 17, "taskX": 59935, "taskY": 146640, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6918029610165, 20.8985884023029], [-97.6918029610165, 20.8998713434988], [-97.6904296700011, 20.8998713434988], [-97.6904296700011, 20.8985884023029], [-97.6918029610165, 20.8985884023029]]]]}, "properties": {"taskId": 16, "taskX": 59935, "taskY": 146639, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6918029610165, 20.8973054501379], [-97.6918029610165, 20.8985884023029], [-97.6904296700011, 20.8985884023029], [-97.6904296700011, 20.8973054501379], [-97.6918029610165, 20.8973054501379]]]]}, "properties": {"taskId": 15, "taskX": 59935, "taskY": 146638, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6918029610165, 20.8960224870044], [-97.6918029610165, 20.8973054501379], [-97.6904296700011, 20.8973054501379], [-97.6904296700011, 20.8960224870044], [-97.6918029610165, 20.8960224870044]]]]}, "properties": {"taskId": 14, "taskX": 59935, "taskY": 146637, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6918029610165, 20.8947395129029], [-97.6918029610165, 20.8960224870044], [-97.6904296700011, 20.8960224870044], [-97.6904296700011, 20.8947395129029], [-97.6918029610165, 20.8947395129029]]]]}, "properties": {"taskId": 13, "taskX": 59935, "taskY": 146636, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6918029610165, 20.8934565278341], [-97.6918029610165, 20.8947395129029], [-97.6904296700011, 20.8947395129029], [-97.6904296700011, 20.8934565278341], [-97.6918029610165, 20.8934565278341]]]]}, "properties": {"taskId": 12, "taskX": 59935, "taskY": 146635, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6931762520318, 20.9011542737251], [-97.6931762520318, 20.9024371929812], [-97.6918029610165, 20.9024371929812], [-97.6918029610165, 20.9011542737251], [-97.6931762520318, 20.9011542737251]]]]}, "properties": {"taskId": 11, "taskX": 59934, "taskY": 146641, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6931762520318, 20.8998713434988], [-97.6931762520318, 20.9011542737251], [-97.6918029610165, 20.9011542737251], [-97.6918029610165, 20.8998713434988], [-97.6931762520318, 20.8998713434988]]]]}, "properties": {"taskId": 10, "taskX": 59934, "taskY": 146640, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6931762520318, 20.8985884023029], [-97.6931762520318, 20.8998713434988], [-97.6918029610165, 20.8998713434988], [-97.6918029610165, 20.8985884023029], [-97.6931762520318, 20.8985884023029]]]]}, "properties": {"taskId": 9, "taskX": 59934, "taskY": 146639, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6931762520318, 20.8973054501379], [-97.6931762520318, 20.8985884023029], [-97.6918029610165, 20.8985884023029], [-97.6918029610165, 20.8973054501379], [-97.6931762520318, 20.8973054501379]]]]}, "properties": {"taskId": 8, "taskX": 59934, "taskY": 146638, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6931762520318, 20.8960224870044], [-97.6931762520318, 20.8973054501379], [-97.6918029610165, 20.8973054501379], [-97.6918029610165, 20.8960224870044], [-97.6931762520318, 20.8960224870044]]]]}, "properties": {"taskId": 7, "taskX": 59934, "taskY": 146637, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6931762520318, 20.8947395129029], [-97.6931762520318, 20.8960224870044], [-97.6918029610165, 20.8960224870044], [-97.6918029610165, 20.8947395129029], [-97.6931762520318, 20.8947395129029]]]]}, "properties": {"taskId": 6, "taskX": 59934, "taskY": 146636, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6945495430472, 20.8998713434988], [-97.6945495430472, 20.9011542737251], [-97.6931762520318, 20.9011542737251], [-97.6931762520318, 20.8998713434988], [-97.6945495430472, 20.8998713434988]]]]}, "properties": {"taskId": 5, "taskX": 59933, "taskY": 146640, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6945495430472, 20.8985884023029], [-97.6945495430472, 20.8998713434988], [-97.6931762520318, 20.8998713434988], [-97.6931762520318, 20.8985884023029], [-97.6945495430472, 20.8985884023029]]]]}, "properties": {"taskId": 4, "taskX": 59933, "taskY": 146639, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6945495430472, 20.8973054501379], [-97.6945495430472, 20.8985884023029], [-97.6931762520318, 20.8985884023029], [-97.6931762520318, 20.8973054501379], [-97.6945495430472, 20.8973054501379]]]]}, "properties": {"taskId": 3, "taskX": 59933, "taskY": 146638, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6945495430472, 20.8960224870044], [-97.6945495430472, 20.8973054501379], [-97.6931762520318, 20.8973054501379], [-97.6931762520318, 20.8960224870044], [-97.6945495430472, 20.8960224870044]]]]}, "properties": {"taskId": 2, "taskX": 59933, "taskY": 146637, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-97.6959228340626, 20.8985884023029], [-97.6959228340626, 20.8998713434988], [-97.6945495430472, 20.8998713434988], [-97.6945495430472, 20.8985884023029], [-97.6959228340626, 20.8985884023029]]]]}, "properties": {"taskId": 1, "taskX": 59932, "taskY": 146639, "taskZoom": 18, "taskSplittable": true, "taskStatus": "VALIDATED"}}]}, "defaultLocale": "en", "projectInfo": {"locale": "en", "name": "Veracruz Flooding Response 1: \u00c1lamo, Mexico", "shortDescription": "Sudden, heavy rains have caused rivers in the Veracruz region to crest causing many to flee their homes and many more sheltering in place hoping supplies will last.\n\nYour mapping contribution will help OpenStreetMap - Mexico provide a basemap for response and recovery efforts.", "description": "Sudden, heavy rains have caused rivers in the Veracruz region to crest causing many to flee their homes and many more sheltering in place hoping supplies will last.\n\nYour mapping contribution will help OpenStreetMap - Mexico provide a basemap for response and recovery efforts. This project is to map the buildings in the town of \u00c1lamo, Veracruz, one of the hardest hit by flooding.", "instructions": "Project Specific Mapping Notes\n========================\n* We are only requesting to map buildings in this project, if you are proficient in OSM please map other features 'traditionally' (i.e. not via task manager with specific tracking hashtags)\n* Bing appears to be the best imagery for the area, you may need to align it with GPS or existing roads, but will likely need to adjust the roads with this better/most recent imagery. \n* Please square your buildings ('S' key in the iD web editor) and keep them unattached from roads, landuse and other buildings unless they are physically attached.\n* Larger task squares might be easier mapping due to less dense buildings.\n\nImagery\n=======\n* Use Bing imagery (the default imagery in iD editor).\n* Only If you have a task that is either cloudy or no hi-resolution imagery available, then please feel free to mark the task as Bad Imagery. Often on slower connections it takes a moment for the imagery to start tiling in.\n\nBuildings\n=========================\n* Please accurately outline all the buildings you can find. The outline should be for the full size of the building even if it is partly covered by trees in the imagery.\n* Most buildings are rectangular, after drawing the outline, use the 's' key in the iD web editor to \"square\" the corners.\n* For circular buildings there is the 'o' key in the iD editor to create a circular structure.\n* Many buildings are very close, but do not actually touch each other, try to map them close to each other without letting them connect or share nodes with each other, roads or residential area outlines. In the iD web editor, holding down the \"alt\" key will keep nodes of \"snapping\" to each other and accidentally connecting.\n* In the iD web editor, the first time you map a building you will use the \"Building Features\" category and then at the top of the list select \"Building\" again, this is the most generic building tag we can use as we almost never can tell the more specific use of any building from imagery alone.\n\n**If you have personal knowledge of a building**, please add that information to the building, like the name or type of building (hospital, school, gas station, etc)\n\nHow to adjust / align the background imagery in iD\n=============================\nBelow is a demo of someone adjusting the background imagery alignment. They are left clicking in the grey box and holding and dragging the mouse and the imagery is moving as the hold-drag the mouse.\n\n\n\n#### #osm_mx #VeracruzFloods #Mexico Adding buildings", "perTaskInstructions": ""}, "mapperLevel": "INTERMEDIATE", "enforceMapperLevel": false, "enforceValidatorRole": true, "private": false, "entitiesToMap": "Buildings", "changesetComment": "#hotosm-project-5400 #osm_mx #VeracruzFloods #Mexico Adding buildings", "dueDate": null, "imagery": null, "mappingTypes": ["BUILDINGS"], "campaignTag": "Disaster Response", "organisationTag": "OSM-MX", "licenseId": null, "allowedUsernames": [], "priorityAreas": null, "created": "2018-10-22T21:34:31.638472", "lastUpdated": "2018-11-07T14:58:04.509485", "author": "russdeffner", "activeMappers": 0, "taskCreationMode": "GRID"}
diff --git a/tests/fixtures/my-bucket/spacenet_test/102765.jpg b/tests/fixtures/my-bucket/spacenet_test/102765.jpg
new file mode 100644
index 0000000..ab503a1
Binary files /dev/null and b/tests/fixtures/my-bucket/spacenet_test/102765.jpg differ
diff --git a/tests/fixtures/my-bucket/spacenet_test/102765_256.png b/tests/fixtures/my-bucket/spacenet_test/102765_256.png
new file mode 100644
index 0000000..0a2aef2
Binary files /dev/null and b/tests/fixtures/my-bucket/spacenet_test/102765_256.png differ
diff --git a/tests/fixtures/my-bucket/spacenet_test/Pan-Sharpen_Atlanta_nadir10_catid_1030010003993E00_739001_3722439.tif b/tests/fixtures/my-bucket/spacenet_test/Pan-Sharpen_Atlanta_nadir10_catid_1030010003993E00_739001_3722439.tif
new file mode 100644
index 0000000..f337490
Binary files /dev/null and b/tests/fixtures/my-bucket/spacenet_test/Pan-Sharpen_Atlanta_nadir10_catid_1030010003993E00_739001_3722439.tif differ
diff --git a/tests/fixtures/my-bucket/spacenet_test/image_mask.png b/tests/fixtures/my-bucket/spacenet_test/image_mask.png
new file mode 100644
index 0000000..83390f7
Binary files /dev/null and b/tests/fixtures/my-bucket/spacenet_test/image_mask.png differ
diff --git a/tests/fixtures/my-bucket/spacenet_test/image_true.png b/tests/fixtures/my-bucket/spacenet_test/image_true.png
new file mode 100644
index 0000000..a67e631
Binary files /dev/null and b/tests/fixtures/my-bucket/spacenet_test/image_true.png differ
diff --git a/tests/fixtures/my-bucket/test_super_tile.tif b/tests/fixtures/my-bucket/test_super_tile.tif
new file mode 100644
index 0000000..769549c
Binary files /dev/null and b/tests/fixtures/my-bucket/test_super_tile.tif differ
diff --git a/tests/test_main.py b/tests/test_main.py
index 3e7b9a6..98fd4f1 100644
--- a/tests/test_main.py
+++ b/tests/test_main.py
@@ -1,4 +1,4 @@
-"""tests rio_tiler.base"""
+"""tests ml_export.tile_generator.base"""
import os
import pytest
@@ -10,14 +10,22 @@
import numpy as np
from ml_export import tile_generator
import logging
+import rasterio
+
+
+raster_tile_server = "https://tiles.openaerialmap.org/5ae36dd70b093000130afdd4/0/5ae36dd70b093000130afdd5/{z}/{x}/{y}.png"
raster_address = "s3://spacenet-dataset/AOI_2_Vegas/resultData/AOI_2_Vegas_MULPS_v13_cloud.tiff"
PREFIX = os.path.join(os.path.dirname(__file__), 'fixtures')
-mask_address = '{}/my-bucket/mask_tile.npy'.format(PREFIX)
+mask_address = '{}/my-bucket/test_super_tile.tif'.format(PREFIX)
+#tests/fixtures/my-bucket/test_super_tile.tif
+with rasterio.open(mask_address) as src:
+ super_tile_test = src.read()
+ src_profile = src.profile
+logging.basicConfig(format='%(levelname)s:%(asctime)s %(message)s', datefmt='%m/%d/%Y %I:%M:%S %p', level=logging.DEBUG)
-mask_address_np = np.load(mask_address)
def test_import():
print("Import Success")
@@ -30,229 +38,30 @@ def test_super_res():
super_res_tile = tile_generator.create_super_tile_image(tile_coord,
address=raster_address,
- zoom_level=2)
-
-
-
- np.testing.assert_array_equal(super_res_tile, mask_address_np)
-
-
+ desired_zoom_level=19,
+ indexes=[1],
+ cog=True)
+ #TODO build better 3 channel test
+ np.testing.assert_allclose(super_res_tile.astype(int)
+ , super_tile_test[None,0,:,:].astype(int))
+def test_super_res_tms():
+ tile_coord = mercantile.tile(39.299515932798386, -6.080908028740757, 17)
-#
-# utmX, utmY = 658029, 4006947
-# ll_x = utmX
-# ur_x = utmX + 500
-# ll_y = utmY
-# ur_y = utmY + 500
-# stride_size_meters = 300
-# cell_size_meters = 400
-# tile_size_pixels = 1600
-# spacenetPath = "s3://spacenet-dataset/AOI_2_Vegas/srcData/rasterData/AOI_2_Vegas_MUL-PanSharpen_Cloud.tif"
-#
-# PREFIX = os.path.join(os.path.dirname(__file__), 'fixtures')
-#
-# ADDRESS = '{}/my-bucket/hro_sources/colorado/201404_13SED190110_201404_0x1500m_CL_1.tif'.format(PREFIX)
-# ADDRESS_ALPHA = '{}/my-bucket/hro_sources/colorado/201404_13SED190110_201404_0x1500m_CL_1_alpha.tif'.format(PREFIX)
-# ADDRESS_NODATA = '{}/my-bucket/hro_sources/colorado/201404_13SED190110_201404_0x1500m_CL_1_nodata.tif'.format(PREFIX)
-# geojsonPath = "{}/my-bucket/spacenet_test/las-vegas_nevada_osm_buildings.geojson".format(PREFIX)
-#
-#
-#
-# def test_calculate_utm_epsg():
-#
-# wgs_bounds = utils.get_wgs84_bounds(ADDRESS)
-# print(wgs_bounds)
-# utm_crs = utils.calculate_UTM_crs(wgs_bounds)
-# print(utm_crs)
-# assert utm_crs=='+proj=utm +zone=13 +north +ellps=WGS84 +datum=WGS84 +units=m +no_defs'
-#
-#
-# def test_grid_creation():
-#
-# address = spacenetPath
-#
-# with rasterio.open(address) as src:
-#
-# wgs_bounds = utils.get_wgs84_bounds(src)
-# utm_EPSG = utils.calculate_UTM_crs(wgs_bounds)
-# utm_bounds = utils.get_utm_bounds(src, utm_EPSG)
-# print(utm_bounds)
-# cells_list_dict = main.calculate_analysis_grid(utm_bounds, stride_size_meters=stride_size_meters, cell_size_meters=cell_size_meters)
-# print(len(cells_list_dict))
-#
-# assert len(cells_list_dict[0][0]) == 4
-# assert ((cells_list_dict[0][0][2]-cells_list_dict[0][0][0]), (cells_list_dict[0][0][3]-cells_list_dict[0][0][1])) == (cell_size_meters, cell_size_meters)
-# assert (cells_list_dict[0][1][1] - cells_list_dict[0][0][1]) == stride_size_meters
-# assert len(cells_list_dict[0]) == 2491
-#
-#
-#
-#
-# def test_return_tile():
-#
-# address = spacenetPath
-#
-# with rasterio.open(address) as src:
-#
-# wgs_bounds = utils.get_wgs84_bounds(src)
-# utm_crs = utils.calculate_UTM_crs(wgs_bounds)
-# utm_bounds = utils.get_utm_bounds(src, utm_crs)
-#
-# cells_list = main.calculate_analysis_grid(utm_bounds, stride_size_meters=stride_size_meters, cell_size_meters=cell_size_meters)
-#
-# random_cell = random.choice(cells_list[0])
-# ll_x, ll_y, ur_x, ur_y = random_cell
-# print(random_cell)
-# tile, mask, window, window_transform = main.tile_utm(src, ll_x, ll_y, ur_x, ur_y, indexes=None, tilesize=tile_size_pixels, nodata=None, alpha=None,
-# dst_crs=utm_crs)
-#
-# print(np.shape(tile))
-# assert np.shape(tile) == (8, tile_size_pixels, tile_size_pixels)
-#
-#
-# def test_return_vector_gdf():
-#
-# utm_crs=utils.calculate_UTM_crs([-115.30170, 36.15604, -115.30170, 36.15604])
-#
-# gdf = vector_utils.read_vector_file(geojsonPath)
-# gdf.head()
-# print(utm_crs)
-# gdf_utm = vector_utils.transformToUTM(gdf, utm_crs=utm_crs)
-#
-# utmX, utmY = 658029, 4006947
-# ll_x = utmX
-# ur_x = utmX + 500
-# ll_y = utmY
-# ur_y = utmY + 500
-# stride_size_meters = 300
-# cell_size_meters = 400
-# tile_size_pixels = 1600
-#
-# small_gdf = vector_utils.vector_tile_utm(gdf_utm, tile_bounds=[ll_x, ll_y, ur_x, ur_y])
-#
-# print(small_gdf.head())
-#
-# assert small_gdf.shape[0]>0
-#
-#
-# def test_return_vector_tile():
-# utm_crs = utils.calculate_UTM_crs([-115.30170, 36.15604, -115.30170, 36.15604])
-#
-# gdf = vector_utils.read_vector_file(geojsonPath)
-# gdf.head()
-# print(utm_crs)
-# gdf = vector_utils.transformToUTM(gdf, utm_crs=utm_crs)
-#
-# utmX, utmY = 658029, 4006947
-# ll_x = utmX
-# ur_x = utmX + 500
-# ll_y = utmY
-# ur_y = utmY + 500
-# stride_size_meters = 300
-# cell_size_meters = 400
-# tile_size_pixels = 1600
-#
-# small_gdf = vector_utils.vector_tile_utm(gdf, tile_bounds=[ll_x, ll_y, ur_x, ur_y])
-#
-# img = vector_utils.rasterize_gdf(small_gdf, src_shape=(tile_size_pixels, tile_size_pixels))
-#
-# print(img.shape)
-#
-# assert img.shape[0] == 1600
-#
-#
-# def test_return_tile_full():
-#
-# ## Set for specific tile in Las Vegas
-# utm_crs = utils.calculate_UTM_crs([-115.30170, 36.15604, -115.30170, 36.15604])
-# gdf = vector_utils.read_vector_file(geojsonPath)
-# gdf.head()
-# gdf = vector_utils.transformToUTM(gdf, utm_crs=utm_crs)
-#
-# utmX, utmY = 658029, 4006947
-# ll_x = utmX
-# ur_x = utmX + 500
-# ll_y = utmY
-# ur_y = utmY + 500
-# stride_size_meters = 300
-# cell_size_meters = 400
-# tile_size_pixels = 1600
-#
-# address = spacenetPath
-#
-# with rasterio.open(address) as src:
-#
-# src_profile = src.profile
-#
-#
-# tile, mask, window, window_transform = main.tile_utm(src, ll_x, ll_y, ur_x, ur_y,
-# indexes=None,
-# tilesize=tile_size_pixels,
-# nodata=None,
-# alpha=None,
-# dst_crs=utm_crs
-# )
-#
-# print(np.shape(tile))
-# assert np.shape(tile) == (8, tile_size_pixels, tile_size_pixels)
-#
-# small_gdf = vector_utils.vector_tile_utm(gdf, tile_bounds=[ll_x, ll_y, ur_x, ur_y])
-# print(small_gdf.shape)
-# small_gdf.to_file(os.path.join(PREFIX, "testTiff_Label.geojson"), driver='GeoJSON')
-# img = vector_utils.rasterize_gdf(small_gdf,
-# src_shape=(tile_size_pixels, tile_size_pixels),
-# src_transform=window_transform,
-# )
-# print("Label Count Burn {}:".format(np.sum(img)))
-# assert img.shape == (tile_size_pixels, tile_size_pixels)
-#
-#
-# dst_profile = src_profile
-# dst_profile.update({'transform': window_transform,
-# 'crs': utm_crs,
-# 'width': tile_size_pixels,
-# 'height': tile_size_pixels,
-# 'count': 1,
-# 'dtype': rasterio.uint8
-#
-# })
-#
-# with rasterio.open(os.path.join(PREFIX, "testTiff_Label.tif"), 'w',
-# **dst_profile) as dst:
-#
-# dst.write(img, indexes=1)
-#
-# dst_profile = src_profile
-# dst_profile.update({'transform': window_transform,
-# 'crs': utm_crs,
-# 'width': tile_size_pixels,
-# 'height': tile_size_pixels,
-# 'count': 8,
-# 'dtype': rasterio.uint16
-# })
-#
-# with rasterio.open(os.path.join(PREFIX, "testTiff_Image.tif"), 'w',
-# **dst_profile) as dst:
-#
-# dst.write(tile)
-#
-#
-#
-#
-
-
-
-
-
+ super_res_tile = tile_generator.create_super_tile_image(tile_coord,
+ address=raster_tile_server,
+ desired_zoom_level=19,
+ indexes=[1,2,3],
+ cog=False)
+#
\ No newline at end of file
diff --git a/tests/test_ml_tools.py b/tests/test_ml_tools.py
new file mode 100644
index 0000000..60a1bab
--- /dev/null
+++ b/tests/test_ml_tools.py
@@ -0,0 +1,61 @@
+import os
+import pytest
+## Note, for mac osx compatability import something from shapely.geometry before importing fiona or geopandas
+## https://github.com/Toblerity/Shapely/issues/553 * Import shapely before rasterio or fioana
+from shapely import geometry
+import mercantile
+from rio_tiler import main
+import numpy as np
+from ml_export import tile_generator, tm_interface
+from ml_export.ml_tools import mlbase
+import logging
+import rasterio
+
+
+
+model_dictionary = '{"model_file": "test.hdf5", "model_description": "Passthrough Model", "model_version": "0.1", "model_speed": 20}' # # numpy arrays per second
+#raster_address = "s3://spacenet-dataset/AOI_2_Vegas/resultData/AOI_2_Vegas_MULPS_v13_cloud.tiff"
+raster_address = "s3://spacenet-dataset/AOI_2_Vegas/srcData/rasterData/AOI_2_Vegas_MUL-PanSharpen_Cloud.tif"
+
+
+
+
+test_np_array = np.zeros((3,1024,1024))
+test_np_array_list = [test_np_array, test_np_array, test_np_array]
+
+
+
+def test_ml_model():
+
+ testmodel = mlbase.MLModel(model_dictionary)
+
+ predict_result = testmodel.predict(test_np_array)
+
+ predict_batch_result = testmodel.predict_batch(test_np_array_list)
+
+ assert predict_result.shape == (1,1024,1024)
+
+ assert len(predict_batch_result) == 3
+
+ assert predict_batch_result[0].shape == (1,1024,1024)
+
+
+def test_ml_model_tiles():
+
+ tile_coord = mercantile.tile(-115.24, 36.1986, 17)
+ super_res_tile = tile_generator.create_super_tile_image(tile_coord,
+ address=raster_address,
+ desired_zoom_level=19,
+ indexes=[1])
+
+ testmodel = mlbase.MLModel(model_dictionary)
+
+ predict_result = testmodel.predict(super_res_tile)
+
+ predict_batch_result = testmodel.predict_batch([super_res_tile, super_res_tile, super_res_tile])
+
+ assert predict_result.shape == (1,1024,1024)
+
+ assert len(predict_batch_result) == 3
+
+ assert predict_batch_result[0].shape == (1,1024,1024)
diff --git a/tests/test_requests.py b/tests/test_requests.py
new file mode 100644
index 0000000..0a22518
--- /dev/null
+++ b/tests/test_requests.py
@@ -0,0 +1,34 @@
+"""tests ml_export.tm_interface.base"""
+
+import os
+import pytest
+## Note, for mac osx compatability import something from shapely.geometry before importing fiona or geopandas
+## https://github.com/Toblerity/Shapely/issues/553 * Import shapely before rasterio or fioana
+from shapely import geometry
+import mercantile
+from rio_tiler import main
+import numpy as np
+from ml_export import tile_generator, tm_interface
+import logging
+import rasterio
+raster_address = "s3://spacenet-dataset/AOI_2_Vegas/resultData/AOI_2_Vegas_MULPS_v13_cloud.tiff"
+
+PREFIX = os.path.join(os.path.dirname(__file__), 'fixtures')
+
+mask_address = '{}/my-bucket/test_super_tile.tif'.format(PREFIX)
+#tests/fixtures/my-bucket/test_super_tile.tif
+with rasterio.open(mask_address) as src:
+ super_tile_test = src.read()
+ src_profile = src.profile
+
+
+def test_import():
+ print("Import Success")
+
+def test_get_tasking_id_aoi():
+
+ taskid = 5400
+
+ aoi_geom = tm_interface.get_task_area_from_id(taskid=taskid)
+
+